/**
 * jobs css
 */
.local_nav 
{
	font-weight: bold;
}
ul.subnav  {
}
ul.subnav li {
	display: inline;
	margin-right: 20px;
	font-weight: bold;
}
p.add_link  
{
	margin: 10px;
}
dl dt 
{
	font-weight: bold;
	margin-bottom: 4px;
}
dl dd 
{
	margin-bottom: 4px;
}
.job_details_hidden 
{
	visibility: hidden;
	display: none;
}
.job_details_visible 
{
	visibility: visible;
	display: inline;
}
a 
{
	color:#f26c20;
}
p
{
	margin: 0px;
	padding: 0px;
	width: 95%;
}
/******************************************************************************
 * data_table
 *****************************************************************************/
.data_table 
{
	width: 100%;
	margin-top: 20px;
}
.data_table tr td 
{
	padding: 5px;
}
.data_table tr.thead td {
	background-color: #ccc;
	font-weight: bold;
}
.data_table tr.thead td a {
	color: #fff;
	padding: 0px 15px;
}
.data_table tbody {
	background-color: #fff;
	text-align: left;
	vertical-align: top;
}
.data_table tbody tr.even {
	background-color: #eee;
}
.data_table tbody tr.ruled {
	background-color: #999;
	color: #fff;
}
.data_table tbody tr.ruled a {
	background-color: #999;
	color: #fff;
}
.data_table tfoot {
	background-color: #ccc;
	text-align: center;
}
.data_table tfoot a {
	color: #000;
}
.data_table tfoot a:hover {
	color: #999;
}

/******************************************************************************
 * errors & messages
 *****************************************************************************/
.validation_errors 
{
	padding: 5px;
	border: 2px #ccc solid;
	background-color: #eee;
	width: 95%;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
	color: #f26c20;
}
.validation_errors ul 
{
	margin: 10px;
}
.validation_errors ul li 
{
	margin-left: 20px;
	list-style-type: disc;
}
hr 
{
	border: 1px #ccc solid;
}
#messages 
{
	padding: 5px;
	border: 2px #ccc solid;
	background-color: #eee;
	width: 95%;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
	color: #f26c20;
	text-align: center;
}
#messages span
{
	color: #f26c20;
	background-color: #eee;
}

.instructions 
{
	font-style: italic;
	margin: 10px;
}
/******************************************************************************
 * fieldsets
 *****************************************************************************/
form fieldset input.right 
{
}
form fieldset ul.instructions  
{
	list-style-type: disc;
}
form fieldset ul.instructions li 
{
	margin-left: 20px;
}
form fieldset fieldset label
{
	width: 184px; 
}
form fieldset {
	  /* clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
	  border-color: #ccc;
	  border-width: 1px;
	  border-style: solid;
	  padding: 10px;        /* padding in fieldset support spotty in IE */
}

form fieldset fieldset, form fieldset dl, form fieldset div fieldset
{
	margin: 0;
	margin-bottom: 10px;
}
 
form fieldset legend {
	font-weight: bold;
	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  */
}

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

form fieldset table label, form fieldset table input 
{
	display: inline;
	margin: 0;
	float: left;
	width: auto;
}

form input, form textarea, 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:5px 0 0 0px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}

form textarea {
	height: 200px;
	width: 350px;
}

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

textarea { overflow: auto; }

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%;
}

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

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


/******************************************************************************
 * fieldset with labels on top of field
 *****************************************************************************/
form fieldset.horizontal label { 
	display: block;  /* block float the labels to left column, set a width */
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: left; 
}
form fieldset.horizontal input, form fieldset.horizontal textarea, form fieldset.horizontal 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:5px 0 0 10px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}