/****************************************************************
1 Reset - http://meyerweb.com/eric/tools/css/reset/
2 Headings
3 Anchors
4 Form Elements
5 General Classes
6 Template & Layout
 ****************************************************************/
 
/****************************************************************
1 Reset
*****************************************************************/
 
/****************************************************************
2 Headings
 ****************************************************************/ 

/****************************************************************
3 Anchors
 ****************************************************************/ 

/****************************************************************
4 Form Elements
 ****************************************************************/ 
.form {
	margin:0;
	padding:0;
}

fieldset {
	border:1px solid #CCC;
	padding:10px;
}

legend {
	background: #666;
	border: 1px solid #333;
	color:#fff;
	font-family:Arial, Helvetica, sans-serif;
	font-weight: bold;
	line-height: 1.1;
	margin-bottom: 10px;
	padding: 2px 6px;
}

label {
	color: #444;
}
label:hover {
	color: #000;
}

label.requiredField {
	color: red;
}
label.requiredField:hover {
	color: #900;
}

/* table used for laying out data entry forms */
table.formLayoutTable {
	background: white;
	border-collapse: collapse; /*separate;*/
	border-spacing: 0px;
	border: none;
	padding: 0px;
	width:100%;
}

/* table cells used to show field labels and entry fields themselves */
td.labelContainer, td.inputContainer  {
	border-top: 1px solid white;
	height:30px;
	padding-bottom:5px;
	padding-left:5px;
	padding-top:5px;
}

td.labelContainer {
	background:#CCCCCC;
	border-right: 1px solid white;
	color:#666;
}
td.inputContainer {
	background:#E6E6E6;
	color:#444;
}

/* div to contain groups of radio buttons */
td.radioGroupContainer {
	background-color:#E6E6E6;
	margin-top:3px;
	padding-top:10px;
	padding-bottom:10px;
	padding-left:5px;
}

/* styles for text input fields and more specifically for the username and password classes */
input.textbox {
	background-image: url();
	background-repeat: no-repeat;
	background-position:left;
	/* width:185px; */
	font:normal 12px Arial;
	color: #555555;
	padding:3px 5px 3px 5px;
}

textarea.textbox {
	font:normal 12px Arial;
	color: #666666;
	padding:3px 5px 3px 5px;
}

input.textbox:focus, input.textbox:hover, textarea.textbox:focus, textarea.textbox:hover {
	background-color:#F0FFE6;
}

select {
	font-family:Arial, Helvetica, sans-serif;
}

.textbox[disabled="disabled"], .textbox[disabled='disabled']:hover {
  background:red;
}

.username {
	background-image: url(http://www.roscripts.com/images/16m.png);
	background-repeat: no-repeat;
	background-position:left;
	/* width:185px;*/
   	font:normal 12px Arial;
   	color: #999999;
   	padding:3px 5px 3px 19px;
}
.username:focus, .username:hover {
	background-color:#F0FFE6;
}
   
.password {
   	background-image: url(http://www.roscripts.com/images/16s.png);
   	background-repeat: no-repeat;
   	background-position:left;
	/* width:185px;*/
   	font:normal 12px Arial;
   	color: #999999;
   	padding:3px 5px 3px 19px;
}
.password:focus, .password:hover {
	background-color:#F0FFE6;
}

/* styles for button container and buttons themselves */
.buttonContainer {
	width:100%;
	float:right;
	background-color:#fff;
	border:none;
	text-align:right;
	height:35px;
	margin-top:3px;
	padding:5px 10px 3px;
}
.buttons {
	background: #dadada url(/styles/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;
	border: 1px #d3d3d3 solid;
		-moz-border-radius: 4px;
		-webkit-border-radius: 4px;
	color: #666666; 
	font-family: Arial, Helvetica Sans-serif;
	font-weight:bold;
	overflow:visible;
	padding: 3px 10px;
	text-decoration:none;
	/* text-transform:uppercase; */
	width:auto;
	/*width:1*/;
}

.buttons:hover {
	background: #dadada url(/styles/smoothness/images/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x; 
	border: 1px #999999 solid;
	color: #212121; 
}


/****************************************************************
5 General Classes
 ****************************************************************/ 
.clear {
	clear:both;
}

/****************************************************************
6 Template & Layout
 ****************************************************************/ 

/* START OF form layout */


#container {
	width:600px;
	margin:auto;
	padding:10px;
}
#top {
	width:100%;
}
#leftSide {
	width:400px;
	margin-top:12px;
	padding-top:0px;
	float:left;
}
#rightSide {
	background-color:#fff;
	width:150px;
	padding:5px;
	margin-top:20px;
	float:right;
	border:1px solid #CCC;
	font:normal 12px Arial;
	color:#666666
}

/* END OF form layout */

