/********************************/
/*MEASUREMENT UNITS*/
/********************************/
/*All HTML layout components (DIV and TABLE tags) are sized using CSS styles. Two measurement units are used:
1) Relative units
  "em" units are used when the layout or type can be re-sized by the user.
  . One em is equal to the font size of the current element.
  . Our em-based unit is 10px as defined by the font-size property in the Body style. (77.8em is the equivalent of 778px.)
2) Absolute units
  "px" (pixels) are for elements that require a fixed size.*/

/********************************/
/*DEFAULT COLORS*/
/********************************/
/* #004F38 -- Dark green (hypertext, bgd of selected side-menu, H1)*/
/* #91B3A9 -- Light green (borders)*/
/* #F2F6F5 -- Very ligth green (side-menu bgd) */
/* #CC0033 -- Dark red (top-menu bgd) */
/* #DDCC99 -- Light brown (borders) */



body {
	font-family: "Times New Roman", Times, serif;
	font-size: 10px;
	line-height: 1.2em;
	color: #000000;
	background-image: url(images/bg_page.jpg);
	margin: 1em 0 1em 0;
	padding:0;
}

/********************************/
/*DEFAULT LINK*/
/********************************/
a, a:active, a:link, a:visited { 
	color: #004F38;
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}

/********************************/
/*DEFAULT TAGS*/
/********************************/
p, li {
	font-size: 1.4em;
	line-height: 1.4em;
	top: 5px;
}
p {
	margin: 0 0 .8em 0;
}
ul, ol, blockquote  {
margin:0; /*To set a similar default margin value for Mozilla and Explorer browsers.*/
}
ul, ol {
	margin-bottom:.5em;
}
ul ul, ol ol {
 margin-top: .3em;
 margin-bottom: .0em;
}
li {
	margin-bottom:.2em;
	list-style-type:	disc;
}
ul, ol, blockquote  {
 padding-left: 3.5em;
}
UL LI	{	
	list-style-type:	disc;
}	
UL UL LI	{	
	list-style-type:	disc;
	font-size: 1em;
}	
UL UL UL LI	{	
	list-style-type:	disc;
}	
OL LI	{	
	list-style-type:	decimal;
	}	
OL OL LI	{	
	list-style-type:	lower-alpha;
	font-size: 1em;
	}	
OL OL OL LI	{	
	list-style-type:	lower-roman;
	}	

h1 {
font-variant:small-caps;
}
h1,h2,h3, .darkGreen {
	color: #004F38;
}
h1 {
	font-variant:small-caps;
	font-size:2.4em;
	font-weight:normal;
	line-height:1.1em;
	margin: .5em 0 .5em 0;
}
h2 {
	font-size:2.4em;
	font-weight:normal;
	font-style:italic;
	line-height:1.1em;
	margin: .5em 0 .5em 0;
}
h3 {
	font-size:1.7em;
	line-height:1.1em;
	margin: 1em 0 .5em 0;
	font-style:italic;
	font-weight:bold;
	color: #004F38;
}
h4 {
	font-size:1.5em;
	line-height:1.1em;
	margin: 1em 0 .5em 0;
	font-weight:bold;
}
h5 {
	font-size:1.4em;
	line-height:1.1em;
	margin: 1em 0 0 0;
	font-weight:bold;
}

hr {
	border:0; /*For no shade*/
	color:#91B3A9; /*To set color in IE*/
	background-color:#91B3A9; /*To set color in Mozila*/
	height: 1px;
	/*A margin rule could be added but will have a different result accross browsers.*/
}
form {  /*To set a similar default margin/padding values for Mozilla and Explorer browsers.*/
padding:0;
margin:0;
}

/********************************/
/*LAYOUT GRID*/
/********************************/

/*To set left shadow*/
#pageContainerLeft {
	background-image: url(images/bg_edgeRight.jpg);
	background-repeat: repeat-y;
	background-position: right;
	background-color:#FFFFFF;
	min-width:788px;
	width:78.8em;
	margin: 0 auto;
	padding-right: 8px;
}

/*To set right shadow*/
/*This rule sets the content's full width*/
#pageContainerRight {
	background-image: url(images/bg_edgeLeft.jpg);
	background-repeat: repeat-y;
	background-position: left;
	min-width:780px;
	width:78em;
	padding-left: 8px;
}

