/* This css style sheet controls totally the appearance of TransQuote. 
If you are not familiar with css, I have marked a few changes you can 
do without messing up the layout, like this:                          */ 
 /*Safe*/

/* You can find a good list of colors at http://www.w3schools.com/html/html_colornames.asp 
Common borders types: "solid" "dotted" "groove" "dashed" "ridge" */

.contaktForm{                   /*Contains the whole form.*/ 
  width:90%;
  font-size:14px;
  background: #CCCCFF;         /*Safe - #CCCCFF is the color of the background*/
  padding:5px 10px 0px 10px;
  margin:0px 25px;
  border:6px groove navy;      /*Safe - 4px is the thickness of the border, groove is the type, and navy is the color*/
} 
.contaktTitle{
	color: White; /*Safe - white is the color of the title*/
	font-weight: bold;
	padding: 5px;
	margin: 2px 0 10px 0;
	font-size: 35px;
	text-align: center;
	letter-spacing: 2px;
	background: Navy;
	border: 2px solid black;
}
form{
  padding:0;
  margin:0;
}
label{            			 /*Applies to all labels (the text on the left, like "Name" or "email")*/
  float:left;
  clear:left;
  width:40%;
  color: navy;
  padding:1px 5px 1px 30px;               
}
input,textarea{
  border:1px solid navy;
  width: 50%;
}
.shortInput
{
  max-width: 200px;
}
.clientName{                     
  padding:10px 0px 2px 0px;
  border-top:1px solid navy;   
}
.clientSurname{
  padding:0px 0px 2px 0px;
}
.phone{
  padding:0px 0px 2px 0px;
}
.company{
  padding:0px 0px 2px 0px;
}
.clientWebsite{
  padding:0px 0px 2px 0px;
}
.subject{
  padding:0px 0px 2px 0px;
}
.ClientMsg{
  padding:0px 0px 2px 0px;
}
.optional{
  padding:10px 0px 0px 0px;
  border-top:1px solid navy;
}
.message{
  padding:10px 0px 0px 0px;
  border-top:1px solid navy;   
}
.submit{
  padding:15px 45px 15px 5px;
  border-top:1px solid navy;   
  text-align:right;
  clear:both;
}
.comments{
	clear: both;
	font-style: italic;
	padding: 1px 0px 1px 1px;
	color: Black;
	margin: 2px 0 2px 0;
}
.details{
	padding: 5px 5px 5px 0px;
	border-top: 1px solid navy;
	text-align: center;
	font-size: 1.0em;
	clear: both;
	background: Navy;
	color: White;
	margin: 3px;
}