<style type="text/css" media="all">

html, body, div, span, applet, object, ul, 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-attachment: fixed;
	background-color: #000000;
	background-image: url(../images/background.png);
	background-repeat: repeat-x;
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	font-variant: normal;
	line-height: 14px;
	margin: 0 auto 0 auto; /* 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. */
	width: 960px;
	height: auto;
	scrollbar-base-color: #666666;
}

/* Commonly used to style page titles. */
h1 {
	color: #FFFFFF;
	font: normal small-caps bold 14px Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
	line-height: 14px;
	margin-top: 7px;
}
/* Commonly used to style section titles. */
h2 {
	color: #408CD8;
	font: normal small-caps bold 14px Arial, Helvetica, sans-serif;
	margin-top: 9px;
}
/* Sets the style for the h3 header. */
h3 {
	color: #408CD8;
	font: normal small-caps bold 14px Arial, Helvetica, sans-serif;
	margin-top: 0px;
	padding-top: 0px;
	margin-bottom: 15px;
}
/* Sets the style for the h4 header. */
h4 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-style: normal;
  font-variant: small-caps;
}
/* Sets the style for unvisited links. */
#header a,  a:link {
  color: #FFFFFF;
  font-weight: bold;
  text-decoration: none;
  outline: none;
}
/* Sets the style for visited links. */
#header a:visited {
	color: #CCCCCC;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
#header a:hover {
	color: #408CD8;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
#header a:focus {
  color: #408CD8;
  outline: none;
}

#footer2 a,  a:link {
  color: #FFFFFF;
  font-weight: bold;
  text-decoration: none;
  outline: none;
}
/* Sets the style for visited links. */
#footer2 a:visited {
	color: #CCCCCC;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
#footer2 a:hover {
	color: #408CD8;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
#footer2 a:focus {
  color: #408CD8;
  outline: none;
}


/* Sets the style for unvisited links on white backgrounds. */
#content_body a,  a:link {
  color: #408CD8;
  font-weight: bold;
  text-decoration: none;
  outline: none;
}
/* Sets the style for visited links on white backgrounds. */
#content_body  a:visited {
	color: #666666;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
#content_body  a:hover {
	color: #000000;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
#content_body  a:focus {
	color: #000000;
	outline: none;
}



#logo{
	width: 955px;
	height: 73px;
	margin-top: 10px;
	float: left;
	}
	
#top_menu{
	width: 250px;
	height: 25px;
	margin-top: 17px;
	margin-left: 690px;
	font-family: Arial;
	font-size: 11px;
	text-align: right;
	padding-right: 10px;
	}
.searchbox{
	background-image:url(../images/search_box.gif);
	background-repeat: no-repeat;
	border: none;
	}

#title{
	padding-top: 10px;
	background-color:#000000;
	}
	
/* 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: #FFFFFF;
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left;
	background-image: url(../images/body-background.png);
	background-repeat: repeat-y;
}
#outerWrapper #header {
	background-color: #000000;
	border-bottom: solid 1px #408CD8; /* Sets the bottom border properties for an element using shorthand notation */
	font-size: 18px;
	line-height: 15px;
	padding: 0px;
	background-image: url(../images/header-background.png);
	background-repeat: repeat-x;
	height: 100px;
}

#content_body {
	width: 940px;
	padding: 10px;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #FFFFFF;
	color:#000000;
	background-image: url(../images/p7ap_light_gray_bevel2.png);
	background-repeat: repeat-x;
	margin-top: 1px;
}
	
#outerWrapper #contentWrapper #rightColumn1 {
  background-color: #000000;
  float: right;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 150px;
}

/* 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. */
#outerWrapper #contentWrapper #content {
	margin-top: 2px;
}
/* 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. */
#outerWrapper #contentWrapper .clearFloat {
  clear: both;
  display: block;
}
#outerWrapper #footer {
  background-color: #000000;
  border-top: solid 1px #666; /* 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) */
}
	
/*Search Button*/

.button {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	background-color: #408CD8;
	color: #333333;
	margin-right: 6px;
	padding-bottom: 2px;
}

.button2 { 
 font-family: Verdana, Arial, Helvetica, sans-serif; 
 font-size: 10px; 
 background-color: #408CD8; 
 color: #FFFFFF; 
 margin-right: 6px;
 padding-bottom: 2px; 
}


.breadcrumbs2 {
	height: 20px;
	width: 520px;
	margin-top: 4px;
	margin-bottom: 10px;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 11px;
	color:#FFFFFF;
	}

#slider {
    width: 410px; /* important to be same as image width */
    height: 228px; /* important to be same as image height */
    position: relative; /* important */
	overflow: hidden; /* important */
}
#sliderContent {
    width: 410px; /* important to be same as image width or wider */
    position: absolute;
	top: 0;
	margin-left: 0;
}
.sliderImage {
    float: left;
    position: relative;
	display: none;
}
.sliderImage span {
    position: absolute;
	font: 10px/15px Arial, Helvetica, sans-serif;
    padding: 10px 13px;
    width: 384px;
    background-color: #000;
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
	-khtml-opacity: 0.7;
    opacity: 0.7;
    color: #fff;
    display: none;
}
.clear {
	clear: both;
}
.sliderImage span strong {
    font-size: 14px;
}
.top {
	top: 0;
	left: 0;
}
.bottom {
	bottom: 0;
    left: 0;
}
ul { list-style-type: none;
padding:0px;
margin: 0px;}

.labelfield{ /*CSS for label field in general*/
color:brown;
font-size: 90%;
}

.datefield{ /*CSS for date field in general*/
color:gray;
font-size: 80%;
}

#example1 li{ /*CSS specific to demo 1*/
margin-bottom: 4px;
list-style-type: none;
}

#example2 div{ /*CSS specific to demo 2*/
margin-bottom: 5px;
}

#example2 div a{ /*CSS specific to demo 2*/
text-decoration: none;
}

#example3 a{ /*CSS specific to demo 3*/
color: #D80101;
text-decoration: none;
font-weight: bold;
}

#example3 p{ /*CSS specific to demo 3*/
margin-bottom: 2px;
}


</style>


[if IE 5]>
<style type="text/css"> 
/* IE 5 does not use the standard box model, so the column widths are overidden to render the page correctly. */
#outerWrapper #contentWrapper #leftColumn1 {
  width: 170px;
}
#outerWrapper #contentWrapper #rightColumn1 {
	width: 210px;
	padding-top: 0px;
	height: 0px;
}

.footer_holder {
	height: 220px;
	background-color: #000000;
	float:left;
	width: 960px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #408CD8;
	padding-top: 10px;
	}
	
	.footer_background {
	height: 15px;
	width: 960px;
	background-color: #000000;
	border-top: solid 1px #408CD8;
	padding-top: 10px;
	padding-bottom: 10px;
	float: left;
	font-size: 11px;
	}
</style>

<![endif]


[if IE]>
<style type="text/css"> 
/* The proprietary zoom property gives IE the hasLayout property which addresses several bugs. */
#outerWrapper #contentWrapper #content {
  zoom: 1;
}
</style>

<![endif]

