/* CSS Document */
html, body, ul, ol, li, p, h1, h2, h3, h4, h5, h6, form, fieldset, img { 
	padding : 0;
	margin : 0;
	border : 0;
} 

body { 
	padding : 0;
	margin : 0;
	background : url(../images/body_bg.jpg) repeat-x 0 0;
	color : #000;
	font : 13px/19px Arial, Helvetica, sans-serif;
	text-align : center;
} 

ul{
	list-style-type:none
}

/*----MAIN PANEL----*/
#mainPan {
	width : 778px;
	background-color : #ffffff;
	margin : 10px auto 0 auto;
	border : 1px solid #3b6e8e;
	text-align : left;
	position : relative;
} 

/*----TOP PANEL----*/
#topPan { 
	width : 778px;
	height : 100px;
	background-image:url(../images/banner.jpg);
	background-repeat : no-repeat;
	padding : 0;
	margin : 0;
} 

/*----/TOP PANEL----*/

/*----NAVIGATION PANEL----*/

/*
Container for the menu. We set top and bottom borders only because the menu container
stretches the entire window width. Note that this container can go inside a fixed width
element that is centered on the page, if you so desire. It can even go inside a table cell.
*/
#menuwrapper {
	border-top: 1px solid #3b6e8e;
	border-bottom: 1px solid #3b6e8e;
	background-color: #3b6e8e;
	padding:0 0 0 85px;
}
/*Clears the floated menu items.
Assigned to a BR tag placed just before
menuwrapper's closing DIV tag*/
.clearit {
	clear: both;
	height: 0;
	line-height: 0.0;
	font-size: 0;
}
/*
p7menubar is the root UL and p7menubar ul applies to all the sub-menu ULs.
We set padding and margin to zero to eliminate all indentation, turn bullets off,
and set a font-family different from the global font-family declared for the
body element above. This sets font for just the menu. Do not add a font-size here.
*/
#p7menubar, #p7menubar ul {
	padding: 0;
	margin: 0;
	list-style: none;
	font-family: Arial, Helvetica, sans-serif;
}
/*
Root-Level Links.  Do not change the first two properties.
Adjust padding values to make the root links taller and to offset them
from the left and right edges of the link box. The border right creates a
separator between links. Font-size is set here and will apply to all menu levels.
Font color is set to taupe.
*/
#p7menubar a {
	display: block;
	text-decoration: none;
	padding: 5px 10px 5px 10px;
	border-right: 1px solid #4d798d;
	font-size: 0.85em;
	font-weight:bold;
	color: #dad5c9;
}
/*
Class assigned to those Root-Level links that have associated Sub-Menus.
The top and bottom padding assigned this element must be the same as
that assigned to the p7menubar a element. The right padding is increased
to accomodate the display of background image depicting a downward
pointing arrow.
*/
#p7menubar a.trigger {
	padding: 5px 16px 5px 10px;
	background-image: url(images/p7PM_dark_south.gif);
	background-image:url(../images/p7PM_dark_south.gif);
	background-repeat: no-repeat;
	background-position: right center;
}
/*
The Root-Level list items. Floating left allows
them to appear horizontally. Width is for IE5 Mac. The last rule in
this style sheet will set the width for this element to auto for all
other browsers - hiding it from IE5 Mac. The width is proportional.
As you add and edit root menu items, you will need to test this width
to ensure it is wide enough to accomodate all text.
*/
#p7menubar li {
	float: left;
	width: 9em;
}
/*
Sets width for Sub-Menu box and the List Items inside - in proportional em units. 
This allows the sub-menu width to expand if users resize the text in their browsers.
*/
#p7menubar li ul, #p7menubar ul li  {
	width: 15em;
}
/*
The sub-menu links. We set color and turn off the right border, which
would otherwise be inherited from the root link rule. We set top and 
bottom padding less than the root items and increase the left padding
to indent the sub-menu links a small amount in from the root links.
*/
#p7menubar ul li a  {
	color: #565656;
	border-right: 0;
	line-height:13px;
	padding: 4px 10px 4px 14px;
}
/*
Sub-Menu Unordered Lists describes each dropdown sub-menu grouping. 
Positioned Absolutely to allow them to appear below their root trigger.
Set to display none to hide them until trigger is moused over.
Background Color must be set or problems will be encountered in MSIE.
Right and bottom borders are set to simulate a raised look.
*/
#p7menubar li ul {
	position: absolute;
	display: none;
	background-color: #3b6e8e;
	border-right: 1px solid #333333;
	border-bottom: 1px solid #333333;
}
/*
Changes the Text color and background color when the Root-Level
menu items are moused over. The second selector sets color and background
when Root-Level items are accessed with the keyboard tab key. The third
selector sets an active state to support keyboard access in MSIE. The fourth 
selector is assigned to IE5 and IE6 Windows via the P7_ExpMenu script.
Note that IE7 supports hover on elements other than links and so behaves
like Firefox, Opera, and Safari - making the menu operable even if JavaScript
is not enabled.
*/
#p7menubar li:hover a, #p7menubar a:focus, #p7menubar a:active, #p7menubar li.p7hvr a {
	color: #3b6e8e;
	background-color: #bfbdaa;
}
/*
Set the Sub-Menu UL to be visible when its associated
Root-Level link is moused over. The second selector is 
assigned to IE5 and IE6 via the P7_ExpMenu script.
*/
#p7menubar li:hover ul, #p7menubar li.p7hvr ul {
	display: block;
}
/*
Sets the Text color of the Sub-Level links when the Root-Level
menu items are moused over. The second selector is 
assigned to IE5 and IE6 via the P7_ExpMenu script.
The color set should march the normal Sub-Level link color
in the rule: #p7menubar ul li a. The background color must be
transparent to allow the underlying gradient background on the UL
to show through.
*/
#p7menubar li:hover ul a, #p7menubar li.p7hvr ul a {
	color: #dad5c9;
	background-color: transparent;
}
/*
The normal hover class for Sub-Level links. The Important directive
is required for older browsers. We set a background color, which shows
over the gradient background. We set text color to white.
*/
#p7menubar ul a:hover {
	background-color: #9a6b3c!important;
	color: #FFFFFF!important;
}
/* The single backslash \ character inside this comment
causes IE5 Mac to ignore the following rule, which allows other
browsers to render top-level menu items to their natural width.
Do not edit this rule in any way. */
#p7menubar li {
	width: auto;
}

