/* 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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}

/*scroll bar colouring */

/* 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 {
	background-color: #566;
	border-top-width: 20;
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 16.9px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 20px 20px 20px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
	color: #FF8000;
	font-size: 114%;
	font-weight: bold;
	line-height: 14px;
	display: inline;
}
/* Commonly used to style section titles. */
h2 {
	color: #FF6600;
	font-size: 110%;
	font-weight: bold;
	line-height: 14px;
}
/* Sets the style for the h3 header. */
h3 {
	color: #CE3100;
	font-size: 107%;
}
/* Sets the style for the h4 header. */
h4 {
  color: #8F8400;
}
/* Sets the style for the h5 header. */
h5 {
  color: #9C0000;
}
/* Sets the style for the h6 header. */
h6 {
  color: #FF9900;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #bf6000;
  font-weight: bold;
  text-decoration: underline;
}
/* Sets the style for visited links. */
a:visited {
  color: #bfb000;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #FF8000;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #FFEB00;
}

/* floating images */
img.floatLeft { 
    float: left; 
    margin: 4px; 
}
img.floatRight { 
    float: right; 
    margin: 4px; 
}

img.floatRightClear { 
    float: right; 
    clear: right; 
    margin: 4px; 
}
img.floatLeftClear { 
    float: left; 
    clear: left; 
    margin: 4px; 
}


/* 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. */
#container {
	background-color: #000000; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding-top: 0px;
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 90%;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
#container #masthead {
	background-color: #000000;
	background-image: url("/images/idancestudios_logo_digitised.gif");
	background-position: top left;
	background-repeat: no-repeat;
	border-bottom: solid 1px #8f8400; /* Sets the bottom border properties for an element using shorthand notation */
	font-size: 18px;
	font-weight: bold;
	height: 75px;
	line-height: 15px;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: right;
}
#container #topNavigation {
	background-color: #000000;
	border-bottom: solid 1px #FFEB00; /* Sets the bottom border properties for an element using shorthand notation */
	height: 90px;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

/* This is the breadcrumbs CSS for the page. */
#container #topNavigation #mp_backlinks {
	font-size:x-small;
	
}
#container #contentWrapper #leftNav {
	background-color: #000000; /* Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 12em;
}
#container #contentWrapper #secondaryStory {
	background-color: #000000;
	border-right: solid 1px #FFFFFF; /* Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 5px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 12em;
	clear: none;
	height: 550px;


}
/* secondary story on the index page to allow more space for masterclass information */
#container #contentWrapper #secondaryStoryMain {
	background-color: #000000;
	border-right: solid 1px #FFFFFF; /* Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 5px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 20em;
	clear: none;
	height: 550px;

}
#container #contentWrapper #secondaryStory #secondaryStory2 {
	height: 450px;
	overflow-y:scroll;
	scrollbar-base-color:#369;
	overflow: auto;
}

/* secondary story2 on the index page to allow more space for masterclass information */
#container #contentWrapper #secondaryStoryMain #secondaryStory2Main {
	height: 450px;
	overflow-y:scroll;
	scrollbar-base-color:#369;
	overflow: auto;
}

#container #contentWrapper #rightNav {
  background-color: #ebebeb;
  border-left: solid 1px #666; /* Sets the left border properties for an element using shorthand notation */
  border-right-color: #8f8400;
  color: #8F8400;
  float: right;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 18em;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#container #contentWrapper #content {
	margin: 0 14em 0 14em; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	border-left: solid 1px #8f8400;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#container #contentWrapper .clearFloat {
  clear: both;
  display: block;
}
#container #footer {
	background-color: #000000;
	border-top: solid 20px #556666; /* Sets the top border properties for an element using shorthand notation */
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	height:75px; /*sets line height for footer */
	clear: both;
}
.form {
	float: right;
	width: 65%;
	padding: 2% 5% 2% 2%;
}
#container #contentWrapper #content #form1 th {
	font-size: xx-small;
	text-align: right;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
}
#container #contentWrapper #content #form1 td {
	font-size: x-large;
}
.formtext {
	font-size: x-large;
}
#container #contentWrapper #content #form1 table {
	border: thick groove #000000;
	color: #000000;
	background-color: #fffffc;
}
/* These are standard sIFR styles... do not modify */

.sIFR-flash {
	visibility: visible !important;
	margin: 0;
}

.sIFR-replaced {
	visibility: visible !important;
}

span.sIFR-alternate {
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	display: block;
	overflow: hidden;
}

/* Hide Adblock Object tab: the text should show up just fine, not poorly with a tab laid over it. */
.sIFR-flash + div[adblocktab=true] {
  display: none !important;
}

/* These "decoy" styles are used to hide the browser text before it is replaced... the negative-letter spacing in this case is used to make the browser text metrics match up with the sIFR text metrics since the sIFR text in this example is so much narrower... your own settings may vary... any weird sizing issues you may run into are usually fixed by tweaking these decoy styles */

.sIFR-hasFlash h1 {
	visibility: hidden;
}

.sIFR-hasFlash h2 {
	visibility: hidden;
	letter-spacing: -9px;
	font-size: 55px;
}

.sIFR-hasFlash h3 {
	visibility: hidden;
	letter-spacing: -6px;
	font-size: 25px;
}

.sIFR-hasFlash h4 {
	visibility: hidden;
	letter-spacing: -5px;
	font-size: 21px;
}

.sIFR-hasFlash h5#pullquote {
	letter-spacing: -4px;
	visibility: hidden;
	font-size: 24px;
}
#kballet {
	background-image: url(http://www.idancestudios.com/images/Ballet/ballet3.jpg);
	background-repeat: no-repeat;
	height: 418px;
	width: 300px;
	float: left;
	font-weight: bolder;
	clear: none;
}
#kballet p {
	position: relative;
	filter: Alpha(Opacity=50);
	background-image: url(/images/blk1x1.jpg);
	-moz-opacity: 0.5;
	opacity: 0.5;
	font-size: xx-large;
	top: 300px;
}
#notice {
	background-color:#FFCC00;
	color:#000000;
	}
#notice a:active {
  color: #000000;
  }
#notice a:visited {
  color: #000000;
  font-weight: bold;
  text-decoration: none;
	}
	
#notice	a:hover {
  color: #FF8000;
  text-decoration: underline;
}
