@import url(jobs_core.css);

/*
This file inherits from luna_core.css, so styles in this file will override
styles defined in it.  Changes to this file will NOT be overwritten during
upgrades.

Here's a quick tutorial on overriding styles.  Say you want to change the
background colour of the body.  Looking at luna_core.css, the colour is
defined in the rule:

    body {
      margin: 0px;
      padding: 0px;
      color: #33332e;
      background: #ffffff;
      font: normal 11px tahoma, geneva, verdana, sans-serif;
      text-align: center;
    }

To change the background colour of white (#ffffff) to gray (#dddddd), you would
add the following to this file:

    body {
      background: #dddddd;
    }

If you also wanted to change the font as well as the background, then you could
use:

    body {
      background: #dddddd;
      font: normal 12px times new roman;
    }

Also note that every template's body id is assigned the template name (without
the .html extension).  So if you want to change the h2 heading in the
category.html template, you can do this by:

    #category h2 { 
      color: red; 
      font-weight: bold; 
    }

To start you off, some sample overriding styles have been provided below.  Note
that you will have to uncomment the rules for them to work.
*/

/* Logo size and image source */

#logo {
  width: 770px;
  height: 105px;
  background-image: url(images/adr_header5.jpg);
}

/* If the height of your logo changes from the original, then you will probably
want to also change the vertical position of the login link */
/*
#loginbar a {
  margin-top: 25px;
}
*/

/* Show the left sidebar */
/*
#ocwrapper {
  border-left-width: 200px;
}
#leftsidebar {
  display: block;
}
#contentheader .error, #contentheader .message {
  margin: 0px 200px 0px 200px;
}
*/

/* Hide the right sidebar */
/*
#ocwrapper {
  border-right-width: 0px;
}
#rightsidebar {
  display: none;
}
#contentheader .error, #contentheader .message {
  margin: 0px;
}
*/

/* Change the right sidebar width.  Note that the sidebars have a 10px left or
right padding (left sidebar has a left padding and right sidebar has a right
padding), hence the 150px - 10px = 140px width */

#ocwrapper {
  border-right-width: 285px;
}
#rightsidebar {
  margin-right: -280px;
  padding: 10px 0px 10px 5px;
  width: 268px;
}
#contentheader .error, #contentheader .message {
  margin: 0px 280px 0px 0px;
}

#content ul {
  margin: 0px 0px 0px 0px;
  padding: 0px;
}

/* sub Nav */

div.snav {
	width: 753px;
	height: 25px;
	margin-bottom: 10px;
	background: #F07800;
/*
	background: #A32D2D;
*/
}

ul.sub_nav {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sub_nav li {
	float: left;	
	white-space: nowarp;
	width: 24%;
}

.sub_nav a {
	display: block;
	color: #ffffff;
/*
	background: #F07800 url(images/arrow2.jpg) 1px 10px no-repeat !important;
	background: #F07800 url(images/arrow2.jpg) 1px 11px no-repeat;
*/
	text-decoration: none;
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	padding: 4px 0px 0px 0px;
}

.sub_nav a:visited {
  color: #ffffff;
}

.sub_nav a:hover {
  color: #ffffff;
	border-left: 0px solid #F07800;
	background-position: 5px 10px !important;
	background-position: 5px 11px;
	text-decoration: underline;
}

#content div.cbody {
	border: 1px solid #F07800;
	margin-bottom: 10px:
	padding: 0px;
}

#content div.cbody h1 {
	display: block;
	background:#F07800;
	width: 98%;
	height: 23px;
	line-height: 10px;
	font-size: 15px;
	font-weight: bold;
	text-align: left;
	margin: 0px:
	padding-top: 3px;
	color: #fff;
}

#content div.cbody2 {
/*
	float: left;  
	position: relative;
*/
	border: 1px solid #A32D2D;
	margin-top: 20px:
	padding: 0px;
}

#content div.cbody2 h1 {
	display: block;
	background:#F07800; 
	width: 98%;
	height: 23px;
	line-height: 10px;
	font-size: 15px;
	font-weight: bold;
	text-align: left;
	margin: 0px:
	padding-top: 3px;
	color: #000;
}

.jobs_cat {
	padding-bottom: 3px;
}

.float_box {
	float: left;
	padding-left: 5px;
	/* width: 50% !important; */
	width: 48.7%;
	border-bottom: 1px dashed #A32D2D;
}

.right_bar {
	border-right: 1px dashed #A32D2D;
}

.full_box {
	/* float: left; */
	width: 98%;
	margin: 5px 0px;
	text-align: center;
	font-weight: bold;
}

/* Change width of document */
/*
#wrapper {
  width: 95%;
}
*/

/* Don't want the shadows? */

.shadowtop, .shadowbottom, .shadowleft, .shadowright {
  background: none;
}
.shadowtopleft, .shadowtopright, .shadowbottomleft, .shadowbottomright {
  width: auto;
  height: auto;
  float: none;
  background: none;
}


/* If you change the globals category_cols or home_category_cols, then you will
need to change the width of the columns themselves.  Note that IE sometimes has
problems if this value adds up to 100%, so keep the width a little under 100%.
For example, if you changed category_cols to 3, then this example would set
the width of the columns to 33% (99% total). */
/*
#category dl {
  width: 33%;
}
*/
.title h1 {
  font-size: 30px;
  font-family: Arial Black;
}

h1 {
  /* height: 100px; */
  font-size: 13px;
}


h3 {
  /* height: 100; */
  font-size: 13px;
}

