@charset "UTF-8";
#apDiv3 {
	position:relative;
	left:266px;
	top:-50px;
	width:501px;
	height:52px;
	z-index:4;
	font-family: "MS Serif", "New York", serif;
}
#apDiv14 {
	position:relative;
	left:30px;
	top:53px;
	width:776px;
	height:159px;
	z-index:5;
}
#apDiv15 {
	position:relative;
	left:210px;
	top:49px;
	width:584px;
	height:163px;
	z-index:6;
}

/* SpryTabbedPanels.css - version 0.4 - Spry Pre-Release 1.5 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* Horizontal Tabbed Panels
 *
 * The default style for a TabbedPanels widget places all tab buttons
 * (left aligned) above the content panel.
 */

/* This is the selector for the main TabbedPanels container. For our
 * default style, this container does not contribute anything visually,
 * but it is floated left to make sure that any floating or clearing done
 * with any of its child elements are contained completely within the
 * TabbedPanels container, to minimize any impact or undesireable
 * interaction with other floated elements on the page that may be used
 * for layout.
 *
 * If you want to constrain the width of the TabbedPanels widget, set a
 * width on the TabbedPanels container. By default, the TabbedPanels widget
 * expands horizontally to fill up available space.
 *
 * The name of the class ("TabbedPanels") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabbedPanels container.
 */
.TabbedPanels {
	margin: 0px;
	padding: 0px;
	float: left;
	clear: none;
	width: 100%; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
	height: inherit;
}

/* This is the selector for the TabGroup. The TabGroup container houses
 * all of the tab buttons for each tabbed panel in the widget. This container
 * does not contribute anything visually to the look of the widget for our
 * default style.
 *
 * The name of the class ("TabbedPanelsTabGroup") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabGroup container.
 */
.TabbedPanelsTabGroup {
	margin: 0px;
	padding: 0px;
	color: #313882;
}

/* This is the selector for the TabbedPanelsTab. This container houses
 * the title for the panel. This is also the tab "button" that the user clicks
 * on to activate the corresponding content panel so that it appears on top
 * of the other tabbed panels contained in the widget.
 *
 * For our default style, each tab is positioned relatively 1 pixel down from
 * where it wold normally render. This allows each tab to overlap the content
 * panel that renders below it. Each tab is rendered with a 1 pixel bottom
 * border that has a color that matches the top border of the current content
 * panel. This gives the appearance that the tab is being drawn behind the
 * content panel.
 *
 * The name of the class ("TabbedPanelsTab") used in this selector is not
 * necessary to make the widget function. You can use any class name you want
 * to style this tab container.
 */
.TabbedPanelsTab {
	position: relative;
	top: 1px;
	float: left;
	padding: 4px 10px;
	margin: 0px 0px 1px 0px;
	font: bold 0.7em sans-serif;
	background-color: #FFE899;
	list-style: none;
	border-left: solid 1px #CCC;
	border-bottom: solid 1px #999;
	border-top: solid 1px #999;
	border-right: solid 1px #999;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	white-space: nowrap;
}

/* This selector is an example of how to change the appearnce of a tab button
 * container as the mouse enters it. The class "TabbedPanelsTabHover" is
 * programatically added and removed from the tab element as the mouse enters
 * and exits the container.
 */
.TabbedPanelsTabHover {
	background-color: #FF6600;
}

/* This selector is an example of how to change the appearance of a tab button
 * container after the user has clicked on it to activate a content panel.
 * The class "TabbedPanelsTabSelected" is programatically added and removed
 * from the tab element as the user clicks on the tab button containers in
 * the widget.
 *
 * As mentioned above, for our default style, tab buttons are positioned
 * 1 pixel down from where it would normally render. When the tab button is
 * selected, we change its bottom border to match the background color of the
 * content panel so that it looks like the tab is part of the content panel.
 */
.TabbedPanelsTabSelected {
	background-color: #F7931D;
	border-bottom: 1px solid #313882;
}

/* This selector is an example of how to make a link inside of a tab button
 * look like normal text. Users may want to use links inside of a tab button
 * so that when it gets focus, the text *inside* the tab button gets a focus
 * ring around it, instead of the focus ring around the entire tab.
 */
.TabbedPanelsTab a {
	color: #000066;
	text-decoration: none;
}

/* This is the selector for the ContentGroup. The ContentGroup container houses
 * all of the content panels for each tabbed panel in the widget. For our
 * default style, this container provides the background color and borders that
 * surround the content.
 *
 * The name of the class ("TabbedPanelsContentGroup") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the ContentGroup container.
 */
.TabbedPanelsContentGroup {
	clear: both;
	background-color: #999999;
}

/* This is the selector for the Content panel. The Content panel holds the
 * content for a single tabbed panel. For our default style, this container
 * provides some padding, so that the content is not pushed up against the
 * widget borders.
 *
 * The name of the class ("TabbedPanelsContent") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the Content container.
 */
.TabbedPanelsContent {
	padding: 4px;
}

/* This selector is an example of how to change the appearnce of the currently
 * active container panel. The class "TabbedPanelsContentVisible" is
 * programatically added and removed from the content element as the panel
 * is activated/deactivated.
 */
.TabbedPanelsContentVisible {
	border: solid 1px #FFE899;
}

/* Vertical Tabbed Panels
 *
 * The following rules override some of the default rules above so that the
 * TabbedPanels widget renders with its tab buttons along the left side of
 * the currently active content panel.
 *
 * With the rules defined below, the only change that will have to be made
 * to switch a horizontal tabbed panels widget to a vertical tabbed panels
 * widget, is to use the "VTabbedPanels" class on the top-level widget
 * container element, instead of "TabbedPanels".
 */

/* This selector floats the TabGroup so that the tab buttons it contains
 * render to the left of the active content panel. A border is drawn around
 * the group container to make it look like a list container.
 */
