@charset "utf-8";
/* CSS Document */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}body{line-height:1}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}:focus{outline:0}ins{text-decoration:none}del{text-decoration:line-through}table{border-collapse:collapse;border-spacing:0}
html { font-size: 62.5%; font-family: Verdana, Helvetica, Arial, "Trebuchet MS", Tahoma, sans-serif; }
strong, th, thead td, h1, h2, h3, h4, h5, h6 { font-weight: bold; }
cite, em, dfn { font-style: italic; }
code, kbd, samp, pre, tt, var, input[type='text'], input[type='password'], textarea { font-size: 92%; font-family: monaco, "Lucida Console", courier, monospace; }
small, sup, sub { font-size: 85%; }
sup { vertical-align: super; }
sub { vertical-align: sub; }
body  {
	background: #58595B;
	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: #000000;
}

#container {
	font-size: 1.2em;
	line-height: 1.6em;
	color: #666666;
}
#container h1 {
	font-size: 1.6em;
	margin: 0 0 15px 0;
	padding-top:20px;
}
#container h2 {
	font-size: 1.4em;
	margin: 20px 0 15px 0;
}
#container h3 { font-size: 1.2em; 	margin: 40px 0 15px 0; }
#container h4 { font-size: 1.1em; }
#container h5 { font-size: 1em; }
#container h6 { font-size: 0.8em; }
#mainContent p, #mainContent ul, #mainContent ol {
    margin:15px 0;
}
#mainContent ul, #mainContent ol {
    margin-left:40px;
}
#mainContent li {
    margin:10px 0;
}
#mainContent a, #mainContent a:link, #mainContent a:visited, #mainContent a:active, #sidebar2 a, #sidebar2 a:link, #sidebar2 a:visited, #sidebar2 a:active {
    color: #006482;
	text-decoration:none;
	border-bottom:dotted #006482 1px;
	font-weight:bold;
}
#mainContent a:hover, #sidebar2 a:hover {
    color: #700F10;
	text-decoration:none;
	border-bottom:solid #700F10 1px;
}
#container {
	width: 950px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left;
	background-color: #FFFFFF;
	background-image: url(../images/Callahan_Sidebar_Left1.jpg);
	background-repeat: repeat-y;
} 
#header  {
	padding: 30px 0 0 40px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-image: url(../images/Callahan_Header1.jpg);
	background-repeat: no-repeat;
	height: 207px;
} 
#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 190px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 30px 40px 15px 40px;
}
#navbar {
	width: 100%;
	color: #0F243E;
	margin: 0 0 30px 0;
}
#contact {
	width: 100%;
	padding: 0;
	border-top: dotted #FFFFFF 2px;
	color: #0F243E;
}

#mainContent  {	
	padding: 20px 0 25px 0;
}
div.column3 {
    margin: 0 270px 0 310px; /* the left margin on this div element creates the column down the left 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. */
} 
div.column2 {
    margin: 0 40px 0 310px;
}
#quotebox {
	margin: 0 40px 0 310px;
	border-top: dotted #CCCCCC 2px;
	padding: 40px 0 25px 0;
	clear:right;
}
.quote {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1.6em;
	font-style: italic;
	line-height: 1.4em;
	font-weight: bold;
	color: #999999;
}
.quote:before { content: "\201C"; }
.quote:after { content: "\201D"; }
 /*.quote-info:before { content: "\2014"; }*/
#footer  {
	padding: 35px 40px 0 310px;
	background-image: url(../images/Callahan_Footer1.jpg);
	background-repeat: no-repeat;
	height: 37px;
	clear: both;
	font-size:10px;
	color:#CCCCCC;
} 
.quote-author {
	font-size: 1.2em;
	font-weight: bold;
}
.quote-title {
	font-size: .9em;

}
.quote-info {
	margin: 0 0 0 auto;
	color: #999999;
	float: right;
	text-align:right;
}
.quote-cu {
	font-size: .9em;

}
#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: 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;
}
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
 
