/* The complete reset:  http://meyerweb.com/eric/tools/css/reset/   v2.0 | 20110126 License: none (public domain) , combined with pieces of boilerplate*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup,  menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin:0px; padding:0px; border:0px; font-size:100%; font:inherit; vertical-align:baseline;}
	
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display:block;}
audio, canvas, video { display:inline-block; *display:inline; *zoom:1; }
audio:not([controls]) { display:none; }
[hidden] { display:none; }

html { font-size:100%; overflow-y:scroll; -webkit-text-size-adjust:100%; -ms-text-size-adjust:100%; }
body {line-height:1;}
ol, ul {list-style:none;}
blockquote, q {quotes:none;}
blockquote:before, blockquote:after, q:before, q:after {content:''; content:none;}
table {border-collapse:collapse; border-spacing:0;}

div, li { behavior: url(PIE/PIE.htc); } /*  always get the newest version of PIE : http://css3pie.com/   */

body {background:#292929; font-size:12pt; font-family:Arial,sans-serif; color:#E7EAF2; line-height:16pt;}


/* ================== Box code begins here ================= */

div#tabBox  {
	position:relative;  /*  this div needs positioning to function  */
	margin:76px; 
	width:440px; 
	background-color:#878988; 
	padding:12px; 
	z-index:1;
} 
div#tabBox div {
	background-color:#E7EAF2; 
	color:#000; 
	min-height:436px; height:auto !important; height:436px; /*  always declare all three, in this order  */
	display:none; 
	padding:12px 8px 12px 26px; 
	z-index:3;
	-webkit-box-shadow:0px 0px 8px #000;
		    box-shadow:0px 0px 8px #000;
}
div#tabBox, div#tabBox div {
	-moz-border-radius:6px; 
	-webkit-border-top-left-radius:6px; 
	-webkit-border-top-right-radius:6px; 
	-webkit-border-bottom-right-radius:6px; 
	-webkit-border-bottom-left-radius:6px; 
	border-radius:6px;
}
div#tabBox div.selected {display:block;}

ul.tabs {	/*note: moz, webkit and o rotate at center point and left remains where it was, ie rotates and realigns new left edge to left:0  - see sidenav_ie.css */
	-moz-transform:rotate(-90deg);
	-o-transform:rotate(-90deg);
	-webkit-transform:rotate(-90deg);
	-ms-transform:rotate(-90deg);
	position:absolute;
	top:218px;
	left:-226px; 
	display:block;
	width:440px;
	height:54px;
	font-family:Cantarell;
	font-weight:bold;
	z-index:2;
}
ul.tabs li {
	padding: 0 15px;
	display:block;
	float:right;
	height:45px;
	line-height:40px;
	margin-left:16px;
	cursor:pointer;
	color:#000;
	background-color:#878988;
	background-image: -moz-linear-gradient(90deg, #525252,#878988 14%, #878988);
	background-image: -o-linear-gradient(90deg, #525252,#878988 8%, #878988);
	background-image: -webkit-linear-gradient(90deg, #525252,#878988 10%, #878988);
	background-image: -ms-linear-gradient(90deg, #525252,#878988 14%, #878988); /*ie 10 only, so I can't test*/
	background-image: linear-gradient(90deg, #525252,#878988 14%, #878988); /* eventual standard */
	-pie-background: linear-gradient(180deg, #878988 92%,#555555 96%,#525252 4%); /*ie 9 - applies grad at different deg than ie6-8!! rotation or PIE issue?  see sidenav_ie.css */
	-moz-border-radius:6px 6px 0 0; 
	-webkit-border-top-left-radius:6px; 
	-webkit-border-top-right-radius:6px; 
	-webkit-border-bottom-right-radius:6px; 
	-webkit-border-bottom-left-radius:6px; 
	border-radius:6px 6px 0 0;
	-moz-user-select:none;
	-o-user-select:none;
	-webkit-user-select:none;
}
ul.tabs li.selected {
	background-image:none; 
	background-color:#E7EAF2; 
	-pie-background:#E7EAF2; 
	height:55px;
}