/* 
	The following information must not be removed:
	Awesome Form v2.1 CSS
	Written by: Paul Armstrong, Paul Armstrong Designs
	Site: http://paularmstrongdesigns.com
	Example & Documentation: http://paularmstrongdesigns.com/awesome/form/index.html
	Sun Dec 17 21:25:39 2006

	Special thanks to Zach Johnson for helping and pushing me to make the changes.
	Site: http://tech.no.logi.es (those aren't dots, they are diamonds)

	This work is licensed under a Creative Commons Attribution-ShareAlike 2.5 License
	http://creativecommons.org/licenses/by-sa/2.5/
	
	Modified by Jack Toering Leading Edge IT Architects.
	Site http://www.LeadingEdgeITA.com
*/

/*********************************************************************************************
	In the following section, many of the values must be changed in reference to another.
	Items labeled as 'subjective' are not dependent and may be easily changed as you see fit.
*********************************************************************************************/
.gbcf-form {
	/*background-color:#cccccc;*/
	background-color:#ffffff;
	/*background-image:url(MyImage.gif);*/
}
.gbcf-form label { 
	/*width: 200px;*/ /* label width *//* label margin = (input left margin) - (label width) */
	width: 120px; /* label width *//* label margin = (input left margin) - (label width) */
	margin-right: 10px; /* label margin */
}

.gbcf-form label.long, .gbcf-form p.label {
	margin-left: 120px; /* subjective */
	width: 390px; /* (textarea width) + (label width) + (label margin) - (left margin) */
}

.gbcf-form label span {
	color: #900; /* color of required asterisk */
}

.gbcf-form input, .gbcf-form textarea, .gbcf-form select,
.gbcf-form .checks input, .gbcf-form.checks input {
	margin:2px 2px 2px 140px; /* (label width) + (spacing between label and input) */
	width: 200px; /* subjective, only applies to non-checkbox or radio inputs */
}

.gbcf-form input, .gbcf-form textarea, .gbcf-form select,
.gbcf-form .checks input {
	background-color:none;
}

.gbcf-form textarea { 
	width: 300px; /* subjective, recommend: (3/2)(input width) */
	height: 133px;
}

.gbcf-form p.desc {
	margin-left: 140px; /* (label width) + (label margin) **recommended */
}

.gbcf-form .checks label, .gbcf-form.checks label {
	margin-left: 150px; /* (label width) + 2(label margin) */
}

.gbcf-form legend { 
	color:#7f9db9;
}

/*
	The following makes Internet Explorer 6.x play nicely. 
	These fix the double float margin bug.
*/
* html .gbcf-form .checks input, * html .gbcf-form.checks input { 
	margin-left: 105px;  /* (1/2)((label width) + (label margin)) */
}

* html .gbcf-form .checks label, * html .gbcf-form.checks label { 
	margin-left: 210px; /* (label width) + (label margin) */
	height: 1em; 
}

/*
	Button Styling
*/
.gbcf-sendButton,.gbcf-changeButton, .gbcf-resetButton, .gbcf-returnButton {
  color:#211F5F;
  font:13px Verdana, Arial, Helvetica, sans-serif;
  font-weight:bold;
  text-decoration: none;
}
.gbcf-sendButton, .gbcf-resetButton, .gbcf-returnButton  {
  background-image:url(gbcf-80x25up.gif);
}
.gbcf-sendButtonHov, .gbcf-resetButtonHov, .gbcf-returnButtonHov {
  background-image:url(gbcf-80x25hov.gif);
}
.gbcf-changeButton{
  margin:2px 0 2px 70px !important;
  background-image:url(gbcf-130x25up.gif);
}
.gbcf-changeButtonHov{
  background-image:url(gbcf-130x25hov.gif);
}

/*********************************************************************************
	DO NOT EDIT BELOW THIS LINE
*********************************************************************************/

.gbcf-form {
	margin: 0 0 1em;
	font-family: Arial,sans-serif;
	font-size: 10pt;
}

.gbcf-form fieldset { 
	padding: 10px; 
	margin: 0px;   /*IE padding instead of margin so they don't change size with button hover JT*/
}

.gbcf-form label {
	/* 
		A label must precede the form element in the HTML
		You must keep the top padding for some browsers to keep the label and the form element looking on the same line
	*/
	float: left;
	text-align: right;
	padding-top: 0.2em;
	font-weight: bold;
	/*font-size: 1em;*/
}

.gbcf-form label.long {
	/*
		If your label text does not fit in the left-hand side, consider this class
	*/
	float: none;
	display: block;
	text-align: left;
}

.gbcf-form label.long:after {
	content: "";
}

.gbcf-form fieldset, .gbcf-form fieldset input, .gbcf-form textarea, .gbcf-form select,
.gbcf-validator { 
/*JIE Won't let you change color of some controls so make them all IS's color. JT*/
	border:#7f9db9 1px solid !important;
}