/*----/HEADER PANEL----*/

/*----BODY PANEL----*/
#bodyPan{
	width:752px;
	background-color:#FFFFFF; 
	margin:0 auto 0 auto; 
	padding:0;
}
/*----Body Left Panel----*/
#leftPan{
	width:165px;
	float:left;
	padding:15px 15px 20px 0;
	background-color:#FFFFFF;
}
#leftPan p{
	padding:0;
	color:#666666;
	font-weight:bold;
	line-height: normal;
	font-size: 12px;
	font-family:Arial, Helvetica, sans-serif;
}
#leftPan h2{
	width:165px; 
	color:#9a6b3c; 
	font-size:14px; 
	font-weight:bold;
	line-height:18px;
	text-transform:uppercase;
}
#leftPan h3{
	padding:20px 0 5px 0;
	width:165px; 
	color:#9a6b3c; 
	font-size:14px; 
	font-weight:bold;
	line-height: normal;
	text-transform:uppercase;
}
#leftPan ul{
	width:165px;
}
#leftPan ul li{
	width:165px; 
}
#leftPan ul li a{
	width:165px; 
	display:block; 
	background: #fff url(../images/bullet2-normal.gif) no-repeat 0 9px; 
	font-size:12px;
	color:#666666; 
	text-decoration:underline; 
	line-height: normal; 
	padding:5px 0 5px 12px;
}
#leftPan ul li a:hover{
	background: #fff url(../images/bullet2-hover.gif) no-repeat 0 9px; 
	color:#5F7A77; 
	text-decoration:none;
}
#leftPan ul li a:visited{
	background: #fff url(../images/bullet2-hover.gif) no-repeat 0 9px; 
	color:#9a6b3c; 
	text-decoration:none;
}
#leftPan ul li span{
	text-decoration:underline;
}
#leftPan ul.secondary{
	width:150px;
	padding: 0 0 0 12px;
}
#leftPan ul.secondary li{
	width:150px;
	font-size:11px;
}
#leftPan ul.secondary li a{
	width:150px; 
	display:block; 
	background: #fff url(../images/bullet2-normal.gif) no-repeat 0 7px; 
	color:#666666; 
	text-decoration:underline; 
	padding:0 0 0 12px;
}
#leftPan ul.secondary li a:hover{
	background: #fff url(../images/bullet2-hover.gif) no-repeat 0 7px; 
	color:#5F7A77; 
	text-decoration:none;
}
#leftPan ul.secondary li a:visited{
	background: #fff url(../images/bullet2-hover.gif) no-repeat 0 7px; 
	color:#9a6b3c; 
	text-decoration:none;
}
#leftPan ul.secondary li span{
	text-decoration:underline;
}
#leftPan ul.third{
	width:125px;
	padding: 0 0 0 12px;
}
#leftPan ul.third li{
	width:125px;
	font-size:11px;
}
#leftPan ul.third li a{
	width:125px; 
	display:block; 
	background: #fff url(../images/bullet2-normal.gif) no-repeat 0 7px; 
	color:#666666; 
	text-decoration:underline; 
	padding:0 0 0 12px;
}
#leftPan ul.third li a:hover{
	background: #fff url(../images/bullet2-hover.gif) no-repeat 0 7px; 
	color:#5F7A77; 
	text-decoration:none;
}
#leftPan ul.third li a:visited{
	background: #fff url(../images/bullet2-hover.gif) no-repeat 0 7px; 
	color:#9a6b3c; 
	text-decoration:none;
}
#leftPan ul.third li span{
	text-decoration:underline;
}

