/* main.css

   Created:   2009-03-03 - dbo
   Modified:  2009-03-05 - dbo

   PURPOSE:
   Establish fundamental CSS design elements and structure for dspesg.com 
*/

/* Apply HTML tag styles */
* {
    margin: 0;
	padding: 0;
}

html, body {
    height: 100%;
	min-width: 800px;
}

body, p, li, a {
	font: 12px Tahoma,Verdana,Arial,Helvetica,sans-serif;
	line-height: 130%;
}

label {
	font: 11px Tahoma,Verdana,Arial,Helvetica,sans-serif;
	line-height: 105%;
	display: block;
	margin-left: 0.2em;
}

textarea {
	margin-bottom: 1ex;
}

li {
	margin-left: 2em;
}

body {
	background-color: #fff;
}

p {
	margin-bottom: 1em;
	margin-top: 0;
}

h1 {
	font-size: 150%;
	margin: 0 0 0.5em 0;
	padding: 0;
}

h2 {
	font-size: 125%;
	margin: 0 0 0.1em 0;
	padding: 0;
}

h3 {
	font-size: 100%;
	margin: 0;
	padding: 0;
}

h1, h2, h3 {
	text-shadow: 0 0 4px #fff;
	font-weight: bold;
}

a {
	color: #56838d;
	text-decoration: none;
	font-size: inherit;
	margin: 1px;
}

a:hover {
	color: #fff;
	background-color: #56838d;
	border: 1px solid #7eafba;
	margin: 0;
}

a.image {
	border: 0;
	margin: 0;
	text-decoration: none;
	background-color: transparent;
}

/* Nav button rollover effect */
a.navrollover {
	display: block;
	width: 155px;
	height: 50px;
	background-image: url('./graphics/navbtn.png');
	background-position: 0 0;
	background-repeat: no-repeat;
	text-decoration: none;
	text-shadow: 0 0 4px #fff;
	font-weight: bold;
	color: #000;
	padding-left: 1ex;
	border: 0;
	margin: 0;
}

a:hover.navrollover {
	background-position: 0 -50px;
	color: #fff;
	border: 0;
	background-color: transparent;
}

a:active.navrollover {
	background-position: 0 -100px;
	color: #fff;
}

a.navrollover span {
	display: block;
	padding-top: 17px;
	border: 0;
}

a.navrollover span.twoline {
	display: block;
	padding-top: 10px;
	border: 0;
}

/* DS logo rollover effect */
a.dsrollover {
	display: block;
	width: 92px;
	height: 81px;
	background-image: url('./graphics/ds_logo.png');
	background-position: 0 0;
	background-repeat: no-repeat;
	text-decoration: none;
	border: 0;
	margin: 0;
}

a:hover.dsrollover {
	background-position: 0 -81px;
	background-color: transparent;
	border: 0;
}

/* Named DIVs here */

#container {
	z-index: 1;
}

#logo {
	z-index: 3;
	display: block;
	position: fixed;
	right: 0;
	top: 2px;
	width: 92px;
	height: 81px;
}

#sidenav {
	z-index: 2;
	display: block;
	position: fixed;
	left: 10px;
	top: 100px;
	width: 155px;
	height: 350px;
	box-shadow: 0 2px 6px #666;
	-webkit-box-shadow: 0 2px 6px #666;
	-moz-box-shadow: #666 0 2px 6px;
}

#mainarea {
	display: block;
	position: fixed;
	left: 175px;
	right: 10px;
	top: 100px;
	bottom: 35px;
	width: auto;
	height: auto;
	min-width: 700px;
	z-index: 3;
	background-color: #fff;
	border: 1px dotted #D1E0E0;
	filter:alpha(opacity=50);
	-moz-opacity:0.6;
	-khtml-opacity: 0.6;
	opacity: 0.6;	
	box-shadow: 0 2px 6px #000;
	-webkit-box-shadow: 0 2px 6px #000;
	-moz-box-shadow: #000 0 2px 6px;
}

#maintext {
	z-index: 4;
	display: block;
	position: fixed;
	left: 175px;
	right: 11px;
	top: 110px;
	bottom: 45px;
	width: auto;
	height: auto;
	min-width: 500px;
	overflow: auto;
	padding: 0 2em 1em 1em;
}

/* Layer Zero */
#bigc, #container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 100%;
	height: auto !important;
	height: 100%;
	margin: 0;
}

* html #bigc {
	height: 100%;
}

#bg_top {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 33px;
	background-image: url('./graphics/top-bg.png');
	background-position: top left;
	background-repeat: repeat-x;
}

#bg-bot {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 33px;
	background-image: url('./graphics/bot-bg.png');
	background-position: top left;
	background-repeat: repeat-x;
}

#bg-ul {
	position: fixed;
	top: 0;
	left: 0;
	width: 35px;
	height: 36px;
	background-image: url('./graphics/ul-bg.png');
}

#bg-left {
	position: fixed;
	top: 0;
	left: 0;
	width: 33px;
	height: 100%;
	background-image: url('./graphics/left-bg.png');
}

#bg-right {
	position: fixed;
	top: 0;
	right: 0;
	width: 33px;
	height: 100%;
	background-image: url('./graphics/right-bg.png');
}

#bg-ur {
	position: fixed;
	top: 0;
	right: 0;
	width: 35px;
	height: 36px;
	background-image: url('./graphics/ur-bg.png');
}

#bg-ll {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 35px;
	height: 36px;
	background-image: url('./graphics/ll-bg.png');
}

#bg-lr {
	position: fixed;
	bottom: 0;
	right: 0;
	width: 35px;
	height: 36px;
	background-image: url('./graphics/lr-bg.png');
}

#logocorner {
	z-index: 1;
	position: fixed;
	top: 0;
	left: 0;
	width: 581px;
	height: 374px;
	background-image: url('./graphics/ulcorner.png');
}

#copycorner {
	z-index: 2;
	position: fixed;
	bottom: 0;
	right: 0;
	width: 553px;
	height: 256px;
	background-image: url('./graphics/lrcorner.png');
}

#bottomlinks {
	z-index: 2;
	position: fixed;
	bottom: 0;
	left: 0;
	width: auto;
	height: auto;
	margin-left: 1em;
}

#cmeline {
	position: fixed;
	top: 24px;
	right: 10px;
	width: 1500px;
	height: 75px;
	background-image: url('./graphics/PESG-name.png');
}

/* Classes here */
.linkline {
	font-size: 10px;
	padding: 2px;
	background-color: #fff;
	filter:alpha(opacity=50);
	-moz-opacity:0.6;
	-khtml-opacity: 0.6;
	opacity: 0.6;	
}

p.linkline a {
	color: #000;
}

p.linkline a:hover {
	color: #fff;
}

.vbar {
	color: #5FA8AB;
}

.sigblock {
	margin-left: 35px;
	margin-top: 20px;
	margin-bottom: 10px;
	padding-left: 98px;
	background: url('graphics/gjv-signature.png') no-repeat 0 0;
}

.accredblock {
	width: 680px;
	margin: 2em auto;
	background: #fff;
	border: 1px solid #cef;
	padding: 1ex;
}

.red {
	color: #A00;
}

.centerblock {
	display: block;
	width: 731px;
	margin: 0 auto;
}