/*To set bottom shadow*/
#pageShadowBottom {
	background-image: url(images/bg_edgeBottom.jpg);
	background-repeat: repeat-x;
	background-position: top;
	margin: 0 auto;
	height: 8px;
	min-width:796px;
	width:79.6em;
}
#cornerLeft {
	background-image: url(images/bg_edgeBottomLeft.jpg);
	background-repeat:no-repeat;
	background-position: top right;
	height:8px;
	width:8px;
	float:left;
}
#cornerRight {
	background-image: url(images/bg_edgeBottomRight.jpg);
	background-repeat:no-repeat;
	background-position: top left;
	height:8px;
	width:8px;
	float:right;
}
#rightColumn {
float:right;
margin-top:.5em;
}	

/*Banner area*/
#banner, .bannerLogo, .bannerType {
	min-height:96px;
	height:9.6em;
}
#banner {
	border-top:1px solid #91B3A9;
}
.bannerLogo {
	min-width:130px;
	width:13em;
	float:left;
}
.bannerType {
	min-width:650px;
	width:65em;
	float:left;
}

/*Left bar*/
#leftMenuBar {
	clear:left;
	float:left;
	min-width:120px;
	width:12em;
	padding-left:1em;
}


/*Container for top navigation, body and sidebar*/
#contentContainer {
	float:left;
	padding: 0 1em 1em 1.2em;
	min-width:628px;
	width:62.8em;
}

/*Top navigation bar*/
#topMenuBar {
	border-bottom:1px solid #DDCC99;
	height:2.5em;
	margin: 0 0 -1px 0; /*Negative margin is to allow overlap with border of testimonial box below*/
}

/*Body area column*/
/*Width values are needed for compatibility accross browsers*/
#body {
	float:left;
	min-width:417px;
	width:41.7em;
	margin-right:1em;
	max-width: 55em;
}

.board {
	float:left;
	width:230px;
	margin-right:20px;
}
.board h3 {
border-top:1px solid #91B3A9;
	padding-top:.5em;
}

/*Right sidebar column*/
#sidebar {
	float:right;
	min-width:199px;
	width:19.8em;
}
#sidebar ul,#sidebar ol {
	margin-bottom:.2em;
}
#sidebar li {
	margin-bottom:.2em;
}
#sidebar ul, #sidebar ol, #sidebar blockquote  {
 padding-left: 1.5em;
}


/*Sidebar: default and sidebar elements: shared styles*/
.sidebarDefault, .testimonial {
	padding: 1em 1.2em 1em 1.2em;
	background-image:url(images/bg_testimonial.jpg);
	border:1px solid #DDCC99;
}
.sidebarDefault p, .sidebarDefault li, .testimonial p {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:1em;
	line-height:1.5em;
	color:#333333;
	margin-bottom: 1em;
}
.sidebarDefault h4, .testimonial h4 {
	font-size:1.4em;
	line-height:1.1em;
	color:#333333;
	margin-top:.5em;
}


/*Sidebar: default element*/
.sidebarDefault h3 {
	font-size:1.8em;
	font-style:italic;
	font-weight:normal;
	line-height:1.1em;
	color:#004F38;
	margin-top: 0;
	margin-bottom: 0.5em;
}

/*Sidebar: testimonial element*/
.testimonial h3 {
	font-size:1.25em;
	line-height:1.1em;
	color:#333333;
	margin-top: 0;
	margin-bottom: 0.5em;
	letter-spacing: 0.2em;
	text-align:center;
	text-transform: uppercase;
}

/*Sidebar: picture element*/
.sidebarPicture {
	padding-top: 1em;
	text-align:center;
}
.sidebarPicture p {
	font-style:italic;
	font-size:1.2em;
	line-height:1.2em;
	color:#333333;
	margin: .5em 1.2em 1em 1.2em;
	letter-spacing: .05em;
}


/*Footer*/
#footer {
	clear:left;
	border-top:1px solid #91B3A9;
}
#footer .copyright {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:1em;
	line-height:1em;
	margin-top:.5em;
	float:left;
	padding:1em;
}
#footer .icons {
	float:right;
	padding:1em;
}

/********************************/
/*LAYOUT GRID: HOME PAGE*/
/********************************/


