/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
.docQuote {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: italic;
	text-align: justify;
	margin: 15px 50px;
}


img {
	border: 0;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background-color: #ECEEF2;
  color: #333333;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 14px;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}

/* Set Heading Style font */ 
h1, h2, h3 {
	font-family: Arial, Helvetica, sans-serif;
}
/* Commonly used to style page titles. */
h1 {
  color: #333366;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
  margin: 10px 0;
}
/* Commonly used to style section titles. */
h2 {
  color: #333366;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
  margin: 10px 0;
}

h3 {
  color: #333366;
  font-size: 11px;
  font-weight: bold;
  line-height: 14px;
  margin: 10px 0;
}

.toph1 {
	margin-top: 0; 
}

/* Sets the style for unvisited links. */
a,  a:link {
  color: #FFF;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #FFF;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #CECFE4;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #FFF;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #FFF;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 955px;
  background: #FFFFFF url(../images/layout/left-col-bkgrnd.jpg) left top repeat-y;
}
#outerWrapper #header {
  background-color: #FFFFFF;
}

#outerWrapper #topNavWrapper {
background:url(../images/layout/topNav.jpg) center left no-repeat;
height: 31px;
clear: both;
}

#outerWrapper #topNavWrapper #topNav {
  margin: 0 0 0 195px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 10px 0 0 0; 
  
}

#outerWrapper #topNavWrapper #topNav #topNavList {
	display: inline;
	margin: 0;
	padding: 0;
	list-style: none;
}

#contentWrapper {
	clear: both;
	background:#9B99CB url(../images/layout/bodyBackground.jpg) left top repeat-y;
}

#outerWrapper #contentWrapper #leftColumn1 {
  background-color: #FFFFFF;
  /* border-right: solid 1px #; Sets the right border properties for an element using shorthand notation */
  float: left;
  width: 195px;
}
#outerWrapper #contentWrapper #rightColumn1 {
  /*background-color: #eaeff5;*/
  border-left: solid 1px #8e9fd0; /* Sets the left border properties for an element using shorthand notation */
  float: right;
  width: 195px;
}

/* Contains the main page content for two column layout. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
  margin-bottom: 0;
  margin-left: 195px;
  margin-top: 0;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  background-color: #9B99CB;
}

/* Contains the main page content for 3 column layout. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content3Col {
  margin: 0 195px 0 195px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding-top: 5px;
}

#outerWrapper #contentWrapper #content3Col ul, #outerWrapper #contentWrapper #content3Col li{
	margin:0;
	padding: 0;
}

#outerWrapper #contentWrapper #content3Col #col-3-InnerContent {
	padding: 10px 10px 10px 10px;  /*Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#outerWrapper #contentWrapper #content3Col #col-3-InnerContent ul {
	list-style: none;
}


#outerWrapper #contentWrapper #content3Col #col-3-InnerContent ul li {
	padding: 4px 0 4px 10px;
	margin: 0;
	background: url(../images/layout/ul-bullet-blue.gif) left center no-repeat;
}

/* Style main content unordered lists */
#outerWrapper #contentWrapper #content ul {
	list-style: none;
}

#outerWrapper #contentWrapper #content ul li {
	padding: 4px 0 4px 10px;
	margin: 0;
	background: url(../images/layout/ul-bullet-blue.gif) left center no-repeat;
}

/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: both;
  display: block;
}
#outerWrapper #footer {
  background-color: #333366;
  color: #9999CC;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  font-size: 10px;
}

.plug {
	float: right;
}

#footerNav {
	padding-top: 2px;
}

#footer a,  #footer a:link {
  color: #9999CC;
  text-decoration: none;
}
/* Sets the style for visited links. */
#footer a:visited {
  color: #9999CC;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
#footer a:hover {
  color: #9999CC;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
#footer a:focus {
  color: #9999CC;
}
/* Sets the style for a link that is being activated/clicked. */
#footer a:active {
  color: #9999CC;
}

/* Styles for Home  Page
---------------------------------------------------------------*/
.promoBox {
	border: 1px solid #CECEE6;
	background: #FFFFFF url(../images/layout/promo_box_bckgrnd.jpg) bottom right repeat-x;
	padding: 0 5px 5px 5px;
	margin: 4px 0;
}

.promoBox h2 {
	font-size: 150%;
}

.promoBox p {
	font-size: 110%;
	color: #333366;
}

.flashBan {
	float: right;
}

#fagbiBanner {
	float: right;
	border: 0;
	padding: 0;
	margin: 0;
}

#flashxbanner {
	width: 760px;
	float: right;
	margin: 0;
	padding: 0;
}

#logo {
	float: left;
}
/* Styles for Listing Pages
---------------------------------------------------------------*/
/* The overall apge container */
#listingHolder {
	width: 650px;
	margin: 0 auto;
	clear: right;
}

.listing {
	margin: 20px 0px 10px;
	padding-right: 5px;
	padding-left: 5px;
}

.listing td {
vertical-align: top;
}

.listingImageHolder {
	width: 275px;
	float: left;
	margin: 0 20px 0 0;
	text-align: center;
}

.listingImageHolder img {
	border: 1px solid #49468B;
	}

.listingContent {
	margin: 0 0 0 300px;
}

.listingTitle {
	margin-top: 0;
	font-size: 14px;
}

.listingDesc {

}

.listingContactDetail {
	color: #FFF;
	font-weight: bold;
}

/* Events Styles
----------------------------*/

#eventsNav {
	width: 250px;
	float: right;
}

#eventsNav select{
	font-size: 10px;
} 


.eventList {
	width: 80%;
	margin: 5px auto;
	border-bottom: 1px solid #ccc;
	padding: 0 0 5px 0;
}

.eventList h2 {
margin-top: 5px;
	margin-bottom: 0;
}

.eventList p {
	margin-top: 5px;
	margin-bottom: 0;
}

/* Enhanced
----------------------------*/
#enhanced {
	margin: 0 auto;

}

#enhanced address {
	width: 295px;
	background:#FFFFFF;
	font-style: normal;
	float: right;
	padding: 5px 0 0 0;
	margin: 0 0 0 10px;
	}

#enhanced address p {
	margin: 10px;
	font-size: 120%;
	color: #333366;
	line-height: 16px;
}


#enhanced address a, #enhanced address a:link, #enhanced address a:visited {
	color: #000066;
}

#enhanced address img {margin-top: 10px;}

#usp {
	font-size: 110%;
	color: #FFF;
	margin-left: 50px;
}
#enhancedLogos {
	background: #FFF;
	width: 130px;
	float: right;
	text-align:center;
	padding: 10px;
	margin: 0 0 10px 10px;
	border: 1px solid #000033;
}
#enhancedThumbs {
	width: 80%;
	margin: 10px auto;
	background: #FFFFFF;
	border: 5px solid #FFF;
	text-align: center;
}

#enhancedThumbs img {
	margin: 5px;
	}

/* Misc Styles
----------------------------*/
.floatR {
	float: right;
}
