body {
}


div.PANEL {
    clear: left;
}

.BUTTONS {
    text-align: center;
    border: none;
    padding-top: 20px;
}
.BUTTONSUBMIT {
    /*border: solid 1px navy;*/
    border: none;
    height: 16px;
    width: 100px;
}
.IMGSAVE {
    border: none;
    height: 24px;
    width: 24px;
    background: url(Images/save_disabled.png) top left no-repeat;
}
.IMGSAVE:hover {
    background: url(Images/save.png) top left no-repeat;
}


.BUTTONS .IMGSAVE {
    width: 90px;
    height: 20px;
    margin: 10px 0;
    background: transparent url(Images/Submit.gif);
}
.BUTTONS .IMGSAVE:hover {
    background: transparent url(Images/SubmitOver.gif);
}
img.IMGSAVE {
    border: 0;
}


.IMGDELETE {
    border: none;
    height: 24px;
    width: 24px;
    background: url(Images/delete_disabled.png) top left no-repeat;
}
.IMGDELETE:hover {
    background: url(Images/delete.png) top left no-repeat;
}
.IMGCLOSE {
    /*border: solid 1px navy;*/
    border: none;
    height: 24px;
    width: 24px;
    background: url(Images/close_disabled.png) top left no-repeat;
}
.IMGCLOSE:hover {
    background: url(Images/close.png) top left no-repeat;
}
.BUTTONRECORDFIRST {
	border: none;
	display: block;
    height: 16px;
    width: 16px;
    background: url(Images/first.png) top left no-repeat;
}
.BUTTONRECORDFIRST:hover {
    background: url(Images/first_blue.png) top left no-repeat;
}
.BUTTONRECORDPREVIOUS {
	border: none;
	display: block;
    height: 16px;
    width: 16px;
    background: url(Images/previous.png) top left no-repeat;
}
.BUTTONRECORDPREVIOUS:hover {
    background: url(Images/previous_blue.png) top left no-repeat;
}
.BUTTONRECORDNEXT {
	display: block;
	border: none;
    height: 16px;
    width: 16px;
    background: url(Images/next.png) top left no-repeat;
}
.BUTTONRECORDNEXT:hover {
    background: url(Images/next_blue.png) top left no-repeat;
}
.BUTTONRECORDLAST {
	display: block;
	border: none;
    height: 16px;
    width: 16px;
    background: url(Images/last.png) top left no-repeat;
}
.BUTTONRECORDLAST:hover {
    background: url(Images/last_blue.png) top left no-repeat;
}
fieldset legend input[type="button"]{
	background-color: #09C;
	border: none;
	height: 25px;
	width: 42px;
	background: url(Images/edit.png) top left no-repeat;
}
fieldset legend input[type="button"]:hover {
	background: url(Images/edit_over.png) top left no-repeat;
}
/* ~~~~~~~~~~~~~~~~~~ ADDED on 08/25/2009 ~~~~~~~~~~~~~~~~~~~~~~~ */

.OUTER {
	padding: 10px 20px;
	text-align:left;
	background-color: #FFFFFF;
}
.INNER {
	background-color: #FFFFFF;
}
.PanelInstructions {
	padding: 0 15px;	
	text-align: justify;
}
input {
	background-color: #e4e4e4;
	border: 1px solid #2b4161;
}
.INPUTDESC {
	font-style: italic;
	margin-left: 245px;
}
.VALIDATION {
	color: #CC0000;
	font-weight:bold;
	font-style:italic;
	font-size:80%;
}
.BUTTONS {
	text-align:center;
}
/*
fieldset {
	width: 640px;
	margin: 0 20px;
	padding: 5px 20px;
	text-align:left;
	-moz-border-radius: 5px; 
}
fieldset legend {
	color:#0066CC;
	font-weight:bold;
	font-size: 85%;
	padding: 5px 10px;
	text-transform: uppercase;
}
*/
div.PANEL {
    clear: left;
}
div.INPUT {
    margin-bottom: 3px;
}
div.INPUT label {
    clear: right;
    display: block;
    float: left;
    width: 245px; /* increase or decrease line-height depending on font-size set in 'div.field .input' trial and error needed to get it right */
    padding-right: 6px;
    text-align: right;
}

