﻿html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}                  

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { 
    display:block;
}

nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }

/* END RESET CSS */



body { font-family:Arial; color: #222; } /* hack retained to preserve specificity */

select, input, textarea, button { font:99% sans-serif; }

/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: monospace, sans-serif; }
 

/* 
 * minimal base styles 
 */


body, select, input, textarea { 
   color: #333; 
}

h1,h2,h3,h4,h5,h6 { font-weight: bold; }

/* always force a scrollbar in non-IE */ 
html { overflow-y: scroll; }

 
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

a, a:active, a:visited { color: #607890; }
a:hover { color: #036; }


ul, ol { margin-left: 1.8em; }
ol { list-style-type: decimal; }

/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; } 

small { font-size: 85%; }
strong, th { font-weight: bold; }

td, td img { vertical-align: top; } 

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre { 
  padding: 15px; 
  
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}
 
textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }
 
/* webkit browsers add a 2px margin outside the chrome of form elements */  
button, input, select, textarea { margin: 0; }

/* colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid { 
      border-radius: 1px;
    -moz-box-shadow: 0px 0px 5px #d90327; 
 -webkit-box-shadow: 0px 0px 5px #d90327; 
         box-shadow: 0px 0px 5px #d90327;
}
.no-boxshadow input:invalid, 
.no-boxshadow textarea:invalid { background-color: #f0dddd; }

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }
 
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; } 

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.visuallyhidden { position: absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
  content: "\0020"; display: block; height: 0; visibility: hidden;	
} 

.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }






 /* Primary Styles
    Author: 
 */















/*
 * Media queries for responsive design
 * These follow after primary styles so they will successfully override. 
 */

@media all and (orientation:portrait) { 
  /* Style adjustments for portrait mode goes here */
  
}

@media all and (orientation:landscape) { 
  /* Style adjustments for landscape mode goes here */
  
}

/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  
  
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust 
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}

/* 
 * print styles
 * inlined to avoid requi#d90327 HTTP connection www.phpied.com/delay-loading-your-print-css/ 
 */
@media print {
  * { background: transparent !important; color: #444 !important; text-shadow: none !important; }
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a:after { content: " (" attr(href) ")"; } 
  abbr:after { content: " (" attr(title) ")"; }
  .ir a:after { content: ""; }  /* Don't show links for images */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */ 
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}


/* ==|== SKIN STYLES =======================================================
   CSS for skinning
   ========================================================================== */


@media screen and (min-width:1201px)
{
body { margin: 0; font-size: 17px; line-height:150%; letter-spacing: 0.8px; }

h1{font-size: 22px;}

#header{
	height: 120px;
	background-image: url(img/headerbg.gif);
	background-position:center;
}
#headercenter{
	width: 1180px;
	height: 120px;
}

#headerlogo
{
	background-image: url(img/headerlogo.gif);
	width: 220px;
	height: 120px;
}

.headersearchpane{
	height: 30px;
	margin-top: 45px;
}
#headermenu{
	height: 25px;
	margin-top: 50px;
	margin-right: 30px;
}
#menumaster{
	height:40px;
}

#menucenter{
	width: 1180px;
}

#nav{
	padding-left: 220px;
}

.dnnadminmega .megaborder{
	left: -220px;
}

.dnnadminmega ul.categories li.category, .dnnadminmega ul.categories li.category .category_image{
	width: 200px;
}

/* homepage */
#contentcenter{
	width: 1180px;
}
.bannercolumn{
	width: 880px;
}

.singlecolumn{
	width: 1180px;
}

.threecolumns{
	width: 380px;
}

.fourcolumns{
	width: 280px;
}

.fivecolumns{
	width: 220px;
}

/* chapter */
#leftmenu, .rightpane
{
	width: 220px;
}
.RadPanelbar_QPARK
{
	width:200px;
}

.RadPanelbar_QPARK .level1 .link
{
	width:185px;
}

