@charset "UTF-8";

/* SpryAccordion.css - Revision: Spry Preview Release 1.4 * 8192 bug/

/* 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: hidden;
	position:relative;
	top: 28px;
}

/* 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;
	background-color: #FFFFEA;
}

/* 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, .APTab-wi, .APTab-ed, .APTab-tb, .APTab-cb, .APTab-bsb, .APTab-bcb, .APTab-sb {
 	background-image:  url(Images/UM.jpg);
	color:#00000;
	background-color: #979797;
	border-top: solid 1px black;
	border-bottom: solid 1px gray;
	margin: 0px;
	padding: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}
.APTab-wi {
	background-image:  url(Images/UM2h.jpg);
	color:#00000;
	background-color: #999999;
}
.APTab-ed {
 	background-image:  url(Images/UM2he.jpg);
	color:#00000;
	background-color: #999999;
}
.APTab-tb {
	background-image: url(Images/tbh.jpg);
	color:#00000;
	background-color: #336666;
}
.APTab-cb {
 	background-image: url(Images/cbh.jpg);
	color:#00000;
	background-color: #663333;
}
.APTab-bsb {
	color:#00000;
	background-image: url(Images/bsbh.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}
.APTab-bcb {
	color:#00000;
	background-image: url(Images/bcbh.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}
.APTab-sb {
	background-image: url(Images/sbh.jpg);
	color:#00000;
	background-color: #336666;
}
/* 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, .APC-tb, .APC-cb, .APC-bsb, .APC-bcb, .APC-sb, .APC-wi, .APC-ed {
	overflow: auto;
	margin: 0px;
	padding: 0px 0px 0px 23px;
	height: 13.5364em;
	text-align:center;
	text-indent: 10px;
	background: url(Images/UM2.jpg) no-repeat;
	color: #074672; !important
 	background-color: #FDFDFD;
	font: Arial, sans-serif;
	
}
.APC-wi {
  background: url(Images/UM2.jpg) no-repeat;
  
}
.APC-ed {
	background-color: #FFFFEA;
	background-image: url(Images/UM2.jpg);
	background-repeat: no-repeat;
}
.APC-tb {
  background: url(Images/tb.jpg) no-repeat;
}
.APC-cb {
  background: url(Images/cb.jpg) no-repeat;
  
}
.APC-bsb {
  background: url(Images/bsb.jpg) no-repeat;
}
.APC-bcb {
  background: url(Images/bcb.jpg) no-repeat;
}
.APC-sb {
  background: url(Images/sb.jpg) no-repeat;
}




/* 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-image: url(Images/UM2O.jpg);

}
.AccordionPanelOpen .APTab-wi
{
	background-image: url(Images/UM2hO.jpg);
	background-repeat: no-repeat;
	background-position: center center;

}
.AccordionPanelOpen .APTab-ed
{
	background-image: url(Images/UM2heO.jpg);
	background-repeat: no-repeat;
	background-position: center center;

}
.AccordionPanelOpen .APTab-bcb
{
	background-image: url(Images/bcbhO.jpg);
	background-repeat: no-repeat;
	background-position: center center;

}
.AccordionPanelOpen .APTab-bsb
{
	background-image: url(Images/bsbhO.jpg);
	background-repeat: no-repeat;
	background-position: center center;

}
.AccordionPanelOpen .APTab-cb
{
	background-image: url(Images/cbhO.jpg);
	background-repeat: no-repeat;
	background-position: center center;

}
.AccordionPanelOpen .APTab-sb
{
	background-image: url(Images/sbhO.jpg);
	background-repeat: no-repeat;
	background-position: center center;

}
.AccordionPanelOpen .APTab-tb
{
	background-image: url(Images/tbhO.jpg);
	background-repeat: no-repeat;
	background-position: center center;

}
/* 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 .APTab-ed{
	background-image: url(Images/light.gif)!important
}
.AccordionPanelTabHover .APTab-bcb{
	background-image: url(Images/light.gif)!important

	color: #C1C1C1;
}
.AccordionPanelTabHover .APTab-bsb{
	background-image: url(Images/light.gif)!important

	color: #C1C1C1;
}
.AccordionPanelTabHover .APTab-cb{
	background-image: url(Images/light.gif)!important

	color: #C1C1C1;
}
.AccordionPanelTabHover .APTab-sb{
	background-image: url(Images/light.gif)!important

	color: #C1C1C1;
}.AccordionPanelTabHover .APTab-tb{
	background-image: url(Images/light.gif)!important

	color: #C1C1C1;
}
.AccordionPanelOpen .AccordionPanelTabHover{

	color: #C1C1C1;
}

/* 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: #979797;
}
.AccordionFocused .APTab-tb { 
}

/* 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: #979797;
}
.AccordionFocused .AccordionPanelOpen .APTab-tb { 
}

.cb-img, .tb-img, #bsb-img, #bcb-img, #sb-img {
  width: 25px;
  height: 125px;
  float: left;
  margin-right: 10px;
  text-align: center;
  padding-top: 15px;
  font-size: 9px;
  font-weight: bold;
}
#cb-img {
  background: url(images/Structuress.jpg) no-repeat;
	position:absolute;left:0;top:0;z-index:9999;
	background-color:transparent;width:350px;height:250px;

}
#tb-img {
  background: url(images/T&T.jpg) no-repeat;
}
.bsb-img {
  background: url(Images/bsb.jpg) no-repeat;
}
.bcb-img {
  background: url(../Structuress.jpg) no-repeat;
}
.sb-img {
  background: url(../Structuress.jpg) no-repeat;
}
.bg-Image {
	background-attachment: fixed;
	background-image: url(Structures.jpg);
	background-repeat: no-repeat;
	background-position: left center;
}
.style18 {color: #200020}

.APC {font-family: arial, sans-serif}
.style23 {font-family: arial, sans-serif}
.style24 {font-family: Geneva, Arial, Helvetica, sans-serif}
.style26 {
	font-weight: bold
}
.APCon {
	font-size: 12px
}
