
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;
	font-size: 100%;
	vertical-align: baseline;
	border: 0;
	outline: 0;
	background: transparent;
	}
	
ol, ul {
	list-style: none;
	}

blockquote, q {
	quotes: none;
	}

:focus {
	outline: 0;
	}

table {
	border-collapse: collapse;
	border-spacing: 0;
	}/*-----------------------------------------------*/
/* User site specific styling here. */
/*-----------------------------------------------*/
	
/*-----------------------------------------------*/
/* Body and basic overall styling / Layout. */
/*-----------------------------------------------*/

body  {
	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:#14130F;
	font-family: Droid Sans, Trebuchet MS, Verdana, Arial, sans-serif;
	font-size: 100%;
	background-color:#FFF;
}

#containerWrap{
	margin-top:.5em;
	margin-bottom:.5em;
}
#container  {
	width:98%;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	min-width:1000px;
	max-width:1700px;
	background-color:#FFF; /* the auto margins (in conjunction with a width) center the page */
	border: 0px none #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding: 0px;
	float:left;
} 

h4 {
	font-size: 9px;
}

.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;
}
.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;
}

.inline {
	display:inline;
}
.printOnly {
	display:none;
}
/*-----------------------------------------------*/
/* Header. */
/*-----------------------------------------------*/
.spacer {
	height: 10px;
}

#headNavWrap {
	width:17%;
	float:left;	
}
#head  {
	background-color:#FFF;
} 

.logo{
	padding-top: 5px;
	padding-left: 15px;
	font-family: Droid Sans, Trebuchet MS, Verdana, Arial, sans-serif;
	font-style:bold;
	line-height:1em;
	font-size:3em;
	color:#FFF; 
	font-variant:small-caps;
}
div.logo img{
	width:60%;
}
/*-----------------------------------------------*/
/* Navigation. */
/*-----------------------------------------------*/


a {
	text-decoration: none;
}

div.navWrap {
	margin-top:3em;
	color:#A7CA76;
	background-color:#FFF;
}

div.nav, div.nav2{
	text-align: left;
	padding-bottom: .3em;
}


.nav ul li a, .nav2 ul li a {
	-webkit-transition: color .7s ease;
	-moz-transition: color .7s ease;
	-o-transition: color .7s ease;
	transition: color .7s ease;
	font-size:1.75em;
	text-align: left;
	padding: .2em 1em .4em 15%;
	line-height:2em;
	font-family: Droid Sans, Trebuchet MS, Verdana, Arial, sans-serif;
	font-weight: bold;	
}

.nav ul li a.chosen, .nav2 ul li a.chosen {
	-webkit-transition: color .7s ease;
	-moz-transition: color .7s ease;
	-o-transition: color .7s ease;
	transition: color .7s ease;
	color:#336;
}

.nav ul li a:hover, .nav2 ul li a:hover, div#contact h2 span a:hover{
	-webkit-transition: color .7s ease;
	-moz-transition: color .7s ease;
	-o-transition: color .7s ease;
	transition: color .7s ease;
	
	-webkit-transition: background-color .7s ease;
	-moz-transition: background-color .7s ease;
	-o-transition: background-color .7s ease;
	transition: background-color .7s ease;
	
	color:#EEE;
	text-decoration: none;
	background-color: #015;
}
a:link {
	color:#04B;
}
a:visited {
	color:#04B;
}

p.button a, input[type=submit], div#login input[type=submit], div#contact form input[type=submit]{
	font-size: .8em;
	font-weight: bold; 
	display:inline-block;
	background: #256dad url(../images/default/glass.png) repeat-x 0 50%;
	color: #FFF;
	width:auto;
	padding: .45em .8em .65em .8em;
	
	border:solid 3px #666;
	border-radius: 16px;
	-moz-border-radius:16px;
	-webkit-border-radius:16px;

}
p.button a:hover, input[type=submit]:hover, div#login input[type=submit]:hover, div#contact form input[type=submit]:hover{
	background: #99d2f0 url(../images/default/glass.png) repeat-x 0 50%;
	color: #34678d;
	cursor:pointer;
}