.VTabbedPanels .TabbedPanelsTabGroup {
	float: left;
	width: 10em;
	height: 20em;
	background-color: #999999;
	position: relative;
	border-top: solid 1px #999;
	border-right: solid 1px #999;
	border-left: solid 1px #CCC;
	border-bottom: solid 1px #CCC;
}

/* This selector disables the float property that is placed on each tab button
 * by the default TabbedPanelsTab selector rule above. It also draws a bottom
 * border for the tab. The tab button will get its left and right border from
 * the TabGroup, and its top border from the TabGroup or tab button above it.
 */
.VTabbedPanels .TabbedPanelsTab {
	float: none;
	margin: 0px;
	border-top: none;
	border-left: none;
	border-right: solid 1px #FFE899;
}

/* This selector disables the float property that is placed on each tab button
 * by the default TabbedPanelsTab selector rule above. It also draws a bottom
 * border for the tab. The tab button will get its left and right border from
 * the TabGroup, and its top border from the TabGroup or tab button above it.
 */
.VTabbedPanels .TabbedPanelsTabSelected {
	background-color: #999999;
	border-bottom: solid 1px #999;
}

/* This selector floats the content panels for the widget so that they
 * render to the right of the tabbed buttons.
 */
.VTabbedPanels .TabbedPanelsContentGroup {
	clear: none;
	float: left;
	padding: 0px;
	width: 30em;
	height: 20em;
}
#apDiv5 {
	position:relative;
	width:100px;
	z-index:3;
	top: 243px;
	left: 57px;
}
#apDiv6 {
	position:relative;
	left:358px;
	top:243px;
	height:45px;
	z-index:4;
	visibility: visible;
}
#apDiv7 {
	position:relative;
	left:201px;
	top:243px;
	width:66px;
	height:72px;
	z-index:5;
}
#apDiv8 {
	position:relative;
	left:196px;
	top:242px;
	width:103px;
	height:73px;
	z-index:5;
}
#apDiv9 {
	position:relative;
	left:17px;
	top:239px;
	width:126px;
	height:80px;
	z-index:5;
}
#apDiv10 {
	position:relative;
	left:153px;
	top:239px;
	width:107px;
	height:66px;
	z-index:6;
}
#apDiv11 {
	position:relative;
	left:20px;
	top:238px;
	width:87px;
	height:53px;
	z-index:5;
}
#apDiv12 {
	position:relative;
	left:132px;
	top:240px;
	width:102px;
	height:64px;
	z-index:6;
}
#apDiv13 {
	position:relative;
	top:241px;
	width:180px;
	height:354px;
	z-index:1;
	background-color: #999999;
}
/* CSS Document */

#apDiv1 {
	position:absolute;
	width:150px;
	height:60px;
	z-index:1;
}
#apDiv2 {
	position:absolute;
	width:100;
	height:115px;
	z-index:2;
	top: 190px;
}
body {
	background-color:#909090;
}
.style1 {
	
	font-size: 4em;
	text-align: center;
}

/* SpryAccordion.css - Revision: Spry Preview Release 1.4 */

/* 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 {
	border-left: solid 1px gray;
	border-right: solid 1px black;
	border-bottom: solid 1px gray;
	overflow: visible;
}

/* 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.
 */
.AccordionPanelTab {
	background-color: #999999;
	border-top: solid 1px black;
	border-bottom: solid 1px gray;
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}

/* 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;
	padding: 0px;
	height: 200px;
}

/* 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: #999999;
}

/* 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 {
	color: #999999;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #CCCCCC;
}

/* 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 {
	background-color: #3399FF;
}

/* 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 {
	background-color: #33CCFF;
}
.apDiv4 {
	position:absolute;
	top:33px;
	width:790px;
	height:191px;
	z-index:2;
	background-color: #FFE899;
	font-family: "MS Serif", "New York", serif;
}
#apDiv4 {
	position:relative;
	top:227px;
	width:509px;
	height:22px;
	z-index:5;
	font-family: "MS Serif", "New York";
}
.port_heading {
	font-family: "MS Serif", "New York";
	font-size: 2.2em;
	font-style: normal;
	font-weight: bold;
	line-height: 0em;
	color: #000066;
	position: relative;
}
.port_italic {
	font-family: "MS Serif", "New York";
	font-size: 0.8em;
	font-style: italic;
	line-height: 2em;
}
.port_menu {
	font-family: "MS Serif", "New York";
	font-size: 1em;
	font-style: normal;
	color: #000066;
	line-height: 2em;
	cursor: pointer;
}
#apDiv17 {
	position:relative;
	left:820px
	width:5px;
	height:730px;
	z-index:6;
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #000099;
}
#apDiv16 {
	position:relative;
	width:812px;
	height:5px;
	z-index:5;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #000099;
}
#apDiv18 {
	position:relative;
	width:5px;
	height:730px;
	z-index:7;
	border-left-width: 2px;
	border-left-style: solid;
	border-left-color: #000099;
}
#apDiv21 {
	position:relative;
	width:810px;
	height:5px;
	z-index:8;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #000099;
	font-family: "MS Serif", "New York";
}
#apDiv21 {
	height: 0em;
	border:none;
	font-family: "MS Serif", "New York";
	color: #000066;
	position:relative;
	left:280px;
	top:200px;
	z-index:10
}
.style2 {
	font-family: "MS Serif", "New York", serif;
	font-size:0.8em;
	font-style:italic;
}
.style3 {
	height: .5em;
	font-family: "MS Serif", "New York", serif;
	font-size: 2.2em;
	font-style: normal;
	font-weight: bold;
	text-align:center;
}
	#container {
clear: both;
margin:0 auto;
width:778px;
top:auto;
}