h2 {
  font-size: 15px;
  padding-left: 5px;
}

ul {
  margin: 5px;
  list-style-position: outside;
  /* list-style-image: url(images/bullet2.gif); */
  list-style-type: square;
  padding-left: 15px;
}

#content p {
  padding: 0px 0px 0px 5px;
}

#content h3
{
  height: 33px;
  padding: 10px 0px 0px 10px;
  background: url(images/adr_table_header.jpg) top left no-repeat;
}

#content h1
{
  margin: 0px;
  height: 33px;
  padding: 10px 0px 0px 10px;
  background: url(images/adr_table_header.jpg) top left no-repeat;
}

#content h4 {
  padding-left: 5px; 
}

.content_table
{
  width: 490px;
  margin: 0px 0px 0px 0px;
  padding-bottom: 5px;
  border: 1px solid #CFBAA5;
  background-color: #F7F2E7;
}

#back_table {
  font-size: 13px;
}

.content_table_back
{
  margin: 0px 0px 0px 0px;
  padding-bottom: 5px;
  border: 1px solid #CFBAA5;
  background-color: #F7F2E7;
}

#back_table p {
  padding: 0px 0px 0px 5px;
}

.indent {
  padding: 0px 0px 0px 20px;
}

.content_header
{
  height: 33px;
  font-weight: bold;
  padding: 10px 0px 0px 10px;
  background: url(images/adr_table_header.jpg) top left no-repeat;
}

.content_header_long
{
  height: 33px;
  font-weight: bold;
  padding: 7px 0px 0px 10px;
  background: url(images/adr_table_header_long.jpg) top left no-repeat;
}

.right_header
{
  height: 33px;
  font-weight: bold;
  color: #000000;
  padding: 10px 0px 0px 10px;
  background: url(images/adr_right_table_header2.jpg) top left no-repeat;
}

.white_header
{
  height: 33px;
  font-weight: bold;
  color: #FFFFFF;
  padding: 10px 0px 0px 10px;
  /* background: url(images/adr_right_table_header.jpg) top left no-repeat; */
}

.right_body
{
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 10px 0px;
  border: 1px solid #511616;
}

#wrapper {
  margin: 0px auto;
  width: 770px;
  text-align: left;
}

#ctab {
  padding-left: 5px;
}

.crumb {
  font-size: 12px;
  padding-left: 5px;
}

.detailed {
  float: left;
  /* position: relative;
  border: 1px solid #CFBAA5;
  height: 160px; */
  width: 250px;
  text-align: center;
}

.detailed_side {
  /* border: 1px solid #CFBAA5;
  float: right;
  position: relative; */
  width: 200px;
  margin-left: 255px;
}

.disc {
  /* float: left; */
  margin-top: 35px;
}

/* links */

.linklisting .linkdescription, .review .reviewcontent {
  margin: 0px 0px 5px 0px;
  padding: 5px 5px 5px 10px;
  border: 1px solid #6F3200;
  background: url(images/listing_bg.jpg) top left;
  overflow: hidden;
}

.linkdescription hr {
  border-style: dashed;
}

.linkdescription img {
  max-width: 102px;
  max-height: 102px;
  background: #FFFFFF;
  border: 1px solid #6F3200;
}

.detailed img {
  background: #FFFFFF;
  border: 1px solid #6F3200;
}

h4.linktitle {
  margin: 0px 0px 5px 0px;
  padding: 0px;
  color: #000000;
  font-size: large;
  font-stretch wider;
}

.linklisting p.linkactions {
  margin: 0px;
}
.linklisting p.linkactions a, #detailed p.actions a, #jump_frame .actions a {
  padding: 1px 4px;
  border: 1px solid #5D2300;
  background: #834B12;
  font-size: 12px;
  color: #ffffff;
  text-decoration: none;
}
.linklisting p.linkactions a:hover, #detailed p.actions a:hover, #jump_frame .actions a:hover {
  background: #E09951;
}

.linklisting {
  margin: 10px 6px 10px 6px;
}

.short_disc {
  display: block;
  width: 325px;
}

/* Form */

.row label.name span {
  color: #7F4B1C;
}

.row.required {
  background: #F8CB66;
}

td.form_header {
  background-color: #F0F0F0;
  text-align: left;
}

table.resume_form {
/*
  width: 486px;
*/
  width: 100%;
  border-style: none;
  position: relative;
  left: -1px;
}

/* Message .msg */
div.msg {
  margin-left: 2px;
}

/* General classes to replace deprecated HTML attributes */

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.job_desc {
  margin: 3px 4px;
}

.email_help_text {
  margin: 0 2px;
}

.sc-title {
  padding: 10px 0;
  margin: 10px 0;
}

.boxes {
  width: 100%;
}

.boxes h1 {
  color: #ffffff;
	font-size: 15px;
}

.halfbox_left {
	border: 1px solid #F07800;
	margin-bottom: 10px:
  padding: 3px;
  width: 49%;
}

.halfbox_right {
	border: 1px solid #F07800;
	margin-bottom: 10px:
  padding: 3px;
	width: 49%;
	float: right;
}

.orange_header {
  background: #f07800;
	padding: 0 0 10px 0;
	height: 23px;
  line-height: 10px;
  max-height: 23px;
  overflow: hidden;
}

.box_padding {
  padding: 3px;
}

.bottom_padding {
  padding-bottom: 5px;
}

.profile_description {
  padding: 6px;
  background: #E6EEFF;
}

#menulist {
  font-size: 13px;
  font-weight: normal;
}