div#login input#submit {
padding-bottom:2em;
}

p.button a:link{
	color: #FFF;
}
p.button a:visited{
	color: #FFF;
}
p.button a:hover{
	color: #34678d;
}

/*-----------------------------------------------*/
/* Sidebar Styling. */
/*-----------------------------------------------*/

#sideWrap, .sideButtons{
	float: left; /* since this element is floated, a width must be given */
	clear:none;
	width: 20%;
	padding-left:1%;
}

#side {
	padding: .4em 0;
}

#side img{
	width: 30%;
	margin-top: 0px;
	margin-right: 1%;
	margin-bottom: 10px;
	margin-left: 1%;
}

/*-----------------------------------------------*/
/* Main Section stuff. */
/*-----------------------------------------------*/

#mainWrap {
	float: left;
	width:82%;
	clear:none;
}

#main {
	float: right;
	width:77%;
	padding-left:1%;
} 


#main img {
	text-align: left;
	width:95%;
}
#main h1{
	font-size:3em;
	font-family: Droid Sans, Trebuchet MS, Verdana, Arial, sans-serif;
}
#main h2{
	font-size:1.5em;
	font-family: Droid Sans, Trebuchet MS, Verdana, Arial, sans-serif;
}
#main h3{
	font-size:.75em;
}

#main h3 span{
font-style:bold;
}

#main h4{
	font-size:.75em;
}
#main p{
	font-size:.85em;
	padding-bottom:.5em;
	
}

/* titles -------------------------*/

#titles h2 {
	font-size: .7em;
	margin-top: 3px;
}
#titles {
	clear:right;
	padding: 2em 0em;
	width: 500px;
	margin-left:35%;
	}
	
#titles p {
	font-size: .7em;
	line-height: 1em;
	padding-bottom:.4em;
}


div#about, div#news {
	margin: 9em 30% 1em -25%;
	width:75%;
	min-width:550px;
}

/* about -------------------------*/

#about  {
	margin-left: 20px;
	width: 500px;
}
#about h1 {
	font-size: 3em;
	font-family: Droid Sans, Trebuchet MS, Verdana, Arial, sans-serif;
}
#about p {
	font-size: 15px;
}
/* resume -------------------------*/
div#resume {
	padding-right:6%;
	padding-top:2em;
}
div.sideButtons h2{
	font-family: Droid Sans, Trebuchet MS, Verdana, Arial, sans-serif;
	font-weight: normal;	
	font-size:1.5em;
	padding-top:1.4em;
	
}
div.sideButtons p{
	margin-bottom:.75em;
}

/* news -------------------------*/
div#news {
	margin: 1em 30% 1em -25%;
	width:75%;
	min-width:550px;
}
#news {

	padding-left:100px;
}
div#news p {
	padding-right:7em;
	padding-bottom:.5em;
}
.newsCaption{
	font-size: 10px;
	font-style: italic;
	text-align: left;
}

#main h1.newsHeading{
	font-size:2em;
}

#container #mainwrap #news .newsImg {
	width:25%;
	
}

/* reviews -------------------------*/

#reviews  {

}

/* contact -------------------------*/
div#contact{
	margin: 1em 30% 1em -25%;
	width:75%;
	min-width:550px;	
	float:left;
	background-color:#fff;
}
div#contact form textarea, div#contact form input{
	background-color:#fff;
}

/* uploads -------------------------*/

div#uploads  {
	background-color:#FFF; /* the auto margins (in conjunction with a width) center the page */
	border: 0px none #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin: 9em 30% 1em -25%;
	margin-top:-20px;
	padding: 25px;
}


.fileList {
	font-size: 12px;
	text-align: left;
	padding-left: 20px;
	padding-bottom: 8px;
	
}
.fileList a{
	text-decoration: underline;
	color:orange;
}
.fileList table{
	border-width: 3px;
	border-style: solid;
	border-color:#FFF;
}
.fileList td{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color:#FFF;
	padding-bottom: 5px;
	padding-left: 5px;
	
}
div.helper{
	float:right;
	width:200px;
	padding:15px;
	border:2px solid #EEE;
	border-radius:10px;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	margin:0 0 400px 100px;
}

