/* UNIVERSITY CO-OP BOOKSHOP
   Form styles
   Author: Jonathan Nicol (jonathan@f6design.com)
   Modified:  Tristan Roberts [WebVentures.com.au]
   Modified: Helen Kundicevic [Co-op Bookshop]
*****************************************************************/


form {
	margin: 0;
}

fieldset {
	border: none;
	padding: 0;
	margin: 0;
}

label {
	font-weight: bold;
	margin-bottom: 3px;
	font-size: 1.1em;
	display: block; /* allows padding top/btm */
}
label.left {
	float: left;
	clear: both;
	width: 140px;
	text-align: right;
	margin: 0 7px 5px 0;
	padding: 2px 0 0 0;
}
label .reg {
	font-weight: normal;
	font-size: 0.9em;
}
label.radio, label.checkbox {
	font-weight: normal;
	font-size: 1em;
}

input.formbox, select, .formboxSelect, textarea {
	width: 225px;
	font-family: Arial, Verdana, Tahoma, sans-serif;
	font-size: 100%;
	font-weight: normal;
	color: #464646;
	background: #fff;
	padding: 2px;
	height: 16px;
	border: 1px solid #a5acb2;
	vertical-align: middle;
}

/* the same, but no width, and taller so it looks the same */
.formboxSelect, select {
	height: 20px;
	width: auto;
	background: #f3f3f3;
}

/* allows us to over-ride height for scrollable select boxes */
.autoH select {
	height: auto;
}

input.formbox, select {
	margin-bottom: 5px;
}

/* narrower */
input.specSearch {
	width: 160px;
	margin-bottom: 0;
}
input.search {
	width: 170px;
	margin-bottom: 0;
}
input.advSearch {
	width: 167px;
	margin-bottom: 0;
}
input.short {
	width: 122px;
}
/* wider */
input.wide, textarea.wide {
	width: 500px;
}

.qty input {
	width: 25px;
}

.formradio {

}

textarea {
	height: 60px; 
}
textarea.tall{
	height: 120px;
}

.formbox.padBtm, .formboxSelect.padBtm {
	margin-bottom: 5px;
}

input[disabled=disabled] {
	background-color: #d8d8d8;
}

input:focus, select:focus, textarea:focus {
	background: #e8f0d4;
}

input.padBtm, select.padBtm, textarea.padBtm {
	margin-bottom: 5px;
}

.formDivider, .formDividerMargTop {
	clear: both;
	height: 1px;
	font-size: 1px;
	line-height: 1px;
}

.formError {
	color: #CC0000;
}

.formLabelTop {
	color: #585656;
	font-weight: normal;
	padding-left: 2px;
	margin-bottom: 0.2em;
}

.submitBtn {
	font-size: 100%;
}

/* this is for forms where you replace the submit btn with an image */
.formBtnImage {
	vertical-align: middle;
	padding: 0;
	margin: 0;
	cursor:pointer;
}

.formBtnImage.padBtm {
	margin-bottom: 5px;
}

.formBtnImage.padTop{
	margin-top: 0.7em;
}

form .formButton {
 	width: auto;
	overflow: visible;
	font-weight: bold;
	font-size: 1em;
	padding: 2px 6px 2px 16px;
	margin-bottom: 5px;
	border: 1px solid #bababa;
	color: #7bad00;
	background: #fff url(../page_images/btn_arrow.gif) no-repeat 8px 55%;
}

form .formButton:hover, form .formButton.sfhover {
	border: 1px solid #7bad00;
	text-decoration: none;
	color: #444444;
}

.formInstructs {
	font-style: italic;
	margin: 3px 0 5px 2px;
}

.searchBtnR{
	margin-bottom: -200px;
}

.searchBtnL{
	float: left;
}
#extendSearchBottom{
	display: block;
	height: 13px;
}

/* course search form 
-------------------------------------- */
.coursesearch {
	display: inline-block;
	zoom: 1; /* ie7 hack for display:inline-block */
 *display: inline;
	border: solid 1px #d2d2d2;
	padding: 3px 5px;
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	border-radius: 2em;
	-webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, .1);
	-moz-box-shadow: 0 1px 0px rgba(0, 0, 0, .1);
	box-shadow: 0 1px 0px rgba(0, 0, 0, .1);
	background: #f1f1f1;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
	background: -moz-linear-gradient(top, #fff, #ededed);
 filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed'); /* ie7 */
 -ms-filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed'); /* ie8 */
}
.coursesearch input {
	font: normal 12px/100% Arial, Helvetica, sans-serif;
}
.coursesearch .searchfield {
	background: #fff;
	padding: 6px 6px 6px 8px;
	width: 250px;
	border: solid 1px #bcbbbb;
	outline: none;
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	border-radius: 2em;
	-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
}
.coursesearch .searchbutton {
	color: #fff;
	border: solid 1px #7bad00;
	font-size: 11px;
	height: 27px;
	width: 47px;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .6);
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	border-radius: 2em;
	background: #669900;
	background: -webkit-gradient(linear, left top, left bottom, from(#9e9e9e), to(#454545));
	background: -moz-linear-gradient(top, #9e9e9e, #454545);
 filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#9e9e9e', endColorstr='#454545'); /* ie7 */
 -ms-filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#9e9e9e', endColorstr='#454545'); /* ie8 */
}
/* end search form */

