/**
   * This is the screen style sheet for SMUK
   *
   * @package SMUK
   * @author Francis Saul <francis@mummybot.com>
   * @version 2007-10-27
   
   * @change log
   
   
   * Contents
   ---------------------------------------------
   1. Structural styles
   2. Shared styles
   3. Left Column and navigation
   4. Right Column
	 5. IE 6 hacks
   
*/


/*------------------------------------------------------------------------
1. Structural styles ---------------------------------------------------*/
body{
  background: #000;
  height:100%;
  overflow-y: auto;
}
div#shell{
  width: 760px;
}
div#left_col{
  left: 0;
  position: fixed;
  width: 250px;
	top: 0;
}
div#right_col{
  margin: 20px 0 4em 290px;
  width: 470px;
}


/*------------------------------------------------------------------------
2. Shared styles -------------------------------------------------------*/
p, ul, ol, label, th, td{
  color: #fff;
  font-size: 1.2em;
}
td p, 
td td{
  font-size: 100%;
}
h1, h2, a{
  color: #ff9900;
}
.float{
  float: left;
	margin-right: 5px;
}


/*------------------------------------------------------------------------
3. Left Column and navigation ------------------------------------------*/
div#left_col h1{
  margin: 20px 0 0.5em 40px;
}
div#left_col ul,
div#left_col ul ul{
  list-style: none;
  margin: 0 0 3em;
  padding: 0;
}

div#left_col ul{
  margin-left: 90px;
}
div#left_col ul ul{
  font-size: 73%;
  margin: 0 0 0 10px;
}
div#left_col ul li{
  margin-bottom: 1.5em;
}
div#left_col ul li a{
  display: block;
  font-size: 1.7em;
  padding: 3px 5px;
  text-decoration: none;
  width: 150px;
}
div#left_col ul ul li{
  margin-bottom: 0;
}
div#left_col ul ul li a{
  width: 130px;
}
div#left_col ul li a:hover,
div#left_col ul li a.selected{
  background: url(../img/menu-glow.jpg) 0 center no-repeat;
  /*background: #ff9900;*/
  color: #feeed6;
}
div#left_col p{
  font-size: 1em;
  margin-left: 40px;
}


/*------------------------------------------------------------------------
4. Right Column --------------------------------------------------------*/
h1{
  margin-top: 57px;
}

/*------------------------------------------------------------------------
5. IE hacks ------------------------------------------------------------*/
* html{
  overflow-x:auto;
	overflow-y:hidden;
}
* html div#left_col{
  position: absolute;
}