/* START CHECKBOXES STYLING */
/* This section must stay after -div.INPUT label- because it overrides its properties */
ul.CHECKBOXLIST {
	list-style:none;
}
ul.CHECKBOXLIST li {
	overflow: auto; /* alternative: float:left; can be used, but need to make the parent floats to left as well*/
	display: block;
	margin-left: 140px;
	width: 400px;
}
ul.CHECKBOXLIST li label {
	padding-left: 6px;
	text-align: left;
	display: block;
	width: 350px;
	float: left;
	clear: none;
}
ul.RADIOBUTTONLIST {
	list-style:none;
}

ul.RADIOBUTTONLIST li {
	overflow: auto;  /*alternative: float:left; can be used, but need to make the parent floats to left as well*/
	display: block;
	margin-left: 205px;
	width: 350px;
}
ul.RADIOBUTTONLIST label {
	padding-left: 6px;
	text-align: left;
	display: block;
	width: 300px;
	float: left;
	clear: none;
}
input[type="checkbox"] {
	float: left;
	border: 1px solid #2b4161;
}
input[type="radio"] {
	float: left;
	border: 1px solid #2b4161;
}
/* END CHECKBOXES STYLING */

div.VALIDATION {
    padding-left: 250px;
    margin: 3px 0px 3px 0px;
}
div.INPUT label.textlabel {
    line-height: normal;
}
div.INPUT div.blocktext {
 	margin-left: 245px; /* 'div.field label' width + padding */
    zoom: 1; /* trigger hasLayout in IE6 */
}
div.INPUT input.TEXTBOX {
    width: 9em;
}
div.INPUT input.TEXTBOXLONG
, div.INPUT textarea.TEXTBOX {
    width: 420px;
}
div.INPUT input.TEXTBOXSHORT {
    width: 4em;
}
div.INPUT input.TEXTBOXTIME {
    width: 3em;
}
div.INPUT input.TEXTBOXDATE {
    width: 5.5em;
}
div.INPUT textarea.TEXTBOX {
    height: 10em;
    padding: 2px;
    overflow: auto;
}
fieldset.FORM div.BUTTONS {
    margin-left: 245px; /* 'div.field label' width + padding */
}
fieldset.FORM div.BUTTONS input.BUTTON, fieldset.FORM div.BUTTONS button {
    text-align: center; /* without this, button text is left-aligned in IE */
}
.FORM .ROWS .ROW_B p {
	padding: 0 20px;
}
.HIDDEN {
    display: none;
}
.MODAL-DIALOG {
    background-color: #FFFFFF;
    border: solid 5px #CCCCCC;
    padding: 10px;
}
.POPUPS {
    background-color: #FFFFFF;
    border: solid 5px #CCCCCC;
    padding: 10px;
}
.PROCESSING {
    background-color: #FFFFBB;
    border: solid 2px #CCCCCC;
	color: #CC3333;
    padding: 10px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -25px;
	margin-left: -50px;
}



/*
fieldset {
    border: none;
    font: 12px "Trebuchet MS", Arial, Helvetica, sans-serif;
    text-align:right;
}
.GROUPSTEP1 {
    position: relative;            
}
.FILTERS {
    float: left;
    width: 140px;
    margin: 5px 0;
}
.BREADCRUMBS {
    position: absolute;
    top: 0px;
    right: 20px;
    width: 520px;
}
.LISTS {
    position: absolute;
    top: 25px;
    right: 20px;
    width: 520px;
}
.LISTACTIONBUTTONS,
.LISTSORTBY,
.LISTPAGINGBUTTONS,
.LISTSIZEBUTTONS {
    float: left;           
}
.LISTS img {
    display: block;
    width: 20px;
    height: 20px;
    border: none;
}
.BUTTONGO {
    width: 20px;
    height: 20px;
}
.LISTS ul li {
    list-style-type: none;
    display: block;
    padding: 0 1px;
    margin: 0 1px;
    float: left;
}
.LISTS select {
    height: 20px;
    margin: 0;
    margin: 0px;
}
.LISTS ul li input {
    height: 20px;
    margin: 0;
    padding: 0;
}

*/
