@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: #a58452;
      font: normal 11px 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: #404040;
    }

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.
*/
    body {
      margin: 0px;
      padding: 0px;
      color: #33332e;
      background: #674F29;
      font: normal 11px verdana, sans-serif;
      text-align: center;
    }



/* Logo size and image source */
/**/
#logo {
  width: 500px;
  height: 80px;
  background-image: url(images/logo2.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 */
/* NEU*/

.row.required {
  background: #DFE7BE;
}

#loginbar a {
  margin-top: 53px;
  padding: 10px 10px 0px 0px;
  color: #9f9f9f;
  font-weight: normal;
  display: block;
}

#loginbar a.in {
  background: transparent;
}
#loginbar a.out {
  background: transparent;
}




#ocwrapper {
  border-right-width: 0px;
}
#rightsidebar {
  display: none;
}
#contentheader .error, #contentheader .message {
  margin: 0px;
}

/* Change width of document */
/*
#wrapper {
  width: 100%;
}
*/


/*-----------------*\
|* NEU elements *|
\*-----------------*/
#content {
  margin: 1px 1px;
  padding: 4px;
  background: #fffff;
}


/* Don't want the shadows? */
/**/

.shadowtop, .shadowbottom {
  height: 0px;
  font-size: 1px;
  display: inline-block;
/* ie/mac fix \*/
  display: block;
/* end fix */
}
.shadowtopleft, .shadowtopright, .shadowbottomleft, .shadowbottomright {
  width: 1px;
  height: 1px;
  font-size: 1px;
}

.shadowtop, .shadowbottom, .shadowleft, .shadowright {
  background: #c0c0d0;
}
.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).  If you want to change the columns
on the home page as well, then remember to set a rule for "#home dl" as well. */
/**/
#category dl {
  width: 33%;
}
#home dl {
  width: 33%;
}


/*  NEU */
#contentheader {
  padding: 10px 10px 0px 10px;
  background: #EDF2CB;
}
#contentheader .error {
  background: #8c3030;
}
#contentheader .message {
  background: #3a5841;
}
#contentfooter {
  background: #EDF2CB;
}
#footer {
  margin-top: 3px;
  padding: 5px;
  border-top: 1px solid #57594b;
  background: #DFE7BE;
}

.searchbar {
  margin-bottom: 3px;
  padding: 5px 10px;
  border-bottom: 1px solid #57594b;
  background: #DFE7BE;
}


/*------------*\
|* navigation *|
\*------------*/
ul.primarynav {
  width: 100%;
  background: #49310B;
}
ul.primarynav a:hover {
  color: #ffffff;
  background: #58401A;
}
ul.primarynav li.home {
  border-right: 1px solid #ffffff;
  background: #3A2200;
}

/* links */
a {
  color: #0D0000;
}
a:visited {
  color: #3A2200;
}
a:hover {
  color: #3A2200;
  text-decoration: none;
}

hr {
height: 1px;
border-width: 1px 0 0 0;
border-style: dashed;
border-color: #BBBFA1;
}
.adresse, .linkdescription {
  margin: 0px 0px 5px 0px;
  padding: 5px;
  border: 0px;
  background: #f8faed;
  overflow: hidden;
}
.popular-item {
  background-color: #49310B;
}
/* search highlighting */
.searchhl-1, .searchhl-2, .searchhl-3, .searchhl-4, .searchhl-5 {
  font-weight: normal;
}
.searchhl-1 {
  background: #ffffc0;
}
.searchhl-2 {
  background: #d3d3ff;
}
.searchhl-3 {
  background: #ddffdd;
}
.searchhl-4 {
  background: #ffdddd;
}
.searchhl-5 {
  background: #ddffff;
}

