/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, img {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	color: #CCC;
	font-family: "Trebuchet MS"; Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 14px;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	text-align: left;
	font-weight: normal;
	background-color: #000;
}
/* Commonly used to style page titles. */
#hr {
	background-color: #333;
	color: #333;
	height: 1px;
	border: 0;
}
h1 {
	color: #FF6600;
	font-size: 16px;
	font-style: normal;
	line-height: 18px;
	margin-bottom: -8px;
	font-weight: bold;
	font-variant: normal;
}
h2 {
	color: #9966FF;
	font-size: 14px;
	font-weight: bold;
	line-height: 16px;
}
h3 {
	color: #FC6;
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 1px;
}
h4 {
	color: #FFFFFF;
	font-family: "PortlandRoman", Arial, Helvetica, sans-serif;
	font-size: 21px;
	line-height: 23px;
	font-weight: bold;
	font-variant: normal;
	text-transform: capitalize;
	letter-spacing: 1px;
	padding-top: 10px;
	padding-bottom: 30px;
}
ul {
	margin-bottom: 10px;
}
li {
	margin-bottom: 10px;
}
/* Sets the style for unvisited links. */
:link:focus, :visited:focus { /* Prevents dotted focus outline in mozilla browsers */
	-moz-outline: none;
}
a, a:link {
	color: #96F;
	font-weight: bold;
	text-decoration: underline;
}
/* Sets the style for visited links. */
a:visited {
	color: FFF;
	font-weight: bold;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #63C;
	text-decoration: underline;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #63C;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	margin-bottom: 15px;
	margin-left: auto;
	margin-right: auto;
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 1000px;
}
#outerWrapper #header {
	height: 250px;
	padding-left: 0px;
	padding-top: 20px;
}
/* Sets the style for the header text. */
#outerWrapper #contentWrapper {
	overflow: hidden;
}
#outerWrapper #contentWrapper #slideshow {
	float: left;
	margin-top: 50px;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0;
	padding-right: 30px;
	padding-bottom: 20px;
	width: 600px;
}
#outerWrapper #contentWrapper #contentTop {
	float: left;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 75px;
	padding-right: 30px;
	padding-bottom: 20px;
	padding-left: 20px;
	width: 560px;
	background-image: url(images/headers/History.png);
	background-repeat: no-repeat;
	background-position: left top;
}
#outerWrapper #contentWrapper #SubpageContentTop {
	float: left;
	margin-top: 35px;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 0px;
	padding-right: 40px;
	padding-bottom: 20px;
	padding-left: 20px;
	width: 540px;
	background-image: url(images/headers/classesBox.png);
	background-repeat: no-repeat;
	background-position: left top;
}
#outerWrapper #contentWrapper #SubpageContentEmpty {
	float: left;
}
#outerWrapper #contentWrapper #contentbottom {
	float: left;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 75px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 15px;
	width: 580px;
	height: inherit;
	background-image: url(images/headers/ImpactDanceCo_homePage.png);
	background-position: left-top;
	background-repeat: no-repeat;
	
}
#outerWrapper #contentWrapper #contentScroller {
	float: left;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 0px;
	width: 975px;
	height: inherit;
}
#outerWrapper #contentWrapper #rightColumn {
	float: right;
	width: 300px;
	margin-top: 40px;
}
#outerWrapper #contentWrapper #rightColumnClasses {
	float: right;
	width: 300px;
	padding-bottom: 20px;
	margin-top: 40px;
	width: 300px;
	background-image: url(images/headers/searchClasses.png);
	background-position: top center;
	background-repeat: no-repeat;
}
/* This creates more spacing between lines in the content paragraphs */
/*#content p {
	line-height: 140%;
}
/* This styles the headings in the right sidebar */
#rightColumn h2 {
	color: #FFF;
	padding-top: 8px;
	padding-left: 10px;
	font-family: Trebuchet MS, Helvetica, Arial, sans-serif;
	font-size: 12px;
	font-weight: bold;
	line-height: 14px;
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: 2px;
	background-image: url(images/sidebar-h4.png);
	background-repeat: no-repeat;
	background-position: top left;
	text-align: left;
	height: 35px;
	width: 300px;
	margin-bottom: -12px;
}
#rightColumn h3 {
	color: #FFF;
	padding-top: 8px;
	padding-left: 10px;
	font-family: Trebuchet MS, Helvetica, Arial, sans-serif;
	font-size: 12px;
	font-weight: bold;
	line-height: 14px;
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: 2px;
	background-image: url(images/sidebar-h4.png);
	background-repeat: no-repeat;
	background-position: top left;
	text-align: left;
	width: 300px;
	margin-bottom: -12px;
	margin-top: 40px;
	height: 30px;
}
#rightColumn h4 {
	font: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #CCCCCC;
	font-size: 12px;
	line-height: 14px;
	font-weight: bold;
	letter-spacing: 1px;
}
/* This styles the dividing lines between items in the right sidebar if hr is used */
#rightColumn hr {
	background-color: #333;
	color: #333;
	height: 1px;
	border: 0;
}
/* This styles the navigation links in the sidebar. */
#rightColumn ul {
	list-style: circle;
}
#rightColumnClasses h2 {
	color: #FFF;
	padding-top: 8px;
	padding-left: 10px;
	font-family: Trebuchet MS, Helvetica, Arial, sans-serif;
	font-size: 12px;
	font-weight: bold;
	line-height: 14px;
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: 2px;
	background-image: url(images/sidebar-h4.png); 
	background-repeat: no-repeat;
	background-position: top left;
	text-align: left;
	height: 30px;
	width: 300px;
	margin-bottom: -8px;
	margin-top: 20px;
}
#rightColumnClasses h3 {
	color: #FFF;
	padding-top: 8px;
	padding-left: 10px;
	font-family: Trebuchet MS, Helvetica, Arial, sans-serif;
	font-size: 12px;
	font-weight: bold;
	line-height: 14px;
	font-style: normal; 
	text-transform: uppercase;
	letter-spacing: 2px;
	background-image: url(images/sidebar-h4.png); 
	background-repeat: no-repeat;
	background-position: top left;
	text-align: left;
	width: 300px;
	margin-bottom: -8px;
	margin-top: 70px;
	height: 30px;
}
#splash {
	position:absolute;
}
	
