@import url(luna_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 verdana, tahoma, geneva, sans-serif;
      text-align: center;
    }
/*

/* links */
a {
  color: blue;
}
a:visited {
  color: #8e8d9a;
}
a:hover {
  color: #5c5b66;
  text-decoration: none;
}
/*
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 verdana;
    }

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: 630px;
  height: 98px;
  background-image: url(../../pages/images/newpressbox/logo.gif);
}

#header {
  background: none;
}

/* 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;
 border-color: #ffffff;
  background: #ffffff;
}


#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 */

#home #ocwrapper {
  border-right-width: 310px;
}
#home #rightsidebar {
  margin-right: -310px;
  width: 300px;
  display: block;
}

#home #contentheader .error, #home #contentheader .message {
  margin: 0px 310px 0px 310px;
}

#detailed #ocwrapper {
 
  border-right-width: 180px;
}
#detailed #rightsidebar {

  margin-right: -180px;
 padding-left: 10px;
 padding-right: 0px;

  width: 160px;
  display: block;
}

#detailed #contentheader .error, #detailed #contentheader .message {
  margin: 0px 180px 0px 180px;
}


/* Change width of document */

#wrapper {
  width: 650px;
}

.searchbar {
  margin-bottom: 3px;
  padding: 5px 10px;
  border-bottom: 1px solid #57594b;
  background: #ffffff;
}
#footer {
  margin-top: 3px;
  padding: 5px;
  border-top: 1px solid #57594b;
  background: #ffffff;
}
.new-item {
  background-color: #ffffff;
  color: #000000;
}
.updated-item {
  background-color: #ffffff;
  color: #000000;
}
/* Don't want the shadows? */
/*
.shadowtop, .shadowbottom, .shadowleft, .shadowright {
  background: none;
  padding: 0px;
  margin: 0px;
}
.shadowtopleft, .shadowtopright, .shadowbottomleft, .shadowbottomright {
  width: auto;
  height: auto;
  float: none;
  background: none;
  padding: 0px;
  margin: 0px;

}
*/

/* 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%;
}
*/

/*      Menu unvisited links                                                    */
a.menulink:link {
color: #6633FF;
background: #FFFFFF;
}

/*      Menu visited links                                                      */
a.menulink:visited {
color: #993399;
background: #FFFFFF;
}

/*      Menu active links (not widely supported)                                */
a.menulink:active {
color: #FF6666;
background: #FFFFFF;
}

/*      Menu links when hovered over (MSIE only)                                */
a.menulink:hover {
color: #FF6666;
background: #FFFFFF;
}

/* forms */
.row {
  margin-bottom: 1px;
  padding: 4px;
}
.row label.name {
  padding-right: 5px;
  width: 25%;
  float: left;
  color: #AD314A;
  font-family: verdana;
  font-weight: bold;
  font-size: 15px

}
.row label.name span {
  color: #8c3030;
}
.row .value.wrappedtext {
  margin-left: 25%;
  padding-left: 5px;
}
/* hack for ie 5.5 text/textarea resizing */
.row .value input.text, .row .value input.password, .row .value textarea {
  width: expression(this.parentNode.offsetWidth * 0.74 + 'px');
}
/* the previous style causes problems with long sidebars in ie6 */
.row .value input.text, .row .value input.password, .row .value textarea {
  w\idth: 72%;
}
.row .value input.text.shorttext {
  width: 100px;
}
.row.required {
  background: #e2e1eb;
}
.row.invalid {
  color: #8c3030;
  background: #eedddd;
  font-weight: bold;
}
.formsubmit {
  margin-top: 10px;
  text-align: right;
}

.empty_bar {
  width: 630px;
  height: 10px;
  background: #5080A0;
}

.shadowtop {
  background: none;
}
.shadowbottom {
  background: none;
}
.shadowleft {
  background: none;
}
.shadowright {
  background: none;
}
.shadowtopleft {
  float: left;
  background: none;
}
.shadowtopright {
  float: right;
  background: none;
}
.shadowbottomleft {
  float: left;
  background: none;
}
.shadowbottomright {
  float: right;
  background: none;
}

.linklisting .linkdescription, .review .reviewcontent {
  margin: 0px 0px 5px 0px;
  padding: 5px;
  border: 1px solid #ffffff;
  background: #ffffff;
  overflow: hidden;
}

#content {
  margin: 0px 0px;
  padding: 0px;
  background: #ffffff;
}
h2 {
  font-size: 16px;
  color: #666699;
 
}

.h2small {
  font-size: 10px;
 font-weight: normal;
  color: #666699;
 
}

.description {
  font-size: 12px;
  color: #000000;
  
}

.crumb_detailed {
  font-size: 12px;
 background: url('images/bg_h.jpg');
 padding: 5px;
  color: #663300;
  font-weight: bold;
}


#category dl, #home dl {
  margin: 0px 0px 0px 0px;
  padding: 0px;
  width: 49%;
  float: left;
}

#category dt, #category dd, #home dt, #home dd {
  margin: 0px 0px 0px 0px;
}


#contentheader {
  padding: 10px 10px 0px 10px;
  background: #ffffff;
}
/*#e2e1eb*/
#contentheader .error, #contentheader .message {
  margin: 0px 200px 0px 0px;
  padding: 2px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 12px;
  text-align: center;
}
#contentheader .error {
  color: red;
  font-weight: bold;
  font-size: 16px;
  background: #ffffff;
}
#contentheader .message {
  background: #3a5841;
}
#contentheader .error *, #contentheader .message * {
  margin: 0px;
  padding: 0px;
}