/*----/Body Left Panel----*/

/*----Body Right Panel----*/
a:link {color:#666666; text-decoration: underline; }
a:active {color: #666666; text-decoration: underline; }
a:visited {color: #9a6b3c; text-decoration: underline; }
a:hover {color: #3b6e8e; text-decoration: underline; }

#rightPan{
	width:509px;
	float:left;
	border-left:1px solid #dad5c9;
	padding:15px 20px 20px 30px;
	background-color:#FFFFFF;
	margin:0;
}
	
#rightPan p{
	padding:5px 0 0 0;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	text-align:left;
	color:#666666;
	line-height:normal;
}
#rightPan .leftimage{
	float:left;
	margin: 7px 10px 5px 0;
	padding:0;
}
#rightPan .rightimage{
	float:right;
	margin: 5px 0 5px 10px;
	padding:0;
}
#rightPan .centerimage{
	margin: 5px 35px 5px 55px;
	padding:0;
}

#rightPan .animation{
	width:509px;
	height:225px;
	background-image:url(../images/SKYWAY.jpg);
	margin:0 0 15px 0;
	padding:0;
}
#rightPan ul.email{
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px;
	padding:0 0 10px 10px;
	text-align:justify;
}
#rightPan h1{
	color:#9a6b3c; 
	font-size:15px; 
	text-transform:uppercase;
	text-align:center;
	line-height:18px;
}
#rightPan h2{
	padding:5px 0 0 0;
	color:#9a6b3c; 
	font-size:13px; 
	text-transform:uppercase;
	text-align:left;
	line-height:18px;
}
#rightPan h3{
	color:#9a6b3c; 
	font-size:15px; 
	text-transform:uppercase;
	text-align:left;
	line-height:18px;
}
#rightPan h4{
	width:509px; 
	height:20px; 
	float:left; 
	display:block;
	background:#dad5c9; 
	color:#3b6e8e; 
	font-size:15px;
	font-weight:bold; 
	line-height:16px; 
	text-transform:uppercase; 
	padding:10px 0 5px 0;  
	margin:5px 0 5px 0;
	text-align:center;
}
#rightPan ul.news{
	width:470px; 
	height:114px; 
	float:left; 
	background:#fff; 
	color:#5F7A77; 
	padding:7px 0 0 10px;
}
#rightPan ul.news li{
	width:470px; 
	
}
#rightPan ul.news li a{
	width:470px; 
	display:block; 
	background:url(../images/bullet2-normal.gif) 0 7px no-repeat #fff; 
	color:#666666; 
	text-decoration:underline; 
	line-height:20px; 
	padding:0 0 0 10px;
}
#rightPan ul.news li a:hover{
	background:url(../images/bullet2-hover.gif) 0 7px no-repeat #fff; 
	color:#5F7A77; 
	text-decoration:underline;
}
#rightPan ul.news li a:visited{
	background:url(../images/bullet2-hover.gif) 0 7px no-repeat #fff; 
	color:#9a6b3c; 
	text-decoration:underline;
}
#rightPan ul.links{
	width:470px;
	float:left; 
	color:#666666; 
	padding:5px 0 5px 5px;
}
#rightPan ul.links li{
	width:470px;
}
#rightPan ul.links li a{
	width:470px;
	display:list-item;
	background:url(../images/bullet2-normal.gif) 0 7px no-repeat #fff; 
	color:#666666; 
	line-height:20px;
	text-decoration:underline; 
	padding:0 0 0 15px;
}
#rightPan ul.links li a:hover{
	background:url(../images/bullet2-hover.gif) 0 7px no-repeat #fff; 
	color:#5F7A77; 
	text-decoration:underline;
}
#rightPan ul.links li a:visited{
	background:url(../images/bullet2-hover.gif) 0 7px no-repeat #fff; 
	color:#9a6b3c; 
	text-decoration:underline;
}
#rightPan ul.indent_links{
	width:400px;
	float:left; 
	color:#666666; 
	padding:0 0 0 25px;
}
#rightPan ul.indent_links li{
	width:400px;
}
#rightPan ul.indent_links li a{
	width:400px;
	display:block;
	background:url(../images/bullet2-normal.gif) 0 7px no-repeat #fff; 
	color:#666666; 
	line-height:20px;
	text-decoration:underline; 
	padding:0 0 0 15px;
}
#rightPan ul.indent_links li a:hover{
	background:url(../images/bullet2-hover.gif) 0 7px no-repeat #fff; 
	color:#5F7A77; 
	text-decoration:underline;
}
#rightPan ul.indent_links li a:visited{
	background:url(../images/bullet2-hover.gif) 0 7px no-repeat #fff; 
	color:#9a6b3c; 
	text-decoration:underline;
}
#rightPan ul.servicestwo{
	width:137px; 
	height:114px; 
	float:left; 
	border-bottom:1px solid #B1DED5; 
	border-top:1px solid #B1DED5;  
	border-right:1px solid #B1DED5;
	background:#fff; 
	color:#5F7A77; 
	padding:5px 0 10px 0;
}
#rightPan ul.servicestwo li{
	width:137px; 
	height:20px;
}
#rightPan ul.servicestwo li a{
	width:125px; 
	height:20px; 
	display:block; 
	background:url(../images/bullet2-normal.gif) 0 7px no-repeat #fff; 
	color:#5F7A77; 
	text-decoration:none; 
	line-height:20px; 
	padding:0 0 0 12px;
}
#rightPan ul.servicestwo li a:hover{
	background:url(../images/bullet2-hover.gif) 0 7px no-repeat #fff; 
	color:#5F7A77; 
	text-decoration:none;
}
#rightPan ul.servicestwo li a:visited{
	background:url(../images/bullet2-hover.gif) 0 7px no-repeat #fff; 
	color:#9a6b3c; 
	text-decoration:none;
}
#rightPan ul.bullet{
	list-style:url(../images/bullet2-hover.gif);
	list-style-position:outside;
	padding:5px 0 0 30px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px;
	text-align:left;
	color:#666666;
	line-height:normal;
}
#rightPan ul.indentbullet{
	list-style:url(../images/bullet2-normal.gif);
	list-style-position:outside;
	padding:5px 45px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px;
	text-align:left;
	color:#666666;
	line-height:normal;
}
ol{
	list-style-position:outside;
	padding:5px 0 0 30px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px;
	text-align:left;
	color:#666666;
	line-height:20px;
}
#rightPan table {
	margin: 5px 0px 0px 5px;
	border-collapse:collapse;
	border:solid 1px #DFDFDF;
	}