#chaptercontent
{
	width: 700px;
}

.chaptersinglecolumn
{
	width: 700px;
}

.chaptertwocolumns
{
	width: 340px;
}

.chapterthreecolumns
{
	width: 220px;
}

#divcontainertitle
{
	height: 40px;
}
/* footer */
#footercenter{
	width: 1180px;
}
#footer{
	height: 85px;
}

#logofooter
{
	background-image: url(img/footerlogo.gif);
	width: 400px;
	height: 85px;
}

#leftmenufooter
{
	margin-top: 30px;
}

a.linkbutton,a.linkbutton:link,a.linkbutton:visited, a.actionbutton, a.actionbutton:link, a.actionbutton:visited {
padding:6px 10px 6px 10px;
}

#divcontainertitlewhite, #divcontainertitlered, #divcontainertitlegrey{
height: 30px;
}

.leftimageimage{
width:460px;
}

.bannertable{
width:880px;
height:280px;
}
.bannerimage, .bannerimage img{
height:246px;
width:880px;
}
.bannertitle{
height:29px;
width:880px;
padding-top: 6px;
}

table.countryoverview{
width:280px;
height:250px;
font-size: 16px;
}

.rightpane table.countryoverview{
width:220px;
font-size: 16px;
}

.doormattoptext{
height:115px;
}

.surveyresults, surveyresultsitems, .surveyresulttemplateUL, surveyresulttemplateLI, .surveyresulttemplateLI table{
width:172px !important;
}
}

@media screen and (max-width:1200px) 
{
body { margin: 0; font-size: 15px; line-height: 135%;}

#header{
	height: 92px;
	background-image: url(img/smallheaderbg.gif);
	background-position:center;
}
#headercenter{
	width: 940px;
	height: 92px;
}

#headerlogo
{
	background-image: url(img/smallheaderlogo.gif);
	width: 172px;
	height: 120px;
}

.headersearchpane{
	height: 26px;
	margin-top: 33px;
}
#headermenu{
	height: 20px;
	margin-top: 36px;
	margin-right: 20px;
}
#menumaster{
	height:31px;
}

#menucenter{
	width: 940px;
}

#nav{
	padding-left: 172px;
}

.dnnadminmega .megaborder
{
	left: -180px;
}

.dnnadminmega ul.categories li.category, .dnnadminmega ul.categories li.category .category_image
{
	width: 160px;
}
#contentcenter{
	width: 940px;
}
.bannercolumn{
	width: 700px;
}

.singlecolumn{
	width: 940px;
}
.threecolumns{
	width: 300px;
}

.fourcolumns{
	width: 220px;
}

.fivecolumns{
	width: 172px;
}

/* chapter */
#leftmenu, .rightpane
{
	width: 172px;
}

.RadPanelbar_QPARK
{
	width:152px;
}

.RadPanelbar_QPARK .level1 .link
{
	width:137px;
}

#chaptercontent
{
	width: 556px;
}

.chaptersinglecolumn
{
	width: 556px;
}

.chaptertwocolumns
{
	width: 268px;
}

.chapterthreecolumns
{
	width: 172px;
}

#divcontainertitle
{
	height: 31px;
}

#footercenter{
	width: 940px;
}

#footer{
	height: 65px;
}
#logofooter
{
	background-image: url(img/smallfooterlogo.gif);
	width: 306px;
	height: 65px;
}

#leftmenufooter
{
	margin-top: 20px;
}

a.linkbutton,a.linkbutton:link,a.linkbutton:visited, a.actionbutton, a.actionbutton:link, a.actionbutton:visited {
padding:4px 8px 5px 8px;
}

#divcontainertitlewhite, #divcontainertitlered, #divcontainertitlegrey{
height: 25px;
}

.leftimageimage{
width:364px;
}