/*Body area column*/
/*Width values are needed for compatibility accross browsers*/
#bodyHome {
	float:left;
	min-width:302px;
	width:30.2em;
	margin-right:2.4em;
}
/*Right sidebar column*/
#sidebarHome {
	float:left;
	min-width:288px;
	width:28.8em;
	padding-right:1em;
}
#sidebarHome ul, #sidebarHome p, #sidebarHome h3 {
	padding:0;
	margin-bottom:.3em;
}
#sidebarHome h3 {
	clear:right; /*To cancel right float of thumbnail picture above this head*/
	margin-top:.7em;
	padding-top:.4em;
	border-top:1px solid #91B3A9;
}
#sidebarHome li {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:1em;
	line-height:1.1em;
	margin-bottom:.5em;
}




/********************************/
/*NAVIGATION: LEFT BAR*/
/********************************/

.navLeft {
	margin: 0;
	padding:0;
	border-bottom:1px solid #91B3A9;
}
.navLeft li {
	list-style-type: none;
	margin: 0;
	padding: 0;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-weight:bold;
	line-height:1.2em;
	text-align:center;
	image-align:center;
}
.navLeft a, .navLeft a:link, .navLeft a:visited{
	display: block;
	background-color:#F2F6F5;
	text-decoration: none;
	padding: 5px;
	border-top:1px solid #91B3A9;
	border-right:1px solid #91B3A9;
	border-left:1px solid #91B3A9;
	color: #004F38;
}
.navLeft a:hover {
	color: #CC0033;
}

/*Current marker*/
.navLeft a.currentMarker, .navLeft a:link.currentMarker, .navLeft a:visited.currentMarker {
	background-color:#004F38;
	color: #FFFFFF;
}
.navLeft a:hover.currentMarker {
	background-color:#CC0033;
	color: #FFFFFF;
}


/********************************/
/*NAVIGATION: TOP BAR*/
/********************************/

.navTop {
	margin: 0;
	padding: 0;
}
.navTop li {
	float: left;
	list-style-type: none;
	margin: .5em .5em 0 0;
	padding: 0 .5em 0 0;
	width: auto;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-weight:bold;
	line-height: 1.2em;
	border-right:1px solid #91B3A9;
}
.navTop a, .navTop a:link, .navTop a:visited {
	color: #004F38;
	text-decoration: none;
}
.navTop a:hover {
	color: #CC0033;
	text-decoration: none;
}

/*Current marker*/
.navTop a.currentMarker, .navTop a:link.currentMarker, .navTop a:visited.currentMarker {
	color: #CC0033 !important; /*to force MSIE to use this rule*/
}
.navTop a:hover.currentMarker {
	color: #004F38 !important; /*to force MSIE to use this rule*/
	text-decoration: none;
}


/********************************/
/*CONTENT*/
/********************************/

.blogIcon {
text-align:center;
margin-top:1.5em;
}

.pictThumbRight {
float:right;
margin-left:.3em;
margin-bottom:.2em;
}


/*Data-table*/
.tableContent {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 1.1em;
	text-align:left;
	margin-top:.5em;
}
.tableContent p, .tableContent li {
	font-size: 1em;
	line-height: 1.1em;
}
.tableContent ul, .tableContent ol {
	margin-bottom:.2em;
}
.tableContent li {
	margin-bottom:.2em;
}
.tableContent ul, .tableContent ol, .tableContent blockquote  {
 padding-left: 1.5em;
}
.tableContent td, .tableContent th {
	vertical-align:top;
 border:1px solid #91B3A9;
}

.smallerFont {
font-size:0.9em;
}
.largerFont {
	font-size:1.2em;
}
.quote {
	font-size: 2em;
	line-height: 1.2em;
	text-align:center;
	font-style:italic;
	color: #004F38;
	margin-bottom:.5em;
	margin-top:1em;
}
.topBorder{
 border-top:1px solid #91B3A9;
	padding-top:.6em;
	margin-top:1.5em;
}
.topBorder2 {
 border-top:1px solid #91B3A9;
	padding-top:.3em;
	margin-top:.8em;
}
.topAndBottomBorders{
 border-top:1px solid #91B3A9;
 border-bottom:1px solid #91B3A9;
	padding-top:.5em;
	padding-bottom:.3em;
	margin-top:1.2em;
	margin-bottom:.4em;
}
.contact td {
	padding: .2em;
	font-size:1.1em;
	text-transform: uppercase;
}
.contact input, .contact textarea {
	background-color:#F2F6F5;
	width:20em;
 border:1px solid #91B3A9;
}



/********************************/
/*DEBUGGING*/
/********************************/
.columnClear { 
/*To cancel float attributes after an area using two columns.
Also fixes a background bug in Firefox when two floating elements are used side
by side withing a DIV elements with background color. */
clear:both;
}