#rightPan th strong {
	color: #fff;
}
#rightPan th {
	background: #3b6e8e;
	height: 30px;
	padding-left: 5px;
	padding-right: 5px;
	color: #FFF;
	text-align: left;
	text-transform:capitalize;
	font-size:12px;
	border-left: 1px solid #E8E8E8;
	border-bottom: solid 2px #fff;
}
#rightPan tr {
	height: 20px;
}
#rightPan td {
	font-size:12px;
	color:#666666;
	line-height:normal;
	text-align:left;
	padding: 5px;
	border-left: 1px solid #E8E8E8;
	border-bottom: 1px solid #DFDFDF;
}
#rightPan td.first,th.first {
	border-left: 0px;
	}
#rightPan tr.row-a {
	background: #FFFFFF;
	
}
#rightPan tr.row-b {
	background: #dad5c9;
}

blockquote {
	padding: 10px;  
    background: #dad5c9;
	font: bold 12px 'Trebuchet MS', Tahoma, Sans-serif;
	font-style:italic;
	color: #9a6b3c;
}
/*----/Body Right Panel----*/
/*----/BODY PANEL----*/
/*----/MAIN PANEL----*/

/*----FOOTER PANEL----*/
#footermainPan{
	width:778px;
	background:#3b6e8e; 
	color:#2F5958; 
	margin:0; 
	clear:both; 
	padding:5px 0;
}
#footermainPan p{
	font-size: 9px;
	font-family: Arial, Helvetica, sans-serif;
	text-align:justify;
	color: #fff;
	line-height: 12px;
	padding:2px 25px;
}
#footermainPan ul{
	width:273px; 
	position:relative; 
	margin:0 0 0 500px;
}
#footermainPan li{
	float:left; 
}
#footermainPan ul li a{
	padding:0 0 0 5px; 
	color:#dad5c9; 
	background:none; 
	text-decoration:none; 
	font-size:12px;
}
#footermainPan ul li a:hover{
	text-decoration:underline;
}
/*----/FOOTER PANEL----*/
