@charset "utf-8";
/* CSS Document */

body  {
	font: 100% Tahoma;
	background: #C8D0CB;
	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;
	line-height: 1.6;
}

h1 {
	font-family: Tahoma;
	font-size: 20px;
	color: #4C9F28;
	font-weight: 500;
}

a:link {
	color: #4C9F28;
	text-decoration: underline;
}
a:visited {
	color: #4C9F28;
	text-decoration: underline;
}
a:hover {
	color: #000000;
	text-decoration: underline;
}

#outercontainer { 
	width: 980px;  
	background: #FFFFFF;
	margin: 0 auto; 
	border: 1px solid #EBEBEB;
	text-align: left; 
	padding-bottom: 10px;
} 

#container { 
	width: 960px;  
	margin: 0 auto; 
}

#bodycontainer { 
	width: 919px;  
	margin-top: 0px;
	background-color: #F2F2F2;
	padding: 20px;
	border-left: 1px solid #EBEBEB;
	border-right: 1px solid #EBEBEB;
	border-bottom: 1px solid #EBEBEB;
}

#header {
	background-image: url(../images/bg-header.png);
	background-repeat: repeat-x; 
	padding: 20px 0 0 0;  /* 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. */
	height: 153px;
} 
.navigation {
	padding-left: 20px;
	padding-top: 103px;
	height: 44px;
	font-family: Tahoma;
	font-size: 13px;
	color: #FFFFFF;
	text-align: center;
	font-weight: bold;
}

.portfolio {
	width: 550px;
	height: 214px;
	background-image: url(../images/bg-port.jpg);
	background-repeat: no-repeat;
	margin-left: 20px;
	margin-bottom: 20px;
}
.portpic {
	margin: 20px;
	position: absolute;
	visibility: visible;
}
.portcontent {
	position: absolute;
	margin-left: 261px;
	margin-right: 10px;
	margin-top: 0px;
	width: 280px;
}
.porthead {
	font-family: Tahoma;
	font-size: 14px;
	font-weight: bold;
	padding-top: 15px;
}
.portlink {
	font-size: 13px;
	font-weight: bold;
}

.inputtext {
	font-size: 11px;
	width: 138px;
	height: 16px;
	padding: 3px;
	color: #666666;
	border: 1px solid #4C9F28;
	background-color: #F2F2F2;
}
.inputtexta {
	font-size: 11px;
	width: 145px;
	height: 22px;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-right: 3px;
	color: #666666;
	border: 1px solid #4C9F28;
	background-color: #F2F2F2;
}
.inputtextarea {
	font-family: Tahoma;
	font-size: 11px;
	width: 138px;
	height: 120px;
	padding: 3px;
	color: #666666;
	border: 1px solid #4C9F28;
	background-color: #F2F2F2;
}
.inputtextareaa {
	font-family: Tahoma;
	font-size: 11px;
	width: 280px;
	height: 120px;
	padding: 3px;
	color: #666666;
	border: 1px solid #4C9F28;
	background-color: #F2F2F2;
}
.inputbutton {
	border: 1px solid #333333;
	width: 145px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #4C9F28;
	font-size: 11px;
	height: 24px;
}
.contactpad {
	padding-left: 30px;
}
.contactpada {
	padding-left: 10px;
	height: 30px;
}

ul, li{border:0; margin:0; padding:0; list-style:none;}
ul{
height:29px;
padding-left:0px;
}
li{float:left; margin-right:2px;}

.tab a:link, .tab a:visited{
background:url(../images/tab-round.png) right 60px;
color:#FFFFFF;
display:block;
font-weight:bold;
font-family: Tahoma;
font-size: 13px;
height:30px;
line-height:30px;
text-decoration:none;
cursor: pointer;
margin-top: 10px;

}
.tab a span{
background:url(../images/tab-round.png) left 60px;
display:block;
height:30px;
margin-right:14px;
padding-left:14px;
cursor: pointer;
}
.tab a:hover{
background:url(../images/tab-round.png) right 30px;
display:block;
cursor: pointer;
}
.tab a:hover span{
background:url(../images/tab-round.png) left 30px;
display:block;
cursor: pointer;
}

