@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #999999;
	background-color: #E28015;
	background-image: url(images/bg.gif);
}
.twoColFixRtHdr #container {
	width: 768px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	height: auto;
	margin-top: 15px;
	background-image: url(images/mainContent_bg.jpg);
	background-repeat: repeat-x;
	background-color: #FCFCFA;
} 
.twoColFixRtHdr #header {
	width: 768px;
	height: 203px;
	background-image: url(images/header_bg.jpg);
} 
.twoColFixRtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.odd {
	background-color: #FF9933;
}
.even {
	background-color: #FFCC33;
}
.hover {
	background-color: #FFEFAE;
}
.selected {
	background-color: #FFD5AA;
}
.top {
	color: #FFFFFF;
	background-color: #666600;
	font-size: small;
}


p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	color: #666666;
}
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 214px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px;
}
.twoColFixRtHdr #mainContent {
	margin: 0 0 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px;
	border-right-style: dashed;
	width: 489px;
	border-right-width: thin;
	border-color: #9BD64A;
} 
.twoColFixRtHdr #footer {
	padding: 0 10px 0 20px;
	background-image: url(images/footerImg.gif);
	background-repeat: no-repeat;
	background-position: bottom;
	background-color: #FCFCFA;
	text-align: center;
} 

/*___________________Footer Nav Menu
____________________________________*/
.twoColFixRtHdr #container #footer ul {
	padding: 0px;
	margin: 0px;
	list-style: none;
	float: left;
}
.twoColFixRtHdr #container #footer li {
	float: left;
}

.twoColFixRtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
h5 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: medium;
	background-color: #B3D77F;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 10px;
	color: #FFFFFF;
}
#smBx {
	width: 230px;
	float: left;
	padding-right: 10px;
	border-right-width: thin;
	border-right-style: dotted;
	border-right-color: #B3D77F;
}
#smBx2 {
	width: 230px;
	float: left;
	padding-left: 10px;
}

#headerBar {
	background-color: #BBDB8F;
	height: 30px;
}
.headerBar_txt {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	color: #FFFFFF;
	padding: 5px;
	font-weight: bold;
}
.heading {
	font-size: medium;
	font-weight: bold;
	color: #E28015;
}

/*----------------------- SpryCollapsiblePanel STARTS HERE--------------------------*/


/* SpryCollapsiblePanel.css - version 0.5 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main CollapsiblePanel container. For our
 * default style, the CollapsiblePanel is responsible for drawing the borders
 * around the widget.
 *
 * If you want to constrain the width of the CollapsiblePanel widget, set a width on
 * the CollapsiblePanel container. By default, our CollapsiblePanel expands horizontally to fill
 * up available space.
 *
 * The name of the class ("CollapsiblePanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * CollapsiblePanel container.
 */
.CollapsiblePanel {
	margin: 0px;
	padding: 0px;
	border-left: solid 1px #CCC;
	border-right: solid 1px #999;
	border-top: solid 1px #999;
	border-bottom: solid 1px #CCC;
}

/* This is the selector for the CollapsiblePanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open or close the panel.
 *
 * The name of the class ("CollapsiblePanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * CollapsiblePanel panel tab container.
 */
.CollapsiblePanelTab {
	font: bold 0.7em sans-serif;
	background-color: #DDD;
	border-bottom: solid 1px #CCC;
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}

/* This is the selector for a CollapsiblePanel's Content area. It's important to note that
 * you should never put any padding on the content area element if you plan to
 * use the CollapsiblePanel's open/close animations. Placing a non-zero padding on the content
 * element can cause the CollapsiblePanel to abruptly grow in height while the panels animate.
 *
 * The name of the class ("CollapsiblePanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style a
 * CollapsiblePanel content container.
 */
.CollapsiblePanelContent {
	margin: 0px;
	padding: 0px;
	background: #FFFFFF;
	height: auto;
}
.CollapsiblePanelContent p {
	font-size: x-small;
	padding: 0 20px;
	margin: .5em 0;
}
.CollapsiblePanelContent img {
	display: block;
	padding: 10px 10px;
	width: 90%;
}

/* An anchor tag can be used inside of a CollapsiblePanelTab so that the
 * keyboard focus ring appears *inside* the tab instead of around the tab.
 * This is an example of how to make the text within the anchor tag look
 * like non-anchor (normal) text.
 */
.CollapsiblePanelTab a {
	color: black;
	text-decoration: none;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "CollapsiblePanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the CollapsiblePanel.
 */
.CollapsiblePanelOpen .CollapsiblePanelTab {
	background-color: #EEE;
}

/* This is an example of how to change the appearance of the panel tab when the
 * CollapsiblePanel is closed. The "CollapsiblePanelClosed" class is programatically added and removed
 * whenever the CollapsiblePanel is closed.
 */

.CollapsiblePanelClosed .CollapsiblePanelTab {
 /* background-color: #EFEFEF */
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "CollapsiblePanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.CollapsiblePanelTabHover,  .CollapsiblePanelOpen .CollapsiblePanelTabHover {
	background-color: #CCC;
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * CollapsiblePanel has focus. The "CollapsiblePanelFocused" class is programatically added and removed
 * whenever the CollapsiblePanel gains or loses keyboard focus.
 */
.CollapsiblePanelFocused .CollapsiblePanelTab {
	background-color: #3399FF;
}
#Bx {
	width: 465px;
	float: left;
	background-color: #FFFFFF;
	border: thin dotted #B3D77F;
	padding: 10px;
}
#pBx {
	width: 160px;
	float: left;
	border-right-width: thin;
	border-right-style: dotted;
	border-right-color: #B3D77F;
	height: 200px;
	text-align: left;
	padding: 0px;
}
#accordianDetailBx {
	float: right;
	width: 300px;
}
