/*reset.css*/
/* http://meyerweb.com/eric/tools/css/reset/ */
/* v1.0 | 20080212 */
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, font, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font-weight: normal;
	vertical-align: baseline;
	color: #666;
	/*background: transparent;*/
}
td {
	margin: 0;
	/*padding: 0;*/
	border: 0;
	outline: 0;
	font-size: 100%;
	font-weight: normal;
	vertical-align: baseline;
	/*background: transparent;*/
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* end reset.css*/
/*base.css*/
body {
	background: #eaeaea url(img/imgpagebg.jpg) repeat-x;
	color: #333;
	line-height:1.125em; /* 16x1.125=18px */
	padding-left: 1em;
	padding-right: 1em;
}
body, input, textarea {
	font-family: "frutiger", "univers", "helvetica neue", arial, helvetica, sans-serif;
}
img {
	border: none;
}
label {
   cursor: pointer;
}
b,strong { font-weight: bold; }
em,dfn { font-style: italic; }
dfn { font-weight: bold; }
sup, sub { line-height: 0; }
.none {
   display: none;
}
.hidden {
   visibility: hidden;
}
a {
   color: #003366;
   font-weight: bold;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
h1 { font-size: 3em; line-height: 1; margin-bottom: 0.5em; }
h2 { font-size: 2em; margin-bottom: 0.75em; }
h3 { font-size: 1.5em; line-height: 1; margin-bottom: 1em; }
h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; }
h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
h6 { font-size: 1em; font-weight: bold; }
th, td {
	vertical-align: middle;
}
#screen {
	margin: 15px auto;
	background-color: white;
}
div.normalscreen {
	width: 872px;
}
div.widescreen {
	width: 952px;
}
div.borders {
	margin: 0;
	padding: 0;
	width: 100%;
}
#bordermt {
	background: transparent url(img/imgpagecornermt.jpg) repeat-x top;
}
#bordermr2 {
	background: transparent url(img/imgpagesiderb2.jpg) repeat-y right;
}
#bordermr {
	background: transparent url(img/imgpagesiderb.jpg) no-repeat top right;
}
#bordermb {
	background: transparent url(img/imgpagecornermb.jpg) repeat-x bottom;
}
#borderml2 {
	background: transparent url(img/imgpagesidelb2.jpg) repeat-y left;
}
#borderml {
	background: transparent url(img/imgpagesidelb.jpg) no-repeat top left;
}
#borderrt {
	background: transparent url(img/imgpagecornerrt.jpg) no-repeat top right;
}
#borderrb {
	background: transparent url(img/imgpagecornerrb.jpg) no-repeat bottom right;
}
#borderlb {
	background: transparent url(img/imgpagecornerlb.jpg) no-repeat bottom left;
}
#borderlt {
	background: transparent url(img/imgpagecornerlt.jpg) no-repeat top left;
}
#innerpage {
	padding: 21px;
}
#header {
	height: 140px;
	background: no-repeat top;
	margin-bottom: 10px;
}
#whiteheader {
	background: transparent no-repeat top left;
	padding-top: 30px;
	margin-bottom: 10px;
	border-bottom: 1px dotted #cfcfcf;
	text-align: center;
}
div.normalheader {
	height: 42px;
}
div.tallheader {
	height: 50px;
}
#logort {
	background: transparent no-repeat top right;
}
#content {
	padding: 0.625em;
}
#footer {
	clear: both;
	margin-top: 10px;
}
#nav {
	width: 100%;
	min-height: 18px;
	margin-top: 8px;
	padding: 5px 0;
	font-size: 0.6875em; /* 16x0.6875=11px */
	border-top: 1px dotted #cfcfcf;
}
p.copy {
	float: right;
	color: #999999;
	font-size: 0.91em; /* 11x0.91=10px */
}
#nav a {
	font-weight: normal;
}
#nav a.spacer {
	background: url(img/imgnavseperator.png) 100% 50% no-repeat;
	padding-right: 7px;
}
#nav a.notfirst {
	margin-left: 5px;
}
#gotomenu {
	float: right;
	cursor: pointer;
}
#gotonav a {
	display: block;
	width: 9em;
	text-decoration: none;
}

#gotonav li {
	/* all list items */
	float: left;
	line-height: 1;
	width: 9em; /* width needed or else opera goes nuts */
	padding: 0.5em 0 0.5em 1em;
}