/* hidden -------------------------*/

div.hidden {
	visibility:hidden;
	height:20px;
	margin:0;
	padding:0;
}
div.hidden img {
	height:1px;
}
/*-----------------------------------------------*/
/* Forms  */
/*-----------------------------------------------*/

/*
fieldset {
    border: 1px solid gray;
	width:22em;
	padding:1em;
    }
*/

div.form {
	background-color: #cbeda1;
	border-radius:15px;
	-webkit-border-radius:15px;
	-moz-border-radius:15px;
	padding:1.5em;
	border:6px solid #04B;
}	
input {
	display:block;
	padding-bottom:1em;
}
fieldset label {
	display:block;
	margin: 3px 0;
}

fieldset  {
	margin-bottom:3px;
	width: 90%;
	
}

fieldset input, fieldset textarea, fieldset select{
	padding:4px;
	margin-bottom:1.5em;
	width: 65%;
	border:none;
	border: #333 1px solid;

	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
}

fieldset select {
	background: #F5DD7D;
}

fieldset  input:focus, fieldset  textarea:focus {
	
	background-color: #FAF8A2;
}

input[type=checkbox]{
	width:auto;
	display:inline;
}


div #containerWrap div#container div#mainWrap div#main div#contact form#form1 p label input#submit {
	width: auto;
	background-color: red;
}	

div#contact h2  {
	
	font-size:1.25em;
}
div#contact h2 span {
	
	font-size:1.35em;
}
div#contact h2 span a {
	padding: 0 .25em;
}
/*-----------------------------------------------*/
/* Tables */
/*-----------------------------------------------*/


table {
	background-color: #FFF;

}
table tr th {
	font-size: 14px;
	font-weight: bold;
	font-variant: small-caps;
	color: #FFF;
	background-color: #693;
	padding: 4px;
}
table tr td {
	color: #360;
	background-color: #FFF;
	padding: 4px;
border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #690;
	border-right-color: #690;
	border-bottom-color: #690;
	border-left-color: #690;
}


/*-----------------------------------------------*/
/* Footer. */
/*-----------------------------------------------*/

footer  {
	clear:both;
	padding: 25px 10px 25px 20px;
	background-color:#FFF;
	display: table-cell;
	vertical-align: middle;
	}
 
footer p  {
	font-size: 10px;
	text-align: left;    
}

footer a{
	color: blue;
	text-decoration: underline;
}

footer p img{
	vertical-align: middle;
}



/*-----------------------------------------------*/
/* Login Area. */
/*-----------------------------------------------*/




#login {
background: #bfbfbf url(../images/default/whiteGradient.png) no-repeat top left;
border: 1px solid #333;
min-height: 330px;
width: 705px;
margin-left:-10em;
margin-top:3em;
-moz-border-radius-bottomright: 30px;
-webkit-border-bottom-right-radius: 30px;
_height: 100%; /* IE FIX */
	}


div#login  h2 {
padding: 15px 0 15px 75px;
margin-top: 25px;
font-size: 45px;
background: #BFBFBF url(../images/default/h2BG.png) no-repeat;
color: ##2F2F2F;
border-top: 1px solid #9F9F9F;
text-indent: -9999px;
width: 676px;
height: 73px;
position: relative;
left: -23px;
	}
	
div#login label {
	font-size: 1.2em;
	padding-left:1em;

	}



div#login input {
width: 35%;
height: 25px;
padding: 0 ;
color: #333;
margin-left:1em;

}


small {
font-size: 16px;
position: relative;
top: -4px;
}

div#login h4 {
color: #5F5F5F;
font-size: 1.2em;

}
div#login p {
	margin-left:2em;
}
div#login p a{
	margin-left:1em;
}

div#login p a:hover{
	color:#EEE;
}

h4.alert {
	background-Color: #bfbfbf;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	padding: .4em;
	line-height: 19px;
	position: relative;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
}

