@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.
*/
body{
color:#330099; margin: 0; padding: 0;
background: #FFFFFF url(/images/inback.gif);
 background-repeat : repeat-y;
font-size: 16px;
}

html, body, table, td, th, h1, h2, h3, h4, h5, h6, p, a, span, div {
font-family:Verdana, Arial, Helvetica, Geneva, sans-serif;
}

/* 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: 40px;
  border-left-color: #66CCFF;
}
#leftsidebar {
  display: block;
}
#contentheader .error, #contentheader .message {
  margin: 0px 40px 0px 40px;
}


/* 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%;
}
*/


#header {
  background: none;
  text-align: center;
}

.bkg_turquoise { background-color: #66CCFF; }

#ocwrapper {


  background: #ffffff;
}


/*--------*\
|* footer *|
\*--------*/
#footer {
  margin-top: 0px;
  padding: 0px;
  border-top: none;
  background: none;
}
#footer img {
  float: none;
}
#footer p {
  margin: 0px;
  padding: 10px 0px;
  color: #8a8d77;
  font-size: 12px;
}

a, a:link{color:#330099; text-decoration:underline;font-size: 16px; }
a:visited{color:#966000;font-size: 16px;}
/* NS4 won't see these but other browsers will. No problem. */
a:hover{color:#c00000; text-decoration:none;font-size: 16px; }
a:active{color:#f00000; text-decoration:none;font-size: 16px; }

.bkg_darkgray { background-color: #666666; }
.bkg_pink { background-color: #FFCCCC; }
.bkg_turquoise { background-color: #66CCFF; }

/*	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;
}
/*	Links unordered lists							*/
ul {
margin-left: 60px;
list-style: disc;
color: #000000;
background: #FFFFFF;
}

/*	The link description							*/
span.descript {
font-size: small;
color: #333333;
background: #FFFFFF;
}

/*	New links								*/
sup.new {
font-size: x-small;
color: #FFFFFF;
background: #FF3300;
font-weight: bold;
}

/*	Popular links								*/
sup.pop {
font-size: x-small;
color: #FFFFFF;
background: #00CCFF;
font-weight: bold;
}

/*	Links date and hits							*/
small.date {
font-size: x-small;
color: #666666;
background: #FFFFFF;
}

/*	Number of links in categories						*/
small.numlinks {
font-size: x-small;
color: #666666;
background: #FFFFFF;
}

/*	This class is for "Looking for something in particular?"		*/
strong.search {
color: #000000;
background: #FFFFFF;
font-weight: bold;
}

/*	This class is for "More options"					*/
small.more {
font-size: small;
color: #000000;
background: #FFFFFF;
font-weight: normal;
}

/*	This is for main headers on all pages *apart* from the home page	*/
h1 {
font-size: large;
font-weight: bold;
border: none;
color: #FFFFFF;
background: #000000;
}

/*	This class is for the main header on the Links home page		*/
h1.home {
font-size: x-large;
font-weight: bold;
border: none;
color: #FFFFFF;
background: #000000;
}

/*	This class is for the error messages					*/
strong.error {
color: #FFFFFF;
background: #FF3300;
font-weight: bold;
}

/*	This is used for the sub headers					*/
h2 {
font-size: medium;
font-weight: bold;
border: none;
color: #FFFFFF;
background: #000000;
}

/*	This is for the margin for the form elements				*/
div.margin {
margin-left: 60px;
}

/*	This is for page $title_linked						*/
strong.title {
font-size: small;
font-weight: bold;
color: #000000;
background: #FFFFFF;
font-family: "verdana", "arial", "geneva", sans-serif;
}

/*	This is  for Category Listings table cells				*/
td.catlist {
font-size: medium;
color: #000000;
background: #FFFFFF;
font-family: "verdana", "arial", "geneva", sans-serif;
}

/*	Preformatted text							*/
pre {
margin-left: 60px;
font-size: small;
font-weight: bold;
color: #000000;
background: #FFFFFF;
}

/*	This is for the page last updated text					*/
small.update {
font-size: x-small;
font-weight: bold;
color: #999999;
background: #FFFFFF;
font-family: "verdana", "arial", "geneva", sans-serif;
}

/*	This is for the total number of links					*/
p.grandtotal {
margin-left: 60px;
font-size: medium;
font-weight: bold;
color: #000000;
background: #FFFFFF;
font-family: "verdana", "arial", "geneva", sans-serif;
}

.copyright, td.copyright, a.copyright, .copyright:link, 
.copyright:visited, .copyright:hover, .copyright:active {font-size: 10px;
color: #330099;
}

.crumb {
  font-size: 16px;
 font-weight: bold;
}

/* lists */
#content ul {
  margin: 10px 0px 0px 20px;
  padding: 0px;
  font-size: 16px;
  list-style: disc;
}
#content ul.categories {
  margin: 0px;
}

#home dl {
  width: 40%;
}

#home dl.google {
  width: 20%;
}