.bannertable{
width:700px;
height:223px;
}
.bannerimage, .bannerimage img{
height:193px;
width:700px;
}
.bannertitle{
height:25px;
width:700px;
padding-top: 5px;
}
table.countryoverview{
width:220px;
height:197px;
font-size: 13px;
}

.rightpane table.countryoverview{
width:172px;
font-size: 13px;
}

.doormattoptext{
height:89px;
}
.surveyresults, surveyresultsitems, .surveyresulttemplateUL, surveyresulttemplateLI, .surveyresulttemplateLI table{
width:220px !important;
}
}




#pagemaster, #chapterpagemaster{
	position: relative;
	clear: both;
	float: left;
	width:100%;
	margin-bottom: 50px;
}

#header{
	position: relative;
	clear: both;
	float: left;
	width:100%;
}

#headercenter{
	margin: 0 auto;
	background-color:#d90327;
}

#menumaster{
	background-color: #e5e5e5;
}

#menucenter{
	margin: 0 auto;
}

#headerlogo
{
	float:left;
}
.headersearchpane{
	float: right;
}

#headermenu{
	float: right;
}
#contentcenter{
	margin: 0 auto;
}

#threeinarow, .fourinarow, #fiveinarow, #chapteroneinarow, #chaptertwoinarow, #chapterthreeinarow{
	position: relative;
	clear: both;
}

.pane
{
	position: relative;
	float: left;
	margin: 30px 20px 0 0;
}
#chaptercontent
{
	position: relative;
	float: left;
	margin: 0px 20px 0 0;
}

.panenotopmargin
{
	position: relative;
	float: left;
	margin: 0 20px 0 0;
}

.lastpane{
	position: relative;
	float: left;
	margin: 30px 0 0 0;
}

.lastpanenotopmargin{
	position: relative;
	float: left;
	margin: 0;
}

#doormat{
	position: relative;
	clear: both;
	float: left;
	width:100%;
	background-color:#e5e5e5;
	padding-bottom: 30px;
}

#footercenter{
	margin: 0 auto;
}

#footer{
	position: relative;
	clear: both;
	float: left;
	width:100%;
	background-repeat: repeat-x;
	background-color: #231f20;
}

#footercenter
{
	margin: 0 auto;
}

#leftmenufooter
{
	float: left;
}

#logofooter
{
	float: right;
}

.userlogon, a.userlogon, a.userlogon:link, a.userlogon:active, a.userlogon:visited
{
	text-decoration: none;
}

.DNNEmptyPane
{
	height: 0px !important;
	padding: 0px !important;
	margin: 0px !important;
}

.bannertitle, .bannertitle a, .bannertitle a:link, .bannertitle a:visited, .bannertitle a:active, .bannertitle a:hover{
font-weight: bold;
text-decoration:none;
color:#000;
padding-left:10px;
text-transform:uppercase;
background-color: #e5e5e5;
}
/* ==|== MEGADROPDOWN =======================================================
   CSS for megadropdown
   ========================================================================== */

ul.qparkmega{
	margin: 0;
	padding-top: 7px;
}

.qparkmega li.rootli{
	position:relative;
	float:left;
	color: #d90327;
	margin-right: 50px;	
	display: inline;
}


a.rootlink, a.rootlink:link, a.rootlink:active, a.rootlink:visited{
	font-weight: bold;
	vertical-align: middle;
	text-decoration: none;
	color: #d90327;
}

a.rootlink:hover, a.selected, a.selected:link, a.selected:active, a.selected:visited{
	color: #000;
}

.seperatortd{
	width:10px;
}

.categorytitle{
	padding-top: 10px;
	padding-left: 10px;
	font-weight: bold;
}

.qparkmega li.leaf{
	list-style-image:url('img/red_bullet.gif');
	margin-left: -5px;
}


.qparkmega .megaborder
{
	position: absolute;
	top: 40px;
	background-color: #e5e5e5;
	z-index: 999999;
	-moz-box-shadow: 2px 2px 2px #888;
	-webkit-box-shadow: 2px 2px 2px #888;
	box-shadow: 2px 2px 2px #888;
	display: none;
	padding: 10px 0px 10px 10px;
}




