@import url(luna_core.css);



    body {

      background: #E3F4E3;

      background-image: url('http://www.aucoupons.com/static/back.gif')

    }

    

/* links */

a {

  color: #3B3F38;

}

a:visited {

  color: #3B3F38;

}

a:hover {

  color: #5c5b66;

  text-decoration: none;

}




#ocwrapper {
/* background colour of left sidebar */
  border-left: 0px solid #75C589;
/* background colour of right sidebar */
  border-right: 200px solid #75C589;
  background: #75C589;
}
.linklisting p.linkactions a:hover, #detailed p.actions a:hover, #jump_frame .actions a:hover {
  background: #75C589;
}
.row.required {
  background: #75C589;
}
#contentheader {
  padding: 10px 10px 0px 10px;
  background: #75C589;
}
#contentfooter {
  background: #75C589;
}



#ocwrapper {

  border-left-width: 200px;

}

#leftsidebar {

  display: block;

}

#contentheader .error, #contentheader .message {

  margin: 0px 200px 0px 200px;

}

#contentheader .error {

  background: #6EB901;

}


#category dl, #home dl {

  margin: 10px 5px 5px 5px;

  width: 90%;

  float: left;

}

#category dt a {

  font-weight: bold;

  font-size: 12px;   

  text-decoration:none

}

#category dt, #category dd, #home dt, #home dd {

  margin: 5px 5px 5px 20px;

}

#category dd, #home dd {

  padding-bottom: 10px;

}


#ocwrapper {

  border-right-width: 0px;

}

#rightsidebar {

  display: none;

}

#contentheader .error, #contentheader .message {

  margin: 0px;

}


#home dl {

  width: 99%;

}



.searchbar {

  margin-bottom: 3px;

  padding: 5px 10px;

  border-bottom: 1px solid #57594b;

  background: #4EC26B;

}





.shadowtop, .shadowbottom, .shadowleft, .shadowright {

  background: none;

}

.shadowtopleft, .shadowtopright, .shadowbottomleft, .shadowbottomright {

  width: auto;

  height: auto;

  float: none;

  background: none;

}










#footer {

  margin-top: 3px;

  padding: 5px;

  border-top: 1px solid #57594b;

  background: #4EC26B;

}





#footer p {

  margin: 0px;

  padding: 10px 0px;

  color: #424242;

  font-size: 9px;

}



#logo {

  width: 215px;

  height: 136px;

  background-image: url(http://www.aucoupons.com/static/au-coupons.png);

}



#loginbar a {

  margin-top: 25px;

  padding: 10px 30px 10px 0px;

  color: #FFFFFF;

  font-weight: bold;

  display: block;

}

/* these colours are the same as defined by 'a', but we unset a:visited */

#loginbar a:hover {

  color: #4EC26B;

}



#loginbar a.in {

  background: transparent url(http://www.aucoupons.com/static/lock.gif) center right no-repeat;

}

#loginbar a.out {

  background: transparent url(http://www.aucoupons.com/static/lock.gif) center right no-repeat;

}



/*

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: 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;

}

*/



/* 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: 150px;

}

#rightsidebar {

  margin-right: -150px;

  width: 140px;

}

#contentheader .error, #contentheader .message {

  margin: 0px 150px 0px 0px;

}

*/



/* 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).  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%;

}

*/


/*------------*\
|* navigation *|
\*------------*/
.navbar {
  margin-bottom: 1px;
}
ul.primarynav, ul.secondarynav {
  margin: 0px;
  padding: 0px;
  border-bottom: 1px solid #ffffff;
  float: left;
  list-style: none;
}
ul.primarynav {
  width: 100%;
  background: #FB561F;
}
ul.secondarynav {
  width: 100%;
  background: #F464A3;
}
ul.primarynav a:hover {
  color: #ffffff;
  background: #53E176;
}