.clearfix {
	display: inline-block;
}
#sidebar2 {
	float: right;
	width: 150px;
	background: #E2EAF4;
	margin: 40px;
	color: #0F243E;
	padding: 0 20px 10px 20px;
	font-size: 0.9em;
}
#container #sidebar2 p, #container #sidebar2 h3 {
	margin:10px 0;
	line-height: 1.6em;
} 
#container #sidebar2 ul.nobullet, #container #sidebar2 ol.nobullet {
    list-style:none;
	margin:0;
	padding:0;
}
#container #sidebar2 .nobullet li {
    margin:20px 0;
    padding:0;
}
#container #sidebar2 ul.sidelist, #container #sidebar2 ol.sidelist {
	margin:0 0 20px 20px;
	padding:0;
}
#container #sidebar2 .sidelist li {
    margin:10px 0;
    padding:0;
}
#container #sidebar2 h3 {
    margin-top:20px;
}
.tablegrid {
	width:100%;
}
.tablegrid td {
	border: solid 1px #CCCCCC;
	padding: 10px;
}
.tablegrid th {
	border: solid 1px #CCCCCC;
	padding: 10px;
	background-color:#0F243E;
	color:#FFFFFF;
}
.tablegrid td.tablefill {
	background-color:#FFEBBD;
}
html[xmlns] .clearfix {
	display: block;
}
 
* html .clearfix {
	height: 1%;
}

/* Nice Menus
*/

/******************************
 Global CSS for ALL menu types
******************************/

ul.nice-menu,
ul.nice-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight:bold;
  text-transform:uppercase;
  font-size:14px;
  font-family: "Trebuchet MS", Arial, Verdana, sans-serif;
}

ul.nice-menu li, ul.nice-menu li.menuparent {
  float: left;
  /* Additional overrides to deal with Garland theme. */
  margin: 0;
  padding-left: 0;
  background-image: url(../images/Navbar-Square.jpg) ;
  background-repeat:no-repeat;
  background-position:center left;
}

ul.nice-menu a {
  padding: 0.3em 5px 0.3em 20px;

}

ul.nice-menu ul {
  top: 1.8em;
  left: -1px;
  border: 0;
  margin-right: 0;
}


ul.nice-menu ul li {
  width: 190px;
}

/******************************
 VERTICAL (left/right) menus
******************************/

/* This is the default width of all vertical menus. */
ul.nice-menu-right, ul.nice-menu-left,
ul.nice-menu-right li, ul.nice-menu-left li {
  width: 190px;
}

/* VERTICAL menus where submenus pop RIGHT (default). */
ul.nice-menu-right ul {
  width: 190px;
  left: 190px;
  top: 0px;
}

ul.nice-menu-right ul ul {
  width: 190px;
  left: 190px;
  top: 0px;
}

ul.nice-menu-right li.menuparent,
ul.nice-menu-right li li.menuparent {

}

ul.nice-menu-right li:hover,
ul.nice-menu-right li.menuparent:hover,
ul.nice-menu-right li li.menuparent:hover,
ul.nice-menu-right li.menuparent:hover ul {
  background: #0F243E;
}
ul.nice-menu-right li a, ul.nice-menu-right li a:link, ul.nice-menu-right li a:visited, ul.nice-menu-right li a:hover, ul.nice-menu-right li a:active {  
  color:#0F243E;
  text-decoration:none;
}
ul.nice-menu-right li:hover a, ul.nice-menu-right li:hover a:link, ul.nice-menu-right li:hover a:visited, ul.nice-menu-right li:hover a:hover, ul.nice-menu-right li:hover a:active {  
  color:#FFF;
  text-decoration:none;
}
ul.nice-menu-right li a {
  border-top:solid #FFBD18 3px;
  border-right:solid #FFBD18 3px;
  border-bottom:solid #FFBD18 3px;
  margin-left: 3px;
}
ul.nice-menu-right li:hover a, ul.nice-menu-right ul li a {
  border:solid #0F243E 3px;
  margin-left: 0;
}
ul.nice-menu-right ul li:hover a, ul.nice-menu-right ul li:hover a:link, ul.nice-menu-right ul li:hover a:visited, ul.nice-menu-right ul li:hover a:hover, ul.nice-menu-right ul li:hover a:active {  
  margin-left: 0;
  color:#0F243E;
  text-decoration:none;
  background-color:#FFF;
  border:solid #0F243E 3px;
}
/* Below should fix menu being a few pixels away in some themes, and menus disappearing behind other stuff. */
.block-nice_menus {
	line-height: 1.6em;
	z-index: 10;
}