/* This styles the dividing lines between items in the right sidebar if hr is used */
#rightColumn hrClasses {
	background-color: #333;
	color: #333;
	height: 1px;
	border: 0;
}
#rightColumnClasses li {
	list-style: circle;
	color: CCCCFF;
}
/* This styles the navigation links in the sidebar. */
#rightColumnClasses ul {
	margin: 0px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
}
#rightColumnClasses ul li {
	list-style: circle;
	display: inline;
}
/* Styles the background and border for the sidebar boxes */
.rightColumn p {
	margin-top:10px;
	margin-bottom: 10px;
}
.rightColumnNews {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-image: url(images/headers/news.png);
	background-position: top left;
	background-repeat: no-repeat;
	padding: 70px 0px 10px 0px;
}
.rightColumnContact {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	background-image: url(images/headers/contactUs.png);
	background-position: top center;
	background-repeat: no-repeat;
	padding: 50px 15px 10px 15px;
}
.rightColumnEveryone {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-image: url(images/headers/somethingForEveryone.png);
	background-position: top center;
	background-repeat: no-repeat;
	padding: 70px 0px 10px 0px;
}
.rightColumnContactPage {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	background-image: url(images/headers/contactUs.png);
	background-position: top center;
	background-repeat: no-repeat;
	padding: 50px 0px 10px 0px;
}
.rightColumnNewsletter {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-image: url(images/headers/newsletter.png);
	background-position: top left;
	background-repeat: no-repeat;
	padding: 50px 10px 10px 0px;
}
.rightColumnJoinImpact {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-image: url(images/headers/joinImpactDance.png);
	background-position: top left;
	background-repeat: no-repeat;
	padding: 50px 15px 10px 15px;
}
.rightColumnMeetFaculty {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-image: url(images/headers/faculty.png);
	background-position: top left;
	background-repeat: no-repeat;
	padding: 50px 0px 10px 0px;
}
.rightColumnPhotos {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-image: url(images/headers/browsePhotos.png);
	background-position: top left;
	background-repeat: no-repeat;
	padding: 50px 15px 10px 15px;
}
.rightColumnVideos {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-image: url(images/headers/browseVideos.png);
	background-position: top left;
	background-repeat: no-repeat;
	padding: 50px 15px 10px 15px;
}
.rightColumnClasses {
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	margin-top: 8px;
	padding-top: 0px;
	padding-right: 25px;
	padding-bottom: 10px;
	padding-left: 25px;
}
.rightColumnClasses p {
	margin-top:0px;
	margin-bottom: 0px;
	font-weight: normal;
	font-size: 12px;
	color: #CCCCFF;
}
.sidebar-borderClasses li {
	list-style: circle;
}

