/*****
*
* Name:     screen.css
* Author:   Robert Sherwood
* Email:    rwslondon@yahoo.co.uk
* Created:  2010-11-21
*
*****/


/*****
* general
*****/

* {
  padding: 0em;
  margin: 0em;
}

body {
  font-size: .9em;
  font-family: Verdana, Arial, "sans serif", Geneva, Helvetica, "Palatino Linotype";
  color: #000;  
  background: #eeeeee url("../img/background/background.png") repeat-x;  
}

* a  {
  text-decoration: none;
}

* a:link,
* a:visited {
  color: #555;
}

* a:hover,
* a:active {
  color: #000;
  background-color: #cdddf6;
  text-decoration: underline;
}

* .selected {
  color: #000;
  background-color: #cdddf6;
}


/*****
* container
*****/

#container {  
  width: 69.4em;
  margin: 2em auto;
  background: #fff; 
}

#container:after {
  clear: both;
  content: '.';
  display: block;
  height: 0;
  visibility: hidden;
}



/*****
* header
*****/
#header {
  height: 152px;
  width: 100%;
  overflow: auto;
  margin: .5em 0em 0em 0em;
  background: transparent url("../img/background/header01.jpg") no-repeat;
}

#header ul {
  font-size: .9em;
  margin: 10em auto 0em auto;
  text-align: center;
}

#header ul li {
  display: inline;
  list-style: none;
  margin: 0em .4em;
  padding: 0em;
}

#header ul li a {
  color: #bbb;
  background-color: transparent;
}

#header ul li a.selected,
#header ul li a:hover {
  color: #fff;
  text-decoration: underline;
}


/*****
* nav
*****/

#nav {
  background-color: #fff;
  height: 25px;
  width: 50em;
  margin: 0em auto;
  overflow: auto;
}

#nav ul {
  font-size: .9em;
  text-align: center;
  padding: .3em 0em .3em 0em;
  background-color: #222;
}

#nav ul li {
  display: inline;
  list-style: none;
  margin: 0em .4em;
  padding: 0em;
}

#nav ul li a {
  color: #bbb;
  background-color: transparent;
}

#nav ul li a.selected,
#nav ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

/*****
* content
*****/
#content {
  width: 50em;
  margin: 1em auto 2em auto;
}

#content h1,
#content h2 {
  font-size: 1.3em;
  letter-spacing: .2em;
  font-weight: 400;
  margin: 0em 0em .3em 0em;
  padding: 0em 0em .3em 0em;
  color: #3b627e;
  border-bottom: 2px solid #3b627e;
}

#content h2 {
  font-size: 1.1em;
  margin: 1em 0em .3em .7em;
}

#content  p {
  font-size: 1em;
  padding: 0em 0em .5em 0em;
  line-height: 1.5;
}

#content  a {
  color: #3b627e;
  background-color: transparent;
}

#content a:hover {
  /* background-color: #c4c9e7; */
}

#content blockquote {
  margin: 0em 3em 1.5em 1.5em;
}

#content blockquote  h2 {
  margin: 1em 0em .3em 0em;
}

#content blockquote p {
  margin: 0em;
}

#content blockquote ul {
  font-size: .9em;
}

#content ul {
  list-style-type: none;
  margin: 1em 2em 1.5em 2.7em;
}

#content li {
  line-height: 1.5em;
  margin: 0em 0em .5em 0em;
  padding: 0em 0em 0em 1em;
  border-left: 2px solid #c4c9e7;
}


/*****
* navBar
*****/

#navBar  ul {
  font-size: .9em;
  float: right;
  padding: 0em;
  margin: 0em;
}


#navBar ul li {
  float: right;
  list-style: none;
  margin: .6em 1em 0em 0em;
  padding: 0em;
  background-color: #97afc1;
  border: 2px outset #3b627e;  
  border-bottom: none;
}

#navBar ul li a {
  display: block;
  color: #555;
  padding: 0em .5em;
}

#navBar ul li a:hover,
#navBar ul li a.selected {
  color: #fff;
  background-color: #537a99;
}


/*****
* content buttons
*****/

#content .buttons  {
  color: #ddd;
  height: 1.4em;
  background-color: #537a99;
  margin: .1em 0em .5em 0em;
  padding: .1em 0em .1em .2em;
  overflow: hidden;
}

#content .buttons p {
  background: transparent url('../../_include/img/buttons/arrow.png') center left no-repeat;
  font-size: .9em;
  float: left;
  display: inline;
  padding: 0em .3em 0em 1.8em;
  margin: 0em 0em 0em .5em;
  text-align: left;
}

#content .buttons p:hover {
  color: #fff;
  background: transparent url('../../_include/img/buttons/arrowHover.png') center left no-repeat;
  text-decoration: underline;
  cursor: pointer;
}


/*****
* tooltip
*****/

.tooltipShadow {
  background: transparent url("../../_include/img/background/shadow.png");
}

.tooltipContent {
  left: -3px;
  top: -3px;
  color: #537a99;
  background-color: #fff;
  border: 2px outset #555;
  padding: 5px;
  font: bold 10pt sans-serif;
}

