/* 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%;
}
/* 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: #000000;
  color: #FFFFFF;
  font-family: "Comic Sans MS", cursive;
  font-size: 1.5em;
  line-height: 1.25em;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* 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: #FF00FF;
  font-family: "Comic Sans MS", cursive;
  font-size: 2.25em;
  font-weight: bold;
  line-height: 1.25em;
}
/* Commonly used to style section titles. */
h2 {
  color: #9966FF;
  font-family: "Comic Sans MS", cursive;
  font-size: 2em;
  font-weight: bold;
  line-height: 1.25em;
}
/* Sets the style for the h3 header. */
h3 {
  color: #00FFFF;
  font-family: "Comic Sans MS", cursive;
  font-size: 1.75em;
  font-weight: bold;
  line-height: 1.25em;
}
/* Sets the style for the h4 header. */
h4 {
  color: #FFFF00;
  font-family: "Comic Sans MS", cursive;
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.25em;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #99FFFF;
  font-family: "Comic Sans MS", cursive;
  font-size: 1em;
  line-height: 1.25em;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #FF00FF;
  font-family: "Comic Sans MS", cursive;
  font-size: 1em;
  line-height: 1.25em;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #CCFF99;
  font-family: "Comic Sans MS", cursive;
  font-size: 1em;
  line-height: 1.25em;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #CCFF99;
  font-size: 1em;
  line-height: 1.25em;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #CCFFCC;
  font-size: 1em;
  line-height: 1.25em;
}
/* 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 {
  background-color: #000000;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 100%;
}
#header {
	position: relative;
	margin: 0 auto 0 auto;
	padding: 0;
	width: 780px;
	height: 174px;
	overflow: hidden;
}	
 #header span {
    display: block;
	position: absolute;
	left:0;
	top: 0;
	z-index: 1;
	width: 780px;
	height: 174px;
	margin: 0 auto 0 auto;
	padding:0;
	background:  url(images/heading_new.gif) top left no-repeat;
}
#contentWrapper {
  margin: 0 10px 0 10px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 10px 20px 10px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
 #content {
  font-family: "Comic Sans MS", cursive;
  font-size: 1.75em;
  line-height: 1.25em;
  margin: 0 0 0 0; /* 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) */
}
#footer {
  background-color: #000000;
  border-top: solid 1px #00E827; /* Sets the top border properties for an element using shorthand notation */
  color: #FFFFFF;
  font-family: "Comic Sans MS", cursive;
  font-size: 1em;
  line-height: 1.25em;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
 #footer a, #outerWrapper #footer a:link {
  color: #99FFFF;
  font-family: "Comic Sans MS", cursive;
  font-size: 1em;
  line-height: 1.25em;
  text-decoration: none;
}
#footer a:hover {
  color: #CCFF99;
  font-family: "Comic Sans MS", cursive;
  font-size: 1em;
  line-height: 1.25em;
  text-decoration: underline;
}
 #footer a:focus {
  color: #CCFF99;
  font-size: 1em;
  line-height: 1.25em;
}
#skip {
  margin: 10px 10px 10px 10px;
  padding: 10px 10px 10px 10px;
  text-align: right;
  font-family: "Comic Sans MS", cursive;
  font-size: 1em;
  line-height: 1.25em;
  border-bottom: solid 1px #00E827;
  height: 60px;
  }
 #skip li {
 font-size: 1em;
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline;
	text-align: right;
}
#skip li a {
	padding: 3px;
	margin: 0;
	text-decoration: none;	
}
#skip li a:link {
    font-size: 1em;
	color: #8905FF;
	border-bottom: 1px #00E827;
}
 #skip li a:visited {
    font-size: 1em;
	color: #FF00FF;
}
#skip li a:hover {
    text-decoration: underline;
    font-size: 1em;
	color: #00E827;
	}
.indent {
    padding-left: 20px;
}
#nav, #nav ul {
    font-size: 0.85em;
	float: left;
	width: 100%;
	list-style: none;
	line-height: 1em;
	background: #000;
	font-weight: bold;
	padding: 0;
	border: solid #00E827;
	border-width: 1px 0;
	margin: 10px 0 20px 0;
	text-align: center;
}

#nav a {
	display: block;
	width: 8em;
	w\idth: 8em;
	color: #8905FF;
	text-decoration: none;
	padding: 0.25em 1em;
	text-align: left;
}

#nav li {
	float: left;
	padding: 0;
	width: 8em;
}

#nav li ul {
	position: absolute;
	left: -999em;
	height: auto;
	width: 8em;
	w\idth: 8em;
	font-weight: normal;
	border-width: 0.25em;
	margin: 0;
	text-align: left;
}

#nav li li {
	padding-right: 1em;
	width: 8em;
}

#nav li ul a {
	width: 8em;
	w\idth: 8em;
}

#nav li ul ul {
	margin: -1.75em 0 0 8em;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul {
	left: auto;
	text-align: left;
}

#nav li:hover, #nav li.sfhover {
	background: #FFF;
	text-align: left;
}
.important {
 	color: #FFAA00;
	 padding-left: 30px;
}
.italic {
    font-style: italic;
	padding-left: 30px;
	}
#outerWrapper #contentWrapper #albumlist {
 	font-family: "Comic Sans MS", cursive;
 	font-size: 1em;
 	line-height: 1.25em;
 	margin: 10px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
 	padding: 10px 0 10px 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
 	clear: left;
 	list-style-type: none;
	height: auto;
	overflow: auto;
}
#album ul {
	list-style-type: none;
}
#album li {
	float: left;
	height: 350px;
	width: 230px;
	margin-right: 6px;
	margin-bottom: 10px;
	font-size: 1em;
	font-weight: bold;
	font-family: "Comic Sans MS", cursive;
	color: #ffffff;
	list-style-type: none;
}
#album img{
	display: block;
	border: 1px solid #FFAA00;
} 
#outerWrapper #contentWrapper #videolist {
 	font-family: "Comic Sans MS", cursive;
 	font-size: 1em;
 	line-height: 1.25em;
 	margin: 10px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
 	padding: 10px 0 10px 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
 	clear: left;
 	list-style-type: none;
	height: auto;
	overflow: auto;
}
#video ul {
	list-style-type: none;
}
#video li {
	float: left;
	width: 320px;
	margin-right: 6px;
	margin-bottom: 10px;
	font-size: 1em;
	font-weight: bold;
	font-family: "Comic Sans MS", cursive;
	color: #ffffff;
	list-style-type: none;
}
#video img{
	display: block;
	border: 1px solid #FFAA00;
} 
#apDiv1 {
	clear: left;
	width:175px;
	height:100px;
	z-index:2;
	} 
.additionalimage {
	float: left;
	width: 250px;
	border: 2px solid #fff;
	margin-right: 20px;
	border-bottom: 6px;
	}
.alternativeimage {
	float: left;
	width: 150px;
	border: 2px solid #fff;
	margin-right: 20px;
	border-bottom: 6px;
	}