.qparkmega ul.categories li.category
{
	position: relative;
	float: left;
	margin-right: 20px;
}
.qparkmega ul.categories li.category a
{
	font-weight: bold;
	vertical-align: middle;
	text-decoration: none !important;
	color: #d90327;
	border: 0px !important;
}
.qparkmega ul.categories li.category a .category_text
{
	margin-left: 10px;
}
.qparkmega ul.categories li.category a .category_image
{
	border: 0px;
}
.qparkmega ul.leafs
{
	margin-top: 10px;
	margin-bottom: 20px;
}
.qparkmega ul.leafs li.leaf
{
	clear: both;
}
.qparkmega ul.leafs li.leaf a
{
	font-weight: normal;
	vertical-align: middle;
	text-decoration: none !important;
	color: black;
	font-size: 84%;
}
.qparkmega ul.leafs li.leaf a:hover
{
	text-decoration: none !important;
	color: #d90327;
	font-size: 84%;
}
.qparkmega ul.leafs li.leaf a .leaf_text
{
	margin-left:16px;
}
.rcbSlide
{
	z-index: 20000 !important;
}
.MainMenu
{
	background-color: #CCCCCC;
	padding-left: 300px;
	height: 35px;
}
.megaborder
{
	line-height: normal;
}

#SkinMaster
{
	margin-left: 20%;
	width: 1080px;
}
.SkinTopHome
{
	background-color: #d90327;
}


/* ==|== CONTAINERS =======================================================
   CSS for Containers
   ========================================================================== */
.adminheader
{
	position: relative;
	margin:0;
	width: 100%;
	height: 26px;
	background-color: #ccffcc;
	padding: 0px;
	margin-bottom: 10px;
	font-family: "courier new", verdana;
	font-size: 12px;
}
.ModuleTitle_MenuItem
{
	border: 0 !important;
}
.adminheader, .adminheader .commandbutton, .adminheader a, .adminheader a:link, .adminheader a:active, .adminheader a:visited
{
	color: #000;
}

.adminheader a:hover
{
	color: #d90327;
}

.leftadminheader
{
	position: relative;
	float: left;
	background-color: #ccffcc;
	padding: 0px 5px;
}

.rightadminheader
{
	position: relative;
	float: right;
	background-color: #ccffcc;
	width: 20px;
}

#divcontainerimage
{
	position: relative;
	clear: both;
	float: left;
	width: 100%;
	margin: 0px;
	padding: 0px;
	border: 0;
}

#divcontainerimage img
{
	width: 100%;
	margin: 0px;
	padding: 0px;
}

.admin #divcontainerimage, .admin #divcontainerimage img
{
	height: 10px;
	width: 10px;
}

#divcontainertitle
{
	position: relative;
	clear:both;
	float: left;
	width: 100%;

	color: #fff;
	margin: 0px;
	margin-top: 15px;
}

#divcontainertitle H1
{
}

#divcontainertitlewhite{
background-color: transparent;
border-bottom: 2px solid #a7a9ac !important;
}

#divcontainertitlewhite .Head{
color: #a7a9ac;
font-size: 100%;
}

#divcontainertitlered{
background-color: #d90327;
border-bottom: 2px solid #a7a9ac !important;
padding-left: 10px;
}

#divcontainertitlered .Head{
color: #fff;
font-size: 100%;
}

.divcontainertextred{
clear:both;
background-color:#eee;
}

#divcontainertitlegrey{
background-color: #a7a9ac;
border-bottom: 2px solid #a7a9ac !important;
padding-left: 10px;
}

#divcontainertitlegrey .Head{
color: #fff;
font-size: 100%;
}

.divcontainertextgrey{
clear:both;
}

.leftimagetable{
width:100%;
}

.leftimageimage img{
width:100%;
}

