/* SCAFFOLD FORMS */
.edit_box form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  margin: 0;
  padding: 0;
  min-width: 500px;
  /* max-width: 600px; */
  /* width: 560px; */
}

.edit_box form fieldset {
  border-color: #C0C0C0;
  border-width: 1px;
  border-style: solid;
  margin: 20px 0px 10px 0px;
  padding: 15px;        /* padding in fieldset support spotty in IE */
}

.edit_box form fieldset img {

    margin: 5px 0px 0px 8px;

}

.edit_box form fieldset legend {
	font-size:1.1em; /* bump up legend font size, not too large or it'll overwrite border on left */
                       /* be careful with padding, it'll shift the nice offset on top of border  */
}

.edit_box form label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 150px; 
	padding: 0; 
	margin: 5px 10px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right;
    font-weight: normal;
}

.edit_box form input, .edit_box form textarea, .edit_box form select {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:auto;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:3px 0px 5px 0px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}

.edit_box form input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}

textarea { overflow: auto; }

.edit_box form small {
	display: block;
	margin: 0 0 5px 160px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: 88%;
}

.edit_box form .required { font-weight: bold; } /* uses class instead of div, more efficient */

.edit_box form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}


/* SCAFFOLD TABLES */

table {font: 11px Tahoma, Arial, sans-serif;padding: 0; margin: 7px 0 7px 0; border-collapse: collapse; color: #333; background: #F3F5F7;}

table a {color: #3A4856;}  

table a:visited {color: #777;}

table a:hover {color: #000;}  

table caption {text-align: left; text-transform: uppercase;  padding-bottom: 10px; font: 200% "Lucida Grande", "Lucida Sans Unicode", "Trebuchet MS", sans-serif;}

table thead
{
    background: #4F9EC9; 
    padding: 10px 10px; color: #fff; 
    text-align: left; 
    font-weight: bold; 
	border-bottom:2px solid #388CBA;
	border-left:2px solid #388CBA;
	border-right:2px solid #388CBA;
}

table th
{
    background: #4F9EC9; 
    padding: 10px 10px; color: #fff; 
    text-align: left; 
    font-weight: bold; 
    font-size: 11px;
}

table tbody {border-left: 1px solid #EAECEE; border-right: 1px solid #EAECEE;}

table tbody {border-bottom: 1px solid #EAECEE;}
                      
table tbody td, table tbody th {padding: 10px; background: url("td_back.gif") repeat-x; text-align: left;}

td.right { text-align: right; }

table tbody tr {background: #F3F5F7;}

table tbody tr.odd {background: #F0F2F4;}

table tfoot td, table tfoot th, table tfoot tr {text-align: left; font: 120%  "Lucida Grande", "Lucida Sans Unicode", "Trebuchet MS", sans-serif; text-transform: uppercase; background: #fff; padding: 10px;}