span.exit {
	position: absolute;
	top: 0;
	right: 0;
	background: #6361DF;
	color: #292929;
	font-size: 10px;
line-height: 14px;
	font-weight: bold;
	padding: 0 .3em;
	cursor: pointer;
border-left: 1px dotted white;
border-bottom: 1px dotted white;
}




/*-----------------------------------------------*/
/* ColorPicker. */
/*-----------------------------------------------*/


.farbtastic {
  position: relative;
}
.farbtastic * {
  position: absolute;
  cursor: crosshair;
}
.farbtastic, .farbtastic .wheel {
  width: 195px;
  height: 195px;
}
.farbtastic .color, .farbtastic .overlay {
  top: 47px;
  left: 47px;
  width: 101px;
  height: 101px;
}
.farbtastic .wheel {
  background: url(../images/default/wheel.png) no-repeat;
  width: 195px;
  height: 195px;
}
.farbtastic .overlay {
  background: url(../images/default/mask.png) no-repeat;
}
.farbtastic .marker {
  width: 17px;
  height: 17px;
  margin: -8px 0 0 -8px;
  overflow: hidden; 
  background: url(../images/default/marker.png) no-repeat;
}
 .colorwell {
     border: 2px solid #fff;
     width: 6em;
     text-align: center;
     cursor: pointer;
   }
   body .colorwell-selected {
     border: 2px solid #000;
     font-weight: bold;
   }

div#main div#picker {
	margin:1em 1em 1em 0em;
}

div#main  form#colorForm {
	width:800px;
	float:left;
	margin-top:2em;
	border:solid .6em #666;
	-moz-border-radius: 1em;
	-webkit-border-radius: 1em;
	padding:1em;
	margin-left:-10em;
	background: #DDD;
	
}

div#main form#colorForm div#picker-inner {
	width:350px;
	height:600px;
	overflow:scroll;
	background:#333;
	border:solid .6em #256dad;
	-moz-border-radius: 1em;
	-webkit-border-radius: 1em;
	padding:1em;
	-moz-box-shadow: 10px 10px 10px #555;
	-webkit-box-shadow: 10px 10px 10px #555;
	box-shadow: 10px 10px 10px #555;
	
}
div#main form#colorForm div#picker-inner label {
	color:white;
}

div#main  form#colorForm input[type=submit] {
margin:1em 2em;
} 


/*

$headerColor ->	"headerBGColor",
	 
	"headerTextColor",
	 
	"navBGColor", 
	"navTextColor", 
	"textColor", 
	"textColor2", 
	"linkColor", 
	"linkHoverColor", 
	"linkColorCurrent", 
$buttonColor ->	"buttonTextColor",  
	"buttonTextHoverColor", 
	"buttonBGColor", 
	"buttonBGHoverColor",
	 
$formColor ->	"formBGColor", 
	"formTextColor", 
	"test1", 
	"test2", 
	"test3", 
	"test4");
	
	
	
	
	"bgColor", 
	"pageColor", 
	"headerBGColor", 
	"headerTextColor", 
	"navBGColor", 
	"navTextColor", 
	"textColor", 
	"textColor2", 
	"linkColor", 
	"linkHoverColor", 
	"linkColorCurrent", 
	"buttonTextColor",  
	"buttonTextHoverColor", 
	"buttonBGColor", 
	"buttonBGHoverColor", 
	"formBGColor", 
	"formTextColor", 
	"test1", 
	"test2", 
	"test3", 
	"test4"
	
	*/

/* 
Title:		IE patches
Author: 	dan@simplebits.com
*/

/* nav fix */

*:first-child+html #nav li {
	width: 24.9%;
	}

/* PNG fix */

* html #selector { /* for IE<6 */
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale src='img/image.png'); background-image: none; background-repeat: no-repeat; background-color: transparent;
	}

/* self-clear floats */

* html .group { /* IE6 */
	height: 1%;
	}
*:first-child+html .group { /* IE7 */
	min-height: 1px;
	}
