@charset "utf-8";
/* CSS Document */

/* this css file inherits most rules from the default.css and modifies some properties with the rules below */


#intro {   
padding-left: 35px;
}


.textarea {
	background: #CCFFFF;
	border: none;
	font: bold 1em Arial, Helvetica, sans-serif;
	color: #000000;
}


/* Page content*/

#form_container {
	border: 1px;
	}


#content {
	width: 800px !important; /* wider main panel */
	padding-left: 85px;
}


.post {
	background-color: #fafafa
}

.post a[href] {
background-image: url(images/img09.gif) no-repeat 0px 6px                !important;
padding: 0px 0px 2px 10px;
color: #000 !important; 
text-transform: uppercase !important;
text-decoration: none;
}

.post .entry a[href]{background-image: none !important}


.post a[href]:hover {
color: red !important
}

.post .links {
font-size: 1.1em;
color: #666666 !important;
}

.post .links a[href] {
background: none !important;
color:#666666 !important
}



/* Form styling. Every label/field pair is set within a pragraph block <p></p> which has been given a deep left-padding area. Each label is then given an equally deep left-margn. This will line up the left edges of all the field boxes no matter how long the label texts are. */

.cssform p{
width: 220px;
clear: left;
margin: 0;
padding: 5px 0 8px 0;
padding-left: 100px; /*width of left column containing the label elements*/
border-top: 1px dashed gray;
height: 1%;
}

.cssform label{
font-size: 0.9em;
float: left;
margin-left: -100px; /*width of left column*/
width: 90px; /*width of labels. Should be smaller than left column (created by 100px padding-left on <p>) to create some margin between the right edge of the label text and the data entry field. */
}

.cssform input[type="text"]{ /*width of text boxes. IE6 does not understand this attribute*/
width: 200px;
}

.cssform textarea {
width: 250px;
height: 150px;

}

#comment p {
width: 190px;
clear: left;
margin-left: 0;
padding: 5px 70px 8px 0;

border-top: 1px dashed gray;
height: 1%;
}

#comment label {
font-size: 0.9em;
float: left;

width: 30px
}

#comment textarea {
width: 350px;
height:150px;
}

textarea#Comments {
width: 310px;
}

#radiobox p {
margin: 0;
}

#radiobox label{
margin-left: 0;
width: 200px;
}

#send_block {
	margin: auto;
	padding: 1em;
	border: none;
	}


.cssforms #divider {
width: 500px;
border-top: 1px dashed gray;
}


/* tables  */

.techtable {
	border-collapse: collapse;
	border-spacing: 0pt;
	padding: 5px;
	border: 1px solid;
	border-color: #999999;

}
.techtable td, th {
	background: white;
	border: inset 1pt;
	font-weight: normal;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	
 }
 

.techtable td {
padding: 5px;
}

input[type=text],
input[type=password],
textarea,
select
{
	border: 1px solid;
	border-color: #999 #eee #eee #999;
	background-color: #fff;
	padding: 3px;
}

input[type=text]:focus,
input[type=password]:focus,
textarea:focus,
select:focus
{
	background-color: #eff;
	border-color: #9cf #fff #fff #9cf;
}




/*.threepxfix class below:
Targets IE6- ONLY. Adds 3 pixel indent for multi-line form contents.
to account for 3 pixel bug: http://www.positioniseverything.net/explorer/threepxtest.html
*/

* html .threepxfix{
margin-left: 3px;
}
	
	


