/* CSS Document */

/*default form styles*/

#oneform{
	font-family: Arial, Helvetica, sans-serif;
	padding: 0px 10px 10px 10px;
	margin: 10px 20px 10px 0px;
	border:solid 1px #b7ddf2;
	background:#ebf4fb;
}

/*beware below for css bugs, so keep definitions seperate*/
/*default form element styles, font-size em so form will 'increase size'*/
#oneform input{
	background-color:#FFFFFF;
	/*border: 1px solid #006699;*/
	border:solid 1px #aacfe4;
	font-size: 1em;
	display:block;
	padding:4px;
}

#oneform input:focus, #oneform textarea:focus {
	border:1px solid #003366;
	}

#oneform input.hidden {
	display: none;
	border: 0px;
	padding: 0px;
	margin: 0px;
	float: right;
}

#oneform textarea{
	font-family: Arial, Helvetica, sans-serif;
	color: #000033;
	display:block;
	background-color:#FFFFFF;
	/*border: 1px solid #006699;*/
	border:solid 1px #aacfe4;
	font-size: 1em;
	display:block;
}

/*bug on ie, so select cannot be block, label cannot wrap form element*/
#oneform select{
	background-color: #FFFFFF;
	/*border: 1px solid #006699;*/
	border:solid 1px #aacfe4;
	font-size: 1em;
	display:inline;
	padding:4px;
}

/*select box*/
/*put color and margin (space out words) around option/optgroup*/
#oneform optgroup {
	background-color:#FFFFFF;
	font-size:1em;
}

#oneform option {
	background-color:#FFFFFF;
	margin: 3px 0px 3px 0px;
	font-size:1em; 
}

/*default label styles*/
#oneform fieldset label {
	font-weight: bold;
	display:block;
	margin-top: 2px;
	margin-bottom: 0px;
	/*border-bottom: 1px solid #000033;*/
}

/*style the fieldset - note browser defaults a border on fieldset - fieldset gives spacing between form elements*/
#oneform fieldset {
	border: 0; 
	margin: 2em 0em 2em 0em;
	padding: 0;
}

#oneform legend {
	margin-left:0;
	padding-left:0;
	text-indent:0;
	margin-bottom: 1em;
	display:none;
}

#oneform p {
	margin:0;
}

/*any fieldset nested in a fieldset remove border & padding etc*/
#oneform fieldset fieldset {
	border: 0;
	padding:0; 
	margin:0;
}

/*questions with basic checkboxes / radio buttons*/
#oneform fieldset.checkradio input {
	margin-right: 15px; 
	display: inline;
}

#oneform fieldset.checkradio label {
	display:block; 
	width:auto;
}

/*and if groups of checkbox radio buttons in tables*/		

#oneform table {
	border:0;
}

#oneform table label {
	float:none;
	display:block;
	width:auto;
	padding:0;
	margin:0;
}	

#oneform table input{
	background-color: #FFFFFF;
	border:0;
}	

#oneform caption{
	text-align:left;
	font-weight:bolder;
}

#oneform fieldset.rankby table{
	width:70%;
}

#oneform fieldset.checkradio td, th {
	border:0;
	padding:7px;
	padding-right: 20px;
}

/*rankby table holding group of radio buttons*/

#oneform fieldset.rankby table td, th {
	border: 1px dashed #FFFFFF;
	border-collapse:collapse;
	padding: 7px;
	text-align:center;
	vertical-align:middle;
}

/*style the submitbutton and override inherited styles*/
#oneform input.submitbutton {
	padding:4px 0px;
	margin-left: 350px;
	background: url(img/next_arrow.gif) no-repeat top;
	color: #FFFFFF;
	border: none;
	width: 80px;
	height: 50px;
	font-size: 12px;
	font-weight: bold;
}

#oneform input.submitbutton:hover {
	color: #FFF;
	background: url(img/next_arrow_hover.gif) no-repeat top;
}


/*required asterix*/
#oneform.required {
}

/*just in case hack to stop float better safe than sorry*/
br {clear:both}

#oneform div.help {
	float: right;
	margin-right: 20%;
	margin-left: 60%;
	width: 30%;
}

#oneform div.dataprotect{
	float: right;
	margin-right: 20%;
	margin-left: 60%;
	width: 30%;
}

#oneform.header {
	background-color: #006699;
	color: #FFFFFF;
	font-weight: bold;
}

p {
	margin:0;
	padding-bottom: 1px;
	line-height: 16px;
}

/*---------- bubble tooltip -----------*/
a.tt{
    position:relative;
    color:#6699CC;
	font-weight:bold;
    text-decoration:none;
}
a.tt span{ display: none; }

/*background:; ie hack, something must be changed in a for ie to execute it*/
a.tt:hover{ z-index:2; color: #aaaaff; background:;}
a.tt:hover span.tooltip{
    display:block;
    position:absolute;
    top:0px; left:0;
	padding: 10px 0 0 0;
	width:200px;
	color: #000;
    text-align: center;
	filter: alpha(opacity:90);
	KHTMLOpacity: 0.90;
	MozOpacity: 0.90;
	opacity: 0.90;
}
a.tt:hover span.top{
	display: block;
	padding: 30px 8px 0;
    background: url(img/bubble.gif) no-repeat top;
}
a.tt:hover span.middle{ /* different middle bg for stretch */
	display: block;
	padding: 0 8px; 
	background: url(img/bubble_filler.gif) repeat bottom; 
}
a.tt:hover span.bottom{
	display: block;
	padding:3px 8px 10px;
	color: #548912;
    background: url(img/bubble.gif) no-repeat bottom;
}

h2 {
	color: #003366;
	border-bottom: 2px solid #aacfe4;
	margin: 0 0 0 0;
	padding: 10px 0 0 0;
	}
	
.required {
	color: #FF0000;
	}
	

.searchbutton
{
background: url(img/button_bg1.jpg);
background-repeat: repeat-x;
background-color: #000000;
margin-top: 8px;
color: #FFFFFF;
width: 150px;
font-weight: bold;
}