.leftimagespacer{
width:20px;
}


.linkbutton, a.linkbutton,a.linkbutton:link,a.linkbutton:visited {
display:block;
float:right;
background-color:#a7a9ac;
border: none;
text-decoration:none;
font-weight:700;
color:#fff !important;
cursor:pointer;
margin:0;
white-space: nowrap;
}

a.linkbutton:active,a.linkbutton:hover{
background-color:#85878a;
}

.actionbutton, a.actionbutton,a.actionbutton:link,a.actionbutton:visited {
display:block;
float:right;
background-color:#7fc45a;
border: none;
text-decoration:none;
font-weight:700;
color:#fff !important;
cursor:pointer;
margin:0;
white-space: nowrap;
}

a.actionbutton:active,a.actionbutton:hover{
background-color:#5da238;
}

.readmorebutton, a.readmorebutton, a.readmorebutton:link, a.readmorebutton:visited{
color: #a7a9ac;
font-weight:bold;
font-size: 100%;
text-decoration:none;
}

a.readmorebutton:active,a.readmorebutton:hover{
color:#85878a;
}

.doormattable{
width:100%;
}

.doormatimage{

}

.doormattoptext{
background-color:#85878a;
padding: 5px 8px 0px 8px;
color:#fff;
}

.doormattitle{
padding-left: 10px;
padding-top: 5px;
font-size:100%;
font-weight:bold;
color:#d90327;
}

.doormattitle a{
text-decoration:none !important;
color:#d90327 !important;
}

.doormattext{
padding: 0px;
}

.doormattext a{
text-decoration:none !important;
color:#000 !important;
}

.doormattext a:hover{
text-decoration:none !important;
color:#d90327 !important;
}

.ControlPanel {
width: 100%;
height: 64px;
background-color: #FFFFFF;
BORDER: #A62A00 1px solid;
}
.Head{
font-size:104%;
font-weight:bold;
color:#d90327;
}
.SubHead{
font-size:102%;
font-weight:bold;
}
.SubSubHead {
font-weight:bold;
}
.NormalBold{
font-weight: bold
}
.NormalRed{
font-weight: bold;
color: #ff0000
}
.NormalTextBox{
font-weight: normal;
}
.StandardButton{
padding: 0px 5px;
font-weight: normal;
background: #dddddd;
color: #000000;
}
H1{
font-size:110%;
font-weight:bold;
color:#d90327;
}
H2{
font-size:108%;
font-weight:bold;
color:#d90327;
}
H3{
font-size:106%;
font-weight:bold;
color:#d90327;
}
H4{
font-size:104%;
font-weight:bold;
color:#d90327;
}
H5{
font-size:102%;
font-weight:bold;
color:#d90327;
}
H6{
font-weight:bold;
color:#d90327;
}
TFOOT, THEAD{
color:#d90327;
}
TH{
vertical-align: baseline;
font-weight:bold;
color:#d90327;
}
a, a:link, a:visited, a:active{
text-decoration:underline;
color:#d90327;	
}
A:hover{
color:#000;	
}
a.loginbutton:link, a.loginbutton:visited, a.loginbutton:active, a.loginbutton:hover{
color:#d90327;	
}
BLOCKQUOTE, PRE {
font-family:Lucida Console, monospace;
}
ul{
padding-top: 0px;
margin-top: 1px;	
padding-bottom:0px;
margin-bottom:0px;
}
UL LI{
list-style-image:url(img/red_bullet.gif);
}
UL UL LI{
list-style-image:url(img/black_bullet.gif);
}
UL UL UL LI {
list-style-image:url(img/grey_bullet.gif);
}
OL LI   {
	  list-style-type:    decimal;
}

OL OL LI    {
	  list-style-type:    lower-alpha;
}

OL OL OL LI {
	  list-style-type:    lower-roman;
}

HR {
    color: dimgrey;
    height:1pt;
    text-align:left
}






































