@import url(luna_core.css);

/*
This file inherits from luna_core.css

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;
    }

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 .htm extension).  So if you want to change the h2 heading in the
home.htm template, you can do this by:

    #home 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: 250px;
  height: 80px;
  background-image: url(images/logo.gif);
}
*/

/* 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;
}
*/

/* Change width of document */
/*
#wrapper {
  width: 750px;
}
*/

/* Don't want the shadows? */
/*
.shadowtop, .shadowbottom, .shadowleft, .shadowright {
  background: none;
}
.shadowtopleft, .shadowtopright, .shadowbottomleft, .shadowbottomright {
  width: auto;
  height: auto;
  float: none;
  background: none;
}
*/


/*** Custom Changes Here ***/


/*---------------*\
|* contentheader *|
\*---------------*/
#contentheader {
  background: #F1EEE6;
}

/*---------------*\
|* contentfooter *|
\*---------------*/
#contentfooter {
  background: #F1EEE6;
}

/*---------*\
|* content *|
\*---------*/

#ocwrapper {
/* background colour of left sidebar */
  border-left: 170px solid #F1EEE6;
  background: #F1EEE6;
/* background colour of right sidebar */
  border-right: 0px solid #F1EEE6;
  background: #F1EEE6;
}

#leftsidebar {
  background: #F1EEE6;
}

.row .description {
  background-color: #F1EEE6;
}
/*forms*/

.row.required, .row.highlighted {
  background: #F1EEE6;
}

.compose-actions {
  background-color: #DED7C5;
}

.compose-actions#bottom_compose_actions {
  background-color: #DED7C5;
}

.compose #lower_options {
  background-color: #E6DFD0;
}

#compose_option_wrapper #compose_options {
  background-color: #F1EEE6;
}

#attachment_list tr {
  background: #E6E0D2;
}

#attachment_list td {
  border-bottom: 1px solid #C0B492;
}

#msgs_body .message-header {
  background-color: #F1EEE6;
}

#msgs_body .message-command-bar {
  background: #E6DFD0;
}

/*------------------------------*\
|* toolbar (actions and paging) *|
\*------------------------------*/
.toolbar {
  background: #E6E0D2;
}

#folders #folder_menu tr.selected, div.suboption-table table.option-menu tr.selected {
  background-color: #DED7C5;
  font-weight: bold;
}

#folders #folder_menu #folder_panel, .suboption-table .option-menu .option-panel {
  background-color: #F1EEE6;
}

/*--------*\
|* footer *|
\*--------*/
#footer {
  border-top: 1px solid #57594b;
  background: #6C6356;
  margin-top: 0px;
  padding: 0 ;
}

#addresses .value {
  height: 155px;
  width: 480px;
}
#addresses select, #address .address-form select {
  width: 400px;
  height: 150px;
}

#leftsidebarnoauth {

  margin-left: -170px;
  padding: 10px 0px 0px 18px;
  width: 170px;
  float: left;
  position: relative;
  font-size:9px;
  font-family:Verdana;
  text-align:left;
}