.gbcf-form input, .gbcf-form textarea, .gbcf-form select {
	/*
		These items must immediately follow the LABEL item associated with it and followed by a BR (see below).
		The following width must be 10pixels wider than the width of the LABEL.
	*/
	display: block;
	margin-bottom: 0;
}
.gbcf-form textarea { 
	overflow:auto; /* force same behavior in all browsers JT*/
}

.gbcf-form select[multiple="multiple"] {
	/*
		Mozilla has some weird concept of how to display multiple select boxes.
		For some reason, display: block; does not affect it.
		For more information, see https://bugzilla.mozilla.org/show_bug.cgi?id=342531
		This fixes that problem. DON'T FORGET YOUR BR TAG AFTER SELECT!
	*/
	margin-left: 0px;
}

.gbcf-form br { 
	/* 
		Always include a BR tag at the end of a line of items -- generally immediately following one of an INPUT, SELECT or TEXTAREA.
		Within div.checks, include the BR after the LABEL
	*/
	clear: left;
} 

.gbcf-form input[type="radio"], .gbcf-form input[type="checkbox"], 
.gbcf-form input[type="hidden"] { 
	/* 
		Keeps Mozilla browsers (and others) from making the RADIO and CHECKBOXES too wide and/or tall.
		Also removes unnecessary borders from these browsers (They don't respond as expected) 
	*/
	width: auto; 
	height: 0.8em; 
	border: 0;
}

.gbcf-form input[type="hidden"] {
	/*
		Firefox doesn't want to make them actually hidden, so I'll force it.
	*/
	display: none;
}

.gbcf-form p.desc {
	/*
		Use this immediately following an item that needs a longer description than can be handled by the LABEL.
		The left margin should be the same as INPUT, TEXTAREA and SELECT objects.
	*/
	display: block;
	position: relative;
	top: -1em;
	margin-bottom: 0em;
	font-style: italic;
	/*-size: 0.9em;*/
	font-size: 10pt;
}

/* 
	The following section is for reversing the display of CHECKBOX and RADIO INPUTs.
	Surround the section of items with <fieldset class="checks"></fieldset> or <div class="checks"></div>.
	It is highly recommended to use FIELDSET over DIV when there are multiple items.
	In the section, the INPUT precedes the LABEL and the BR comes last (after the label).
*/
.gbcf-form .checks label, .gbcf-form.checks label {
	/*
		Overrides for previously defined stuff and changes.
		Left margin must be 10pixels more than ".gbcf-form input, .gbcf-form select" etc.
	*/
	float: none;
	width: auto;
	clear: none;
	display: block;
	text-align: left;
	height: 1.4em;
	padding-top: 0;
	margin-bottom: 0;
}

.gbcf-form .checks input, .gbcf-form.checks input {
	/*
		Left margin is the same value as ".gbcf-form input, .gbcf-form select" etc.
	*/
	float: left;
	text-align: right;
	width: auto;
}

/* 
	End reverse checks/radios section
*/

/* 
	Button Styles
*/

.gbcf-sendButton,.gbcf-changeButton, .gbcf-resetButton, .gbcf-returnButton {
  float:left;
  padding:0 2px 2px 2px;
  background-color:#cccddb; /*IE hack*/
  cursor:auto;
}
.gbcf-changeButton{
  display:inline !important; /* IE Hack*/
  clear:left;
  }
.gbcf-sendButton, .gbcf-resetButton, .gbcf-returnButton  {
  margin:3px 0 0 0 !important;
}
.gbcf-sendButtonHov, .gbcf-changeButtonHov, .gbcf-resetButtonHov, .gbcf-returnButtonHov {
  cursor:pointer;
}

/* 
	Button Styles End
*/

/*
	I found my own IE CSS display bug. I call it the "IE sucks, so it redraws the top border all over the fieldset like a jerk bug."

.gbcf-form input, .gbcf-form textarea, .gbcf-form select,
.gbcf-form .checks input, .gbcf-form .checks label,
.gbcf-form.checks input, .gbcf-form.checks label {
	margin-top: 0;
	margin-bottom: 0;
}
*/
* html .gbcf-form br {
	/*
		Hooray! We have a fix!
		For some crazy reason, IE lets me style its BR tag.
	*/
	line-height: 1em;
	font-size: 0.5em;
}

/* 
	Misc. styles
*/
.gbcf-instructions {
	width:auto !important;
	margin-left:10px !important;
}

.gbcf-clearfix:after {
    content: "." !important; 
    display: block !important; 
    height: 0 !important; 
    clear: both !important; 
    visibility: hidden !important;
}

.gbcf-cc-opt {
float:left ;
width:auto !important;
margin:5px !important;
border:none !important;
clear:none;
background-color:none !important;
}
/* 
	End Misc. styles
*/