ul.nice-menu,
ul.nice-menu ul {
  z-index: 5;
  position: relative;
}

ul.nice-menu li {
  position: relative;
}

ul.nice-menu a {
  display: block;
}

ul.nice-menu ul {
  position: absolute;
  visibility: hidden;
}

ul.nice-menu li.over ul, ul.nice-menu li:hover ul {
  visibility: visible;
}

ul.nice-menu ul li {
  display: block;
}

ul.nice-menu:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* Show submenus when over their parents. */
ul.nice-menu li:hover ul,
ul.nice-menu li.menuparent li:hover ul,
ul.nice-menu li.menuparent li.menuparent li:hover ul,
ul.nice-menu li.menuparent li.menuparent li.menuparent li:hover ul,
ul.nice-menu li.over ul,
ul.nice-menu li.menuparent li.over ul,
ul.nice-menu li.menuparent li.menuparent li.over ul,
ul.nice-menu li.menuparent li.menuparent li.menuparent li.over ul {
  visibility: visible;
}

/* Hide sub-menus initially. */
ul.nice-menu li:hover ul ul,
ul.nice-menu li:hover ul ul ul,
ul.nice-menu li:hover li:hover ul ul,
ul.nice-menu li:hover li:hover ul ul ul,
ul.nice-menu li:hover li:hover li:hover ul ul,
ul.nice-menu li:hover li:hover li:hover ul ul ul,
ul.nice-menu li.over ul ul,
ul.nice-menu li.over ul ul ul,
ul.nice-menu li.over li.over ul ul,
ul.nice-menu li.over li.over ul ul ul,
ul.nice-menu li.over li.over li.over ul ul,
ul.nice-menu li.over li.over li.over ul ul ul {
  visibility: hidden;
}


/***************
 IE 6 Fixes
***************/

/* Iframe to fix z-index bug when menu hovers over <select> fields. */
ul.nice-menu li.menuparent ul {
	overflow: visible !important;
	/* overflow: hidden; */
}

ul.nice-menu li.menuparent ul iframe {
	display: none;
	display/**/: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	filter: mask();
	width: 20px;
	height: 20px;
}
/* FORMS */

form ul {
   margin:.5em 0 0 0;
    list-style:none;
}
form input.right {
    float:right;
}
form li {
   line-height: 1.5;
    margin-bottom: .5em;
 /*    position: relative;  */
}
 
form label.overlayed {
/*   position: absolute;
   top: .15em;
   left: .5em;
    white-space: nowrap;
    color: #999;    */
}
.style1 {color: #FFFFFF;
	font-size: 8pt;
	padding: 0px;
	margin-top: 6px;
	margin-right: 0px;
	margin-bottom: 6px;
	margin-left: 0px;
}
a img, a:link img, a:visited img, a:hover img, a:active img{
	border:0;
	border-bottom-width:0;
	border-bottom:none;
	border-bottom-style:none;
}

.fullwidth {
	width: 600px;
}
.fullwidth td {
	width:280px;
	padding:0 20px;
	border-bottom:dotted 1px #0F243E;
	text-align: left;
}
.fullwidth td.rightborder {
	border-right:dotted 1px #0F243E;
}
.fullwidth td.nobottomborder {
	border-bottom:none;
}
.fullwidth td.tablehead {

}
.fullwidth h1, .fullwidth h2, .fullwidth h3, .fullwidth h1, .fullwidth h2, .fullwidth h3 {
    margin: 0 0 20px 0;
	padding:0;
}



[if IE 5]>
/* place css box model fixes for IE 5* in this conditional comment */
#sidebar1 { width: 270px; }
<![endif][if IE]>
/* place css fixes for all versions of IE in this conditional comment */
#sidebar1 { padding-top: 30px; }
#mainContent { zoom: 1; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
<![endif]