/* -------------------------------- */
/* ACTIVE ELEMENTS */
.active a:link, .active a:visited, .active a:visited, .active a:hover{
background:url(../images/tab-round.png) right 0 no-repeat;
cursor: pointer;
}
.active a span, .active a:hover span{
background:url(../images/tab-round.png) left 0 no-repeat;
cursor: pointer;
}
 
.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 615px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
}
.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 615px; /* 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. */
	padding: 0 17px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 270px;
} 

.twoColFixLtHdr #footer { 
	background-image: url(../images/bg-footera.png);
	background-repeat: repeat-x;
	height: 20px;
	padding: 10px;
	font-size: 11px;
} 

.twoColFixLtHdr #footer1 { 
	background-image: url(../images/bg-footer.png);
	background-repeat: repeat-x;
	height: 110px;
} 

.twoColFixLtHdr #footer1a { 
	padding: 20px;
	position: absolute;
} 

.twoColFixLtHdr #footer1b { 
	margin-left: 360px;
	font-family: Tahoma;
	font-size: 11px;
	color: #626262;
	padding-top: 10px;
	padding-right: 10px;
	line-height: 1.6;
} 

.whitetext {
	color: #FFFFFF;
}

.foot1:link {
	color: #FFFFFF;
	text-decoration:none;
}
.foot1:visited {
	color: #FFFFFF;
	text-decoration:none;
}
.foot1:hover {
	color: #CCCCCC;
	text-decoration:underline;
}

.foot2:link {
	color: #626262;
	text-decoration:none;
}
.foot2:visited {
	color: #626262;
	text-decoration:none;
}
.foot2:hover {
	color: #CCCCCC;
	text-decoration:underline;
}

.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;
}

.leftdiv {
	background-color: #FFFFFF;
	border: 1px solid #4C9F28;
	padding: 10px;
	font-size: 11px;
	color: #333333;
	margin-bottom: 40px;
}

.rightdiv {
	background-color: #FFFFFF;
	border: 1px solid #4C9F28;
	padding: 10px;
	font-size: 11px;
	color: #333333;
	margin-bottom: 40px;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.navigation {
	padding-left: 20px;
	height: 44px;
	font-family: Tahoma;
	font-size: 13px;
	color: #FFFFFF;
	text-align: center;
	font-weight: bold;
}

.navigation1 {
	padding-left: 20px;
	margin-top: 10px;
	height: 44px;
	font-family: Tahoma;
	font-size: 13px;
	color: #FFFFFF;
	text-align: center;
	font-weight: bold;
	float: left;
}

.button1 {
width: 96px;
height: 30px;
float: left;
margin-left: 2px;
}

.tab a:link, .tab a:visited{
background:url(../images/tab-round.png) right 60px;
color:#FFFFFF;
display:block;
font-weight:bold;
font-family: Tahoma;
font-size: 13px;
height:30px;
line-height:30px;
text-decoration:none;
cursor: pointer;
}
.tab a span{
background:url(../images/tab-round.png) left 60px;
display:block;
height:30px;
margin-right:14px;
padding-left:14px;
cursor: pointer;
}
.tab a:hover{
background:url(../images/tab-round.png) right 30px;
display:block;
cursor: pointer;
}
.tab a:hover span{
background:url(../images/tab-round.png) left 30px;
display:block;
cursor: pointer;
}

/* -------------------------------- */
/* ACTIVE ELEMENTS */
.active a:link, .active a:visited, .active a:visited, .active a:hover{
background:url(../images/tab-round.png) right 0 no-repeat;
cursor: pointer;
}
.active a span, .active a:hover span{
background:url(../images/tab-round.png) left 0 no-repeat;
cursor: pointer;
}

[if IE 5]>
/* place css box model fixes for IE 5* in this conditional comment */
.twoColFixLtHdr #sidebar1 { width: 230px; }
[endif]
[if IE]>
/* place css fixes for all versions of IE in this conditional comment */
.twoColFixLtHdr #sidebar1 { padding-top: 30px; }
.twoColFixLtHdr #mainContent { zoom: 1; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
[endif]
