@charset "UTF-8";

/* SpryAccordion.css - version 0.4 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main Accordion container. For our default style,
 * we draw borders on the left, right, and bottom. The top border of the Accordion
 * will be rendered by the first AccordionPanelTab which never moves.
 *
 * If you want to constrain the width of the Accordion widget, set a width on
 * the Accordion container. By default, our accordion expands horizontally to fill
 * up available space.
 *
 * The name of the class ("Accordion") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * Accordion container.
 */
.Accordion {

	overflow: hidden;
}

/* This is the selector for the AccordionPanel container which houses the
 * panel tab and a panel content area. It doesn't render visually, but we
 * make sure that it has zero margin and padding.
 *
 * The name of the class ("AccordionPanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel container.
*/
.AccordionPanel {
	margin: 0px;
	padding: 0px;
}


/* This is the selector for the AccordionPanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open a specific panel.
 *
 * The name of the class ("AccordionPanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel tab container.
 *
 * NOTE:
 * This rule uses -moz-user-select and -khtml-user-select properties to prevent the
 * user from selecting the text in the AccordionPanelTab. These are proprietary browser
 * properties that only work in Mozilla based browsers (like FireFox) and KHTML based
 * browsers (like Safari), so they will not pass W3C validation. If you want your documents to
 * validate, and don't care if the user can select the text within an AccordionPanelTab,
 * you can safely remove those properties without affecting the functionality of the widget.
 */
.AccordionPanelTab {
	
	margin: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	height: 20px;
	padding-top: 9px;
	padding-right: 2px;
	padding-bottom: 9px;
	padding-left: 2px;
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #CCC;
}
.AccordionPanelTab1 {
	margin: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	height: 12px;
	padding-top: 10px;
	padding-right: 2px;
	padding-bottom: 9px;
	padding-left: 14px;
	border-top-width: 2px;
	border-top-style: none;
	border-top-color: #CCC;
	font-family: Arial, Helvetica, sans-serif;
	color: #000;
	background-color: #F5F5F5;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-bottom-style: solid;
	border-right-color: #CCC;
	border-bottom-color: #CCC;
	border-left-color: #CCC;
}

.AccordionPanelTab2 {
	margin: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	height: 12px;
	padding-top: 10px;
	padding-right: 2px;
	padding-bottom: 9px;
	padding-left: 14px;
	border-top-width: 2px;
	border-top-style: none;
	border-top-color: #CCC;
	font-family: Arial, Helvetica, sans-serif;
	color: #000;
	background-color: #F5F5F5;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-bottom-style: solid;
	border-right-color: #CCC;
	border-bottom-color: #CCC;
	border-left-color: #CCC;
}


/* This is the selector for a Panel's Content area. It's important to note that
 * you should never put any padding on the panel's content area if you plan to
 * use the Accordions panel animations. Placing a non-zero padding on the content
 * area can cause the accordion to abruptly grow in height while the panels animate.
 *
 * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
 * Content container.
 *
 * The name of the class ("AccordionPanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel content container.
 */
.AccordionPanelContent {
	overflow: auto;
	margin: 0px;
	height: 410px;
	padding-top: 7px;
	padding-right: 0px;
	padding-bottom: 7px;
	padding-left: 0px;
	font-size: 11px;
}

.AccordionPanelContent1 {
	overflow: auto;
	margin: 0px;
	height: 280px;
	padding-top: 7px;
	padding-right: 0px;
	padding-bottom: 7px;
	padding-left: 0px;
	font-size: 11px;
}

.AccordionPanelContent2 {
	overflow: auto;
	margin: 0px;
	height: 90px;
	padding-top: 7px;
	padding-right: 0px;
	padding-bottom: 7px;
	padding-left: 0px;
	font-size: 11px;
}
/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "AccordionPanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the Accordion.
 */
