@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 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);
}
*/

/* logo size and image source */

/*--------*\
|* header *|
\*--------*/
#logo {
  width: 400px;
  height: 60px;
  background-image: url(images/); 
/*  background: transparent url(images/logo.gif) top left no-repeat; */
  text-indent: 0px;
}

#logo h1, #logo a {
  margin: 0px;
  width: 100%;
  height: 100%;
}
#logo a {
  text-decoration: none;
  display: block;
  font-size:	30px;
  padding-top:	20px;
}


/* show the left sidebar */

/*
#ocwrapper {
  border-left-width: 180px;
}
*/
#leftsidebar {
  margin-left: -200px;
  padding: 10px 0px 10px 10px;
  width: 190px;
  float: left;
  position: relative;
/* hide the left sidebar by default */
  display: none;
}

#home #leftsidebar {
  margin-left: -165px;
  padding: 10px 5px 10px 0px;
  width: 160px;
  float: left;
  position: relative;
  display: block;
}


/*
#leftsidebar {
  float: left;
  padding-left: 30px;
  width: 160px;
  display: block;
}
*/

#contentheader .error, #contentheader .message {
  margin: 0px 180px 0px 0px;
}
#home #contentheader .error, #contentheader .message {
  margin: 0px 180px 0px 180px;
}



/* 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 padding, hence the 150px - 10px = 140px width */
#ocwrapper {
  border-right-width: 170px;
}
#rightsidebar {
  margin-right: -170px;
  width: 160px;
}
#contentheader .error, #contentheader .message {
  margin: 0px 170px 0px 0px;
}

/*
#home #ocwrapper {
  border-right-width: 226px;
}
#home #rightsidebar {
  margin-right: -226px;
  width: 206px;
}
#home #contentheader .error, #contentheader .message {
  margin: 0px 226px 0px 0px;
}
*/

#home #ocwrapper {
  border-right-width: 170px;
}
#home #rightsidebar {
  margin-right: -170px;
  width: 160px;
}
#home #contentheader .error, #contentheader .message {
  margin: 0px 170px 0px 0px;
}

#pugdog_content {
  margin: 15px;
 }


/* 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;
}
*/



/*
This file is loaded after core.css, so styles in this file will override
styles defined in core.css.  Changes to this file will NOT be overwritten
during upgrades.
*/


/*

In every case, the "caption" text is a span element inside the actual hyperlinks. Here's one example from the source of this document: 

<a href="http://www.meyerweb.com/eric/css/">Links<span>A collection of things which interest me, and might interest you</span></a> 

*/

/* To prevent the text from showing up when the page loads,		*\
\* I have the following style:									*/
																	
a span {
	display: none;
}

/* So they're gone, removed entirely from the document flow. 
   Bringing them back, then, is a simple matter of switching 
   the display to block and positioning the element whenever 
   the associated link is hovered over with the mouse pointer.
   Thus we get the first two lines of this rule:				*/

div#navbar a:hover span {
	display: block;
	position: absolute; 
	top: 120px; 
	right: 20%; 
	width: 50%;
	padding: 5px; 
	margin: 10px; 
	border: 5px double red;
	z-index: 100;
	color: #AAA; 
	background: black;
	font: 10px Verdana, sans-serif; 
	text-align: center;
}

/*
  The last three lines relate to how the element will be 
  styled when it appears, but the first two cause it to be 
  made visible (display: block;) and position it appropriately. */

/*	Want to have even more fun? How about icons that appear on rollover? */

/*	A Minor Side Note	*/

/* Notice how the hyperlinks appear to overlay the main-content 
   border, and how that overlap really lights up when you're 
   hovering over a link but still has a gray stripe down the 
   middle of the overlap. That's done with nothing more complicated
   than a border on the hyperlinks themselves, the color and style 
   of which change during the hover:							*/

div#navbar a:hover {
	color: #411; 
	background: #AAA;
	border-right: 5px double white;
	border-left: 5px double white;
}

/*  This effect works because I set up everything so the borders on 
    the hyperlinks actually overlaps the border of the main content 
	area. Because I'm positioning these elements using pixel measures, 
	I can get things to line up appropriately and then style them however 
	I like. it's a bit of a trick, of course-- by sticking to shades of 
	gray, it's easier for me to create translucency effects. Someone with
	a sufficiently keen color sense could probably come up with better 
	stuff than I did. (Like not putting light text on a dark background,
	for starters.) 
*/





/*--------*\
|* link   *|
\*--------*/

#linkwrapper {
}

#linkimagewrapper {
  width: 120px;
  height: 90px;
/*  width: 122px;
  height: 92px;
  border: 1px solid #000000;
  background: white url(images/logo_image_place_holder_blob_140x130.gif) top left  no-repeat; */
  float: right;
  margin: 3px;
  display: block;
}

#linkdescriptionwrapper {
  width: 390px;
  float: left;
  display: block;
}

#linktitlewrapper {
	width: 100%;
	display: block;
}


/* links */
.linklisting {
  margin: 15px 0px 20px 20px;
  display: block;
}
.linklisting h4.linktitle, .linklisting p.linkurl, .linklisting p.linkrating {
  margin: 2px 0px;
}
.linklisting h4.linktitle a {
  padding-bottom: 0px;
}
.linklisting p.linkurl a {
  font-size: 9px;
  text-decoration: none;
}
.linklisting p.linkrating {
  font-size: 9px;
}
.linklisting p.linkrating .linkexpired {
  color: #8c3030;
  font-weight: bold;
}
.linklisting .linkdescription, .review .reviewcontent {
  margin: 0px 0px 5px 0px;
  padding: 5px;
  border: 1px solid #bbbfa1;
  background: #f8faed;
  overflow: hidden;
}
/* overflow: hidden doesn't work in ie unless the width is set */
* html .linklisting .linkdescription, * html .review .reviewcontent {
  width: 96%;
}
.linklisting p.linkactions {
  margin: 0px 0px 10px 0px;
}
.linklisting p.linkactions a, #detailed p.actions a, #jump_frame .actions a {
  padding: 1px 4px;
  border: 1px solid #bbbfa1;
  border: 2px solid #bbbfa1;
  font-size: 9px;
  text-decoration: none;
  display: inline;
}
.linklisting p.linkactions a:hover, #detailed p.actions a:hover, #jump_frame .actions a:hover {
  background: #e2e1eb;
}