#gotonav li ul { /* second-level lists */
	position: absolute;
	background-color: #f0f0f0;
	width: 9em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#gotonav li:hover ul, #gotonav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
#gotonav li ul li:hover, #gotonav li ul li.sfhover {
	background: silver;
	width: 8em;
}
/* end base.css*/
/*ie.css*/
/*center layout in ie prior 6*/
body {
	text-align: center;
}
#screen {
	text-align: left;
}
/*fixes left-margin for check boxes and radio buttons in IE7*/
*:first-child+html .answer input[type=radio], *:first-child+html .codesgroupinput input[type=radio], *:first-child+html .answerdist input[type=radio], *:first-child+html .answertop input[type=radio],
*:first-child+html .answer input[type=checkbox], *:first-child+html .codesgroupinput input[type=checkbox], *:first-child+html .answerdist input[type=checkbox], *:first-child+html .answertop input[type=checkbox] {
	margin-left: -3px;
}
/* fixes incorrect placement of numbers in ol's in ie6/7 */
* html .text ol, * html .comment ol {
	margin-left: 2em;
}
*:first-child+html .text ol, *:first-child+html .comment ol {
	margin-left: 2em;
}
/* fixes border-bug in ie*/
* html .gridgroupheader {
	position: relative;
	border-bottom: none;
}
*:first-child+html .gridgroupheader {
	position: relative;
	border-bottom: none;
}
/*end ie.css*/
/*survey.css*/
.pbarblock {
	float: right;
	font-size: 0.6875em;
	color: #fff;
	margin-top: 110px;
	padding-right: 60px;
	width: 250px;
}
.centeredpbarblock {
	font-size: 0.6875em;
	color: #8495ae;
	margin-left: auto;
	margin-right: auto;
	width: 250px;
}
.eappbarblock {
	float: right;
	font-size: 0.6875em;
	color: #316ac5;
	margin-top: 10px;
	padding-right: 60px;
	width: 250px;
}
.pbar, .pbarbg {
	height:8px;
	line-height: 1;
}
.pbar {
	border-bottom:1px solid #c0c0c0;
	border-top:1px solid #c0c0c0;
	background: #fff url(img/pbar_bg.png) repeat-x center;
}
.pbarbg {
	background: #fff url(img/pbarbg_bg.png) repeat-x center;
	border-bottom:1px solid #fff;
	border-top:1px solid #fff;
}
.globalerror, .questionerror {
	font-size: 0.75em;
	padding: 5px;
	margin-bottom: 1em;
}
.globalerror{
	background-color:#F4F4F4;
	border:solid 2px solid gray;
	font-weight:bold;
	color:#FF0099;
	text-align:center;
}
.questionerror{
	background-color:#F4F2F4;
	border:solid 2px solid gray;
	font-weight:bold;
	color:#FF0099;
}
.clink {
	font-size: 0.75em;
	padding: 5px;
	margin-bottom: 1em;
	background: #d9eeef;
	color: #47b3b8;
	border: 2px solid #90d1d4;
	text-align: center;
	font-weight: bold;
}
.clink a {
	color: #47b3b8;
}
.questiongrey, .questionwhite {
	width: 50%;
	padding: 5px;
	vertical-align: top;
}
.questiongrey {
	background-color: #eee;
}
.threeq {
	width: 33%;
	padding: 5px;
	vertical-align: top;
}
.text, .comment {
	margin-bottom: 0.75em; /*12x1.5=18px */
}
.qid {
	font-weight: bold;
	color: #8495ae;
}
.comment {
	color: #333333;
	font-style: italic
}
.text, .comment, .answers, .gridanswers {
	font-size: 0.75em; /* 16x0.75=12px */
}
.question p {
	margin-bottom: 1.5em; /*12x1.5=18px */
}
.question ul, .question ol {
	margin: 0 1.5em 1.5em 1.5em;
}
.text ul, .comment ul {
	list-style-type: circle;
}
.text ol, .comment ol {
	list-style-type: decimal;
}
.answers, .gridanswers, .dragdropanswers {
	margin: 1.125em 0;
	clear: both;
}
.gridanswers {
	line-height: 1.25em;
}
.dragdropanswers td {
	padding: 1px;
}
.answer, .answerlabel, .answerdist, .answertop, .codesgroupinput {
	padding: 1px 3px 1px 0;
}
.answer input, .answerdist input, .answertop input, .codesgroupinput input {
	margin-left: 0;
}
.answer, .answerlabel {
	vertical-align: middle;
}
.answerdist {
	padding-top: 1.5em;
}
.answertop {
	vertical-align: top;
}
.codesgroupinput {
	width: 1%;
}
textarea {
	font-size: 1em;
	vertical-align: top;
}
.othertextfield, .multiopenfield, .multinumericfield, .passwordfield, .numericfield, #__userid {
	padding: 1px;
	border:1px solid #bbb;
	background:#f6f6f6;
}
.othertextfield:focus, .multiopenfield:focus, .multinumericfield:focus, .passwordfield:focus, .numericfield:focus, .tffocus, #__userid:focus {
	border:1px solid #999;
	background:#fff;
}
.answers input.othertextfield, .answers input.multiopenfield, .answers input.multinumericfield, .answers input.passwordfield, #__userid, .gridanswers input.othertextfield {
	margin-left: 3px;
}
.opentext { 
	border: 1px solid #bbb;
	background:#eee;
	padding: 5px;
}
.opentext:focus, .otfocus {
	border: 1px solid #999;
	background:#fff;
}
select {
	border:1px solid #ccc;
	background:#f6f6f6;
}
select:focus, deselfocus {
	border:1px solid #999;
	background:#fff;
}
.multinumericfield, .numericfield {
	text-align: right;
}
.codesgroupheader{
	padding-top:1.5em;
	font-weight:bold;
	color:#8495AE;
}
.gridanswer, .gridansweralternating, .gridlabel, .gridlabelleft, .gridlabelalternating, .scale, .scalebar, .scalegroupheader, .gridgroupheader {
   border: solid 1px silver;
   text-align: left;
}
.gridanswer, .gridlabel, .gridlabelleft {
	background-color: #fafafa;
	text-align: left;
}
.gridansweralternating, .gridlabelalternating {
	background-color: #e0e0e0;
}
.gridanswer, .gridansweralternating, .scale, .scalegroupheader {
	text-align: left;
}
.gridanswer span, .gridansweralternating span {
	line-height: 1;
}
.gridgroupheader{
	font-weight:bold;
	color:#8495AE;
}
.scale, .scale, .scalegroupheader {
	line-height: 1em;
	vertical-align: bottom;
	padding: 3px 1px;
}
.scalegroupheader{
	font-weight:bold;
	color:#8495AE;
}
.scalebar{
	background-color:Silver;
}
.gridlabel, .gridlabelleft, .gridlabelalternating, .gridgroupheader {
	padding: 3px;
}
.gridlabelleft {
	text-align: right;
}
.gridtablestyle{
	border-collapse:separate;
	table-layout:auto;
}
.insrtuctionstyle{
	background-color:#009933;
	color:#FFFFFF;
}
.qtext{
	background-color:#99FFCC;
	font-weight:bold;
	font-size:12px;
	color:black;
	font-family:arial;
	word-spacing:4px;
	list-style-position:inside;
	list-style-type:square;
}
.questionheader{
	background-color:#8495AE;
	margin-top:2px;
	margin-bottom:10px;
	padding-left:2px;
	padding-top:3px;
	padding-bottom:3px;
	font-weight:bold;
	font-size:12px;
	color:#ffffff;
	font-family:Arial;
}
.buttons {
	width: 9.5em;
	height: 2.5em;
	margin: auto;
	text-align: center;
}
.floatright {
	float: right;
}
.floatleft {
	float: left;
}
#forwardbutton, #backbutton, #okbutton, .anybutton {
	color: #000;
	width: 5.8em;
	height: 2.3em;
	font-size: 0.75em; /* 16x0.75=12px */
	margin: auto 3px;
	text-align: center;
	background: url(img/buttonbg.png) repeat-x top;
	text-align: center;
	border-top: 1px solid #f0f0f0;
	border-left: 1px solid #f0f0f0;
	border-bottom: 1px solid #999999;
	border-right: 1px solid #999999;
	padding: 1px;
	cursor: pointer;
}
#forwardbutton:hover, #backbutton:hover, #okbutton:hover, .anybutton:hover {
	border-bottom: 1px solid #f0f0f0;
	border-right: 1px solid #f0f0f0;
	border-top: 1px solid #999999;
	border-left: 1px solid #999999;
	padding: 2px 0px 0px 2px;
}
/*end survey.css*/