.AccordionPanelOpen .AccordionPanelTab {
	background-color: #EEEEEE;
	
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.AccordionPanelTabHover {
	background-color: #CCC;
}
.AccordionPanelOpen .AccordionPanelTabHover {
		background-color: #CCC;

}

/* This is an example of how to change the appearance of all the panel tabs when the
 * Accordion has focus. The "AccordionFocused" class is programatically added and removed
 * whenever the Accordion gains or loses keyboard focus.
 */
.AccordionFocused .AccordionPanelTab {
	
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open when the Accordion has focus.
 */
.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	
}

#adv2 {
  width:650px;

}
#adv2 ul {
	display:block;
	float:left;
	margin: 0px;
	padding: 0px;	
}
#adv2 li {
	float:left;
	list-style-type: none;
}
#adv2 li a {
	display:block;
	height:25px;
	
	line-height:26px;
	text-decoration:none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #333;
	text-align: left;
	padding-left: 9px;
	padding-right: 9px;
}
#adv2 li a:hover {
	color: #000;
	background-color: #CCC;
}
#adv2 li a.selected {
	color:#FFF;
	font-weight:bold;
	background-color: #900;
}

#adv2 span {
  height:50px;
  display:block;
  line-height:45px;
  width:650px;
  float:right;

}

#adv3 a {
  color:snow;
  font-size:2em;
  font-weight:bold;
  text-decoration:none;
  margin:6px;
}
#adv3 a:hover { color:#68D; }
#adv3 p {
  color:#888;
  margin:5px;
  font-style:italic; 
}
#adv3 p a {
  margin:0;
  color:#CCC;
  font-size:1em;
  font-weight:bold;
  text-decoration:underline;
}
#adv3 p a:hover { color:#FFF; }

#message {
  margin:10px auto;
  border:6px solid #222;
  width:240px;
  height:40px;
  font-size:1.3em;
  line-height:2em;
  color:#FC4;
}

.media_header1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	line-height: normal;
	padding-top: 10px;
	padding-bottom: 5px;
}

.media_sub {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333;
	line-height: normal;
	padding-top: 3px;
	padding-right: 3px;
	padding-bottom: 6px;
}

#container_media {
	width: 200px;	
}

#container_media ul {
		
}

#container_media li {
	
	list-style-type: none;		
}

#nav a, #nav a:active, #nav a:visited {
	display:block;
	float:left;
	color:#000;
	margin-right:10px;
	text-decoration:none;
	outline:none;
	background-color: #FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	margin-bottom: 10px;
	padding-top: 5px;
	padding-right: 8px;
	padding-bottom: 5px;
	padding-left: 8px;
	}
#nav a.selected, #nav a.selected:active, #nav a.selected:visited {
	background:#C51D1D;
	color:#fff;
	text-decoration:none;
	outline:none;
	}
	
	#nav1 a, #nav1 a:active, #nav1 a:visited {
	display:block;
	float:left;
	color:#000;
	margin-right:10px;
	text-decoration:none;
	outline:none;
	background-color: #FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	margin-bottom: 10px;
	padding-top: 5px;
	padding-right: 8px;
	padding-bottom: 5px;
	padding-left: 8px;
	}
#nav1 a.selected, #nav1 a.selected:active, #nav1 a.selected:visited {
	color:#FFF;
	text-decoration:none;
	outline:none;
	background-color: #F90;
	font-weight: normal;
	}
	
		#nav2 a, #nav2 a:active, #nav2 a:visited {
	display:block;
	float:left;
	color:#000;
	margin-right:10px;
	text-decoration:none;
	outline:none;
	background-color: #FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	margin-bottom: 10px;
	padding-top: 5px;
	padding-right: 8px;
	padding-bottom: 5px;
	padding-left: 8px;
	}
#nav2 a.selected, #nav2 a.selected:active, #nav2 a.selected:visited {
	color:#FFF;
	text-decoration:none;
	outline:none;
	background-color: #09C;
	font-weight: normal;
	}
	
	
			#nav3 a, #nav3 a:active, #nav3 a:visited {
	display:block;
	float:left;
	color:#000;
	margin-right:10px;
	text-decoration:none;
	outline:none;
	background-color: #FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	margin-bottom: 10px;
	padding-top: 5px;
	padding-right: 8px;
	padding-bottom: 5px;
	padding-left: 8px;
	}
#nav3 a.selected, #nav3 a.selected:active, #nav3 a.selected:visited {
	color:#FFF;
	text-decoration:none;
	outline:none;
	background-color: #52b2bc;
	font-weight: normal;
	}
.hiddencontent {
	padding:12px;
	display:none;
	background-color: #F8F8F8;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCC;
	}
.clear {
	clear:both;
	}
