/*
 * All Rights reserved by Daniel Beckers
 * Copyright 2012 
 *
 * $Id: main.css 62 2012-07-28 11:06:51Z ole $
 *
 */

/* default css settings */
* {
  margin: 0px;
  padding: 0px;
  border: 0px;
  font-family: arial, sans-serif;
  font-size: .96em;
}

/* body css settings */
body {
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* main styles for tags */
hr {
  border-top: 1px dashed gray;
}

span.editor-comment {
  color: red;
  font-weight: bold;
}

/* layout container*/
div#page {
  width: 915px;
  padding: 0px;
  margin: 0px 0px 0px 60px;
  border: 0px;
}

div#navigation {
  width: 234px;
  margin-right: 20px;
}

div#main {
  margin-top: 20px;
  width: 660px;
  float: right;
}

div.cnt-pnl {
  margin-bottom: 20px;
  background-color: white;
}

div.cnt-pnl-half {
  margin-bottom: 20px;
  background-color: white;
  width: 320px;
}

div.cnt-item {
  padding: 16px;
}

div.cnt-item-half {
  padding: 16px;
  width: 298px;
}

div.cnt-item-quarter {
  padding: 0px;
  width: 142px;
}

div.cnt-pnl-hdr {
  padding-left: 10px;
  padding-top: 4px;
  padding-bottom: 4px;
  color: white;
  background-color: #9ccc8f;
  font-family: georgia, serif;
  font-size: 1.2em;
  font-style: italic;
}

div.cnt-pnl-ftr {
  padding-left: 10px;
  padding-top: 4px;
  padding-bottom: 4px;
  color: white;
  background-color: #9ccc8f;
  font-family: georgia, serif;
  font-size: 1.2em;
  font-style: italic;
}

/* header types */
h1.cnt-pnl {
  font-family: georgia, serif;
  font-size: 2.2em;
  font-weight: normal;
  color: #9ccc8f;
}

h3.cnt-pnl {
  font-family: georgia, serif;
  font-size: 1.1em;
  font-weight: normal;
  font-style: italic;
  color: black;
}

h1.signature {
  font-family: georgia, serif;
  font-size: 2.2em;
  font-weight: normal;
  font-style: italic;
  color: #9ccc8f;
}

/* content container */
div.menu-item {
  padding: 6px 0px 8px 18px;
}

div.menu-item div {
  padding: 6px 0px 2px 22px;
  font-family: arial, sans-serif;
  font-size: 1.04em;
}

div.cnt-item-copyr {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 4px;
  padding-bottom: 4px;
}

div.cnt-item ul,div.cnt-item-half ul {
  list-style-image: url(../img/bullet-01.gif);
  padding-left: 12px;
}

li {
  font-family: arial, sans-serif;
  font-size: 1.04em;
}

td {
  padding-right: 4px;
  font-family: arial, sans-serif;
  font-size: 1.1em;
}

/* image types */
img.top-left {
  float: left;
  vertical-align: text-top;
  margin-right: 10px;
}

img.top-right {
  float: right;
  vertical-align: text-top;
  margin-left: 10px;
}

img.thumbnail {
  margin: 4px;
}

/* link types */
a img.spacer-txt {
  width: 6px;
}

a.selected {
  color: #9ccc8f;
}

a:link {
  color: black;
  text-decoration: underline;
}

a:visited {
  color: #666666;
  text-decoration: underline;
}

a:focus {
  color: #9ccc8f;
  text-decoration: underline;
}

a:hover {
  color: #9ccc8f;
  text-decoration: underline;
}

a:active {
  color: #9ccc8f;
  text-decoration: underline;
}

/* the overlayed element */
.simple_overlay { /* must be initially hidden */
  display: none;
  /* place overlay on top of other elements */
  z-index: 10000;
  /* styling */
  background-color: #333;
  width: 800px;
  min-height: 200px;
  padding: 0px;
  border: 1px solid #666;
  /* CSS3 styling for latest browsers */
  -moz-box-shadow: 0 0 40px 5px #000;
  -webkit-box-shadow: 0 0 40px #000;
}

/* close button positioned on upper right corner */
.simple_overlay .close {
  background-image: url(../img/close.png);
  position: absolute;
  right: -15px;
  top: -15px;
  cursor: pointer;
  height: 35px;
  width: 35px;
}

/* styling for elements inside overlay */
.details {
  position: absolute;
  top: 15px;
  right: 4px;
  font-size: 11px;
  color: #fff;
  width: 150px;
}

.details h3 {
  color: #9ccc8f;
  font-size: 15px;
}

.simple_overlay .left-btn {
	background-image: url(../img/arrow-prev.png);
	position: absolute;
  	top: 200px;
  	right: 801px;
}

.simple_overlay .right-btn {
	background-image: url(../img/arrow-next.png);
	position: absolute;
  	top: 200px;
  	right: -24px;
}