/* This styles footer section */
#outerWrapper #footer {
	height: 45px;
	color: #666;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
	background-color: #000;
	font-size: 11px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #333;
}
#footer a:link, #footer a:visited, #footer a:active {
	color: #666;
}
#footer a:hover {
	color: #FFF;
	text-decoration: none;
		
}
#footer p {
	margin:0 0 10px 0;
	padding:0px;
	text-align: center;
}
/* These are the settings for the contact form in the sidebar. Commonly used for newsletter signups. */
#newsletter {
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 10px;
	padding-top: 15px;
}
#newsletter label {
	display:block;
	padding-bottom:5px;
	font-size: 11px;
	font-weight: normal;
	text-transform: uppercase;
	color: #999;
	letter-spacing: 1px;
	padding-left: 5px;
}
#newsletter input {
	width: 275px;
	background-color: #000;
	color: #FFF;
	border: 1px solid #666;
	font-size: 12px;
	padding: 3px;
	margin-bottom: 8px;
}
#newsletter select {
	width: 215px;
	background-color: #FFF;
	color: #666;
	border: 1px solid #425066;
	font-size: 12px;
	font-weight: bold;
	padding: 3px;
	margin-bottom: 8px;
}
#newsletter #button {
	margin-left:70px;
	width:125px;
	height:31px;
	text-align:center;
	color:#FFF;
	font-size:11px;
	font-weight:bold;
	background-image: url(images/button.jpg);
	background-repeat: no-repeat;
	background-color: #FFF;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-top: 8px;
	line-height: 25px;
}
#newsletter #button:hover {
	color: #FFF;
	background-image: url(images/button-hover.jpg);
	cursor: pointer;
}
/* Styles for floating images right or left */
.right {
	float:right;
	border: inset;
	border-color: #9966FF;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 15px;
}
.leftGraphic {
	float:left;
	margin: 10px 15px 10px 0;
}
.left {
	float:left;
	margin: 0px 30px 10px 0px;
	border: inset;
	border-color:#9966FF;
}
/* This styles the sitemap page list */
#sitemap li{
	margin-bottom: 8px;

}
#sitemap ul {
	margin-top: 5px;
	padding-left: 0px;
	margin-left: 0px;
}
#sitemap li.subpage {
	background: url(../images/subpage.gif) no-repeat left top;
	padding-left: 12px;
	line-height: 100%;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 5px;
	list-style: none;
}
#sitemap li.subpage a, #content li.subpage a:link {
	font-weight:normal;
}
/* These are the styles for the contact form */
Label {
}
.inputValue {
	width:50%;
	margin-top:5px;
}
.inputText {
	width:85%;
	height:180px;
	margin-top:5px;
}
.inputButton {
}
.required {
	font-size:9px;
	color:#C00;
}
#table {
	border: #999;
	border:thin;
	width: 100%;
	line-height: 14px;
}

