/*
This style sheet is used for the main content area.

<!--- ---------------------------------------------------------------------
'Sites Style Sheet              CompuCraft Software Solutions (c) 1999-2008
'Date --- Init Reason----------------------------------------------
'23/03/06 DB finalised for ComWeb StandardV42
'11/04/06 DB incorporated new step container, and made some minor improvements
'26/04/06 DB added styling for alphabetised navigation
'02/08/06 DB added pseudo-class section:after to allow a float wrap in Firefox and potentially IE7 when released
'27/09/06 DB modified steps containers, new default is plain, additional style of outlined elements
'03/10/06 DB added section h2s, designed to look the same as the original h3s
'24/10/06 DB added provision for acronym and image borders
'31/10/06 DB modified spacing nested lists, especially where lead-in text is used
'09/11/06 DB modified titletext to become TitleText. To match markup, and creates bold and enlarged text.
'21/11/06 DM section th alignment removed, and instead section th.QHeader has new style of center
'06/02/07 DB added indent class to the steps container rules
'06/02/07 DB added style for banner line height
'06/02/07 DB added float drop fix for IE italic bug (involving p)
'19/03/08 ---DB start multiple updates accrued from SampleV4 for v431 release
'19/03/08 DB added indent class to the steps container rules
'19/03/08 DB added text-align left to the generic section th (th.Qheader remains centered)
'19/03/08 DB added new pageTop rule to align horizontally
'19/03/08 DB added generic th background colour, to expand upon th.QHeader
'19/03/08 DB removed div.Page_Title_Banner2 (legacy from earlier version) of ComWeb
'19/03/08 DB lessened default indent and added wider indent on the steps container (uses class of indent and indentMore)
'19/03/08 DB added styles for the form select to be same as form input
'19/03/08 DB added margin and font-family settings for textarea (textareas are usually incapable of inheriting the body font)
'19/03/08 DB added new float clearing method (using overflow: hidden) for images within sections, which also prevents sections from underlapping newsTicker and rightFeatures.
'19/03/08 DB added border-collapse:collapse so all browsers have 1px table borders.
'19/03/08 DB added non-IE bugfix to reveal the table's left border (using margin-left: 1px), obscured by the overflow: auto and/or hidden used for the clearing method in mainContent.css
'19/03/08 DB added fix for guillotine bug that was re-invoked by the floatclearing fix above (23/01/08)
'19/03/08 DB added table th padding
'19/03/08 DB added table.borderless to create 'invisible' tables in certain situations
'19/03/08 DB added td.QRow1 and td.QRow2 color reference
'19/03/08 DB added table background color reference
'19/03/08 DB added table text color reference
'19/03/08 DB added table th text and background colours
'19/03/08 DB amended #rightContent #rightFeature to become #rightContent .rightFeature (class instead of id)
'19/03/08 DB added border: 0 none to .icon
'19/03/08 DB coupled .newWindow with all .icon selectors
'19/03/08 DB added comment for theme editor - section background color reference
'19/03/08 DB added ul.titleText li and associated line height
'19/03/08 DB updated style sheet copyright date to 2008
'19/03/08 DB added display controls for survey results
'19/03/08 DB added form margin zeroing
'19/03/08 DB amended float drop fix for IE italic bug (involving #mainContent .section rather than #mainContent p)
'19/03/08 DB changed section h3 from 600 to bold
'19/03/08 ---DB end multiple updates accrued from SampleV4 for v431 release
'---------------------------------------------------------------------- --->

note: comments starting with cw- are used by the ComWeb Style Sheet Theme (colour) Editor.
Where more than one such comment is on consecutive lines, this is for backwards compatibility.
The first of these such lines is the latest label for the Style sheet editor to display and
the latter entries are older or Redundant labels.
*/

/*assume all sections to be part of #mainContent*/

acronym {
/* cw-Acronym underline color */
	border-bottom-color: #000000;
	border-bottom-style:  dotted;
	border-bottom-width: 1px;
}

 img { 
/* cw-Image Border */
	border-color: #C3D3F8;
 }

#content ul {/*for left and right content*/
	list-style-position: outside;
	margin: 1em 1.2em;/*1.2em left will make flush left*/
}

#content .section ul {/*for section content only, NOT left and right content*/
	list-style-position: outside;
	margin: 1em 3.2em 1.6em;/*1.2em left will make flush left*/
}

#content .section ul li p {
	margin-top: 1.6em;
}

#content ol {/*for left and right content*/
	list-style-position: outside;
	margin: 1em 1em 1em 3.5em;/*extra wide margin-left to prevent numbered lists of 2-and-3 digits from being cut off, 3.5em will make flush left*/
}

#content .section ol {/*for section content only, NOT left and right content*/
	list-style-position: outside;
	margin: 1em 1em 1em 5.5em;/*extra wide margin-left to prevent numbered lists of 2-and-3 digits from being cut off, 3.5em will make flush left*/
}

input.btn {
	/*background-color: transparent;
	/*background-image: url(../../theme/grey_grad.gif);*/
	/*background-image: url(bg_searchButton.jpg);
	background-repeat: no-repeat;
	border:none;*/
}

input.btn * {
	display:none;
}

.section {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
/* cw-Section Divider Line */
	border-bottom-color:  #C3D3F8;
 /*preventing the IE peekaboo bug, see http://www.positioniseverything.net/explorer/peekaboo.html*/
	position:relative;
/*end prevent IE peekaboo bug*/
/* cw-Section Background  */
	background: transparent;
/* Assist with clearing floated images within sections. Also prevents section from underlapping of the newsTicker and rightFeatures. IE6 does not need any of this. This is fortunate, as it would conflict with the fix for the IE6 float drop italic bug, which uses _overflow: visible */
	overflow: hidden;/*auto worked, hidden worked better in Firefox. eg. section divider line was being cut off the section which rounded the right column */
}

 /* Hide the rule from IE5-mac \*/
 /*Holly Hack, IE only, to force to fix the three-pixel text-jog bug */
 /*preventing the three-pixel text-jog bug, see http://www.positioniseverything.net/explorer/threepxtest.html*/
 /*as a bonus, it also forces IE into 'hasLayout' mode, thus rendering the line beneath the sections properly, fixing the peekaboo bug*/
* html .section {
	height: 1px;
}
 /* End Hide the rule from IE5-mac */
 
  /* Hide the rule from IE5-mac \*/
 /*IE only, to force to fix the guillotine bug */
 /*preventing the guillotine bug, see http://www.positioniseverything.net/explorer/threepxtest.html and http://css-class.com/articles/explorer/guillotine/index.htm*/
 /*as a bonus, it also forces IE into 'hasLayout' mode, thus rendering the line beneath the sections properly, fixing the peekaboo bug*/
* html .section p {
	height: 1%;
}
 /* End Hide the rule from IE5-mac */ 

.section p.infolist{
	text-indent:5%;
	font-family:Arial,sans-serif;
}

.section p.draft{
	color:#333333;
}

.section p.indent {
	margin-left:40px;
	margin-right:60px;
}

.section h2  {
/* cw-Body Text */
	color:#000000;
}

.section h3  {
	font-weight:bold;
/* cw-Section Heading Text */
	color: #000066;
	line-height: 1em;
}

.section h3.querytitle  {
	text-align:center;
/* cw-Body Text */
	color:#000000;
}

.section .title{
	font-size: 1.4em;
	font-weight:bold;
	text-align:Center;
/* cw-Body Text */
	color:#000000;
}

/* Used for top table in Search Screen */
table.search{
/* cw-Search Table Background */
	background-color:#E9E9F2;
}

table.SearchMain{
/* cw-Search Table Background */
	background-color:#E9E9F2;
}

.section td{
	vertical-align:top;
}

.section th{
	font-weight:bold;
/* cw-Body Text */
	color:#000000;
	vertical-align:top;
	text-align: left;
}

.section td.numlist{
	font-weight:bold;
}

.section tr.small{
	font-size:.8em;
/* cw-Small Text */
	color:#005DAA;
}

.section tr.smallnavy{
	font-size:.8em;
	line-height:1em;
	font-family:Arial,sans-serif;
	color:#000080;
}

.section td.TitleText{
	font-size:1.2em;
	font-weight:bold;
}

ul.titleText li{
	line-height:1em;
}

.section tr,
.portal tr {
	font-size: 1em;
}

.section tr.QHeader,
.portal tr.QHeader{
	font-weight:800;
/* cw-Table Header Text */
	color:#FFFFFF;
/* cw-Table Header Background */
	background-color:#191978;
	text-align:center;
}

.section th,
.section th.QHeader,
.portal th.QHeader{
	font-weight:800;
/* cw-Table Header Text */
	color:#FFFFFF;
/* cw-Table Header Background */
	background-color:#191978;
	padding-left: 5px;
	text-align:center;
}

.section tr.QRow1
.portal tr.QRow1, {
/* cw-Row 1 Background */
	background-color:#FFFFFF;
/* cw-Row 1 Text  */
	color: #000000;
}

.section tr.QRow2,
.portal tr.QRow2 {
/* cw-Row 2 Background */
	background-color:#E9E9F2;
/* cw-Row 2 Text  */
	color: #000000;
}

.section td.QHeader,
.portal td.QHeader{
	font-weight:800;
/* cw-Table Header Text  */
	color:#FFFFFF;
/* cw-Table Header Background */
	background-color:#191978;
	text-align:center;
}

.section td.Trim,
.portal td.Trim{
	height:2px;
/* cw-Table Header Trim */
	background-color:#FF0000;
}

/* TD.QRow1 used for individual cells on Search Screen. Same as TR.QRow1 */
.section td.QRow1,
.portal td.QRow1{
/* cw-Table Row 1 Background */
	background-color:#FFFFFF;
/* cw-Table Row 1 Text */
	color:#000000;
}

.section td.QRow2,
.portal td.QRow2{
/* cw-Table Row 2 Background */
	background-color:#E9E9F2;
/* cw-Table Row 2 Text */
	color:#000000;
}

.section td.wsbheader1{
	font-size:1em;
	font-family:Arial,sans-serif;
	font-weight:800;
/* cw-WSB Title */
	color:#000000;
	text-align:center;
}

.section td.wsbheader2{
	font-size:1.2em;
	font-family:Arial,sans-serif;
	font-weight:800;
/* cw-Table Header Text */
	color:#FFFFFF;
	text-align:center;
}

.section table.wsb{
/* cw-WSB Table Borders */
	border-color:#174BB9;
}

.section td.caption,
.portal td.caption{
	font-weight:bold;
	text-align:center;
/* cw-Image Caption Text */
	color: #000080;
}

.section .edited{
	background-color:#FFFF00;
}

.section .otheredited{
	background-color:#FFCC33;
}

.section .submitted{
	background-color:#99FF99;
}

.section .accepted{
	background-color:#99CCFF;
}

.section .rejected {
	background-color:#FFCCCC;
}

.section .remove {
	background-color:#C0C0C0;
}

/*This is the section header - it is also the targetted anchor for TOC*/
.section a.h2,
.section td.h2,
.section h2 a,
.section h2 a:hover,
.section a.h3,
.section td.h3,
.section h3 a,
.section h3 a:hover
{
/* cw-Section Heading Text */
	color: #000066;
	line-height: 1em;
	background: transparent;
	font-weight: 600;
	text-decoration: none;
	display: block;
	margin: 0;
	padding: 0 0 10px 0;
} 

.pageTop {
	position:absolute;
	right:0;
	_top: 8px;/*for IE6 only */
}

*  html .pageTop {/*for IE6 only */
	padding: 0;
	height: 1px;
}

.pageTop img {
	margin-right: 10px;
	float: right;
	border:none !important;
}

/*Site map link styles*/
.section a.SiteMapURL,
a.SiteMapURL {
/*no longer required due to overriding general anchor ruling*/
}

/* Used for the site map titles that are not links*/
.section a.SiteMapNoURL,
a.SiteMapNoURL {
/* cw-Site Map Links with No URL */
	color:#666666;
	text-decoration:none;
}

.section a.SiteMapURL:visited{
/* cw-Body Text */
	color:#000000;
}

.section a.h3:visited{
/* cw-Body Text */
	color:#000000;
}

a.HeirLinks,
a.SiteLinks {
/* cw-Heirarchy Link Text */
	color:#FFFFFF;
	text-decoration:none;
	font-variant:small-caps;
	font-weight: bold;
}

.section td.HeirLinks{
	font-size:x-small;
	font-variant:small-caps;
/* cw-Heirarchy Inactive Link or Text  */
	color:#333333;
	padding-bottom:1px;
}

.section a.HeirLinks, .section a.HeirLinks:visited{
/* cw-Heirarchy Link Text */
	color:#FFFFFF;
	font-size:x-small;
	font-variant:small-caps;
	text-decoration:none;
}

.section a.HeirLinks:hover{
/* cw-Heirarchy Link Hover Text */
	color:#0000FF;
	font-size:x-small;
	font-variant:small-caps;
	text-decoration:underline;
}

.section p.SectionTOC{
	text-align:right;
}

.section caption {
	font-size:10px;
	font-family:Verdana,Geneva,Arial,Helvetica,sans-serif;
	font-weight:bold;
}

a.AliasNotSet, a.AliasNotSet:visited{
	color: #333333;
}

a.AliasNotSet:hover{
	color:#FF0000;
	text-decoration:underline;
}

/*GENERIC TABLE RULES - WILL BE OVERRIDDEN BY MORE SPECIFIC CLASSES*/
table {
	margin-bottom: 10px;
	font-size: inherit;/*for FireFox only*/
/* cw-Table border */
	border-color: #666666;
	/*the border weight is set in the markup*/
	border-collapse: collapse;/*enables single-width borders between table cells */
	margin-left: 1px; /* to assist Firefox, which cuts off the left border due to the overflow: auto applied to the section. Ultimately will need to find another way to solve this, as sometimes the table may want a negative margin for positioning.*/
	*margin-left: 0;/*for IE6 and 7 */
/* cw-Table background colour */
	background: #FFFFFF;
/* cw-Table text */
	color: #000000;
}

/*Targetting IE only, to accommodate differences in treatments of tables*/
* html table {
	font-size: 1em;/*IE ignores the default body font-size, must be respecified here. 1em sets whatever the percentage is already set in the body rule*/
}

table.tdPad td,
table.padding td {
	padding: 5px;
}

table table {
	margin-bottom: 0;
}

#leftContent table {
/* cw-Left Content Table Background */
	background: #FFFFFF;
}

#leftContent #leftFeature table {
/* cw-Left Feature Table Background */
	background: #FFFFFF;
}

#rightContent table {
/* cw-Right Content Table Background */
	background: #FFFFFF;
}

#rightContent .rightFeature table {
/* cw-Right Feature Table Background */
	background: #FFFFFF;
}

table td {
	padding: 0 5px;
/* cw-Table border */
	border-color: #666666;
	/*the border weight is set in the markup*/
}

td  {
	vertical-align: top;
}

td p {
	vertical-align: top;
	padding:0;
	margin: 0;
}

td.surveyHeading {
	font-weight: bold;
	margin-bottom: 1em;
	height: 30px;
}

table th {
	padding: 5px;
/* cw-Table th background colour */
	color: #FFFFFF;
/* cw-Table th text colour */
	color: #000000;

}

form {
	margin:0;
	padding:0;
	}

form table tr td input,
form table tr td select,
form table tr td textarea,
 {
	margin: 2px 5px;
	font-family: arial;/*textarea does not inherit, so has to be set explicitly*/
}

/* rule for browsers with CSS2 support*/
form table tr td input[type=submit] {
	margin: 5px;
}

form table tr td input.btn {
	margin: 10px 0 5px;
}

.section table img {
	border:none;
}

table.borderless {
	border: 0 none!important;
}

/*
===========================================================
BANNERS
=========================================================== 
*/

#Banner1,
.Banner1 {
/* cw-Banner 1 Text */
	color: #000000;
	font-weight: bold;
/* cw-Banner 1 Background */
	background-color: #FFFFCC;
	border-width: 2px;
	border-style: solid;
/* cw-Banner 1 Border */
	border-color: #174BB9;
	padding: 10px;
	font-size: 1.0em;
	position: relative;
	text-align: center;
	width: auto;
	height: auto;
}

#Banner2,
.Banner2 {
/* cw-Banner 2 Text */
	color: #3333CC;
	font-weight: bold;
	font-family: "Trebuchet MS", sans-serif;
/* cw-Banner 2 Background */
	background-color: #FFFFFF;
	border-width: 6px;
	border-style: double;
/* cw-Banner 2 Border */
	border-color: #174BB9;
	padding: 10px;
	font-size: 1.5em;
	position: relative;
	text-align: center;
	width: auto;
	height: auto;
}

#Banner3,
.Banner3 {
/* cw-Banner 3 Text */
	color: #444499;
	font-weight: bold;
	font-family: cursive, serif;
/* cw-Banner 3 Background */
	background-color: #EEEEFF;
	border-width: 4px;
	border-style: ridge;
/* cw-Banner 3 Border */
	border-color: #0054E3;
	padding: 10px;
	font-size: 1.5em;
	position: relative;
	text-align: center;
	width: auto;
	height: auto;
}

#Banner4,
.Banner4 {
/* cw-Banner 4 Text */
	color: #174BB9;
	font-weight: bold;
	font-family: Verdana, Arial, sans-serif;
/* cw-Banner 4 Background */
	background-color: #E9E9F2;
	border-left-width: 10px;
	border-left-style: double;
/* cw-Banner 4 Border Left */
	border-left-color: #174BB9;
	border-right-width: 10px;
	border-right-style: double;
/* cw-Banner 4 Border Right */
	border-right-color: #174BB9;
	padding: 10px;
	font-size: 1.2em;
	position: relative;
	text-align: center;
	width: auto;
	height: auto;
}

#Banner5,
.Banner5 {
/* cw-Banner 5 Text */
	color: #EAF2FF;
	font-weight: bold;
	font-family: Verdana, Arial, sans-serif;
/* cw-Banner 5 Background */
	background-color: #174BB9;
	border-top-width: 4px;
	border-top-style: dashed;
/* cw-Banner 5 Border Top */
	border-top-color: #000000;
	border-bottom-width: 4px;
	border-bottom-style: dashed;
/* cw-Banner 5 Border Bottom */
	border-bottom-color: #000000;
	padding: 10px;
	font-size: 1.2em;
	position: relative;
	text-align: center;
	width: auto;
	height: auto;
}

/*Targetting IE only,  to supply different widths*/
* html #Banner5,
* html .Banner5 {
	border-top-width: 2px;
	border-bottom-width: 2px;
}

  /*Holly Hack, IE only, to force into 'hasLayout' mode and fix the peekaboo bug*/
* html .Banner1, 
* html .Banner2,
* html .Banner3,
* html .Banner4,
* html .Banner5 {
	height: 1px;
	width:auto;
}

#content .icon,
#content .newWindow {
	padding-right: 5px;/*uses padding rather than margin, so that the hover bgd color is joined across the gap*/
	border: 0 none!important;
}

p.error {
	font-weight: bold;
	color: #FF0000;
	padding: 10px;
	border: 2px solid #FF0000;
}

.pageNameLong {
	padding-top: 20px;
/* cw-Page Name */
	color: #000000;
}

body.home .pageNameLong {
	padding-top: 0px;
}





/*
NEW ELEMENTS BEYOND INITIAL V42
-----------------------------------------------------------------------------------------------------------------*/
/* 'steps' container
---------------------------------------------------- */
.indent.cwContainer {
width: 99%;
padding-top: 0px;
padding-bottom: 10px;
margin-bottom: 10px;
}

.indent.cwContainer.outlined {
border: 1px solid silver;
}

* html .indent.cwContainer {
padding-top: 10px;
}

/* 'steps' container step
---------------------------------------------------- */
.indent div.cwNumber,
.indentMore div.cwNumber {
float: left;
display: inline;
padding-bottom: 10px;
margin-top: 0;
padding-top: 3px;/*to assist alignment with content in cwInformation */
margin-left: -70px;
}

.indent div.cwNumber {
width: 100px;
}

.indentMore div.cwNumber {
width: 150px;
}

.indent.cwContainer.outlined div.cwNumber {
margin-left: -60px;
background: #eeeeee;
margin-top: 0;
border-top: 5px solid silver;
}

.indent div.cwNumber h3 {
margin: 0 10px 0 0;
}

.indent div.cwNumber p,
.indent div.cwNumber ul,
.indent div.cwNumber ol {
margin: 0 10px;
}

.indent.cwContainer.outlined div.cwNumber h3 {
margin: 10px;
margin-bottom: 0;
}

/* 'steps' container main information
---------------------------------------------------- */
.indent .cwInformation,
.indentMore .cwInformation {
margin-left: 70px;
margin-right: 10px;
}

/* 'steps' container tables
---------------------------------------------------- */
.indent.cwContainer table {
font-size: 1em;
width: 100%;
border-top: 1px solid #ddd;
}

.indent.cwContainer td {
padding-left: 5px;
padding-top: 5px;
padding-bottom: 5px;
vertical-align: top;
border-bottom: 1px solid #ddd;
}

.indent.cwContainer td.label {
padding-right: 10px;
width: 100px;
font-weight: bold;
}

/* 'steps' container forms
---------------------------------------------------- */
.indent.cwContainer input {
margin-bottom: 3px;
margin-left: 3px;
}

.indent.cwContainer input.fullWidth {
width: 100%;
}

.indent.cwContainer input.halfWidth {
width: 50%;
margin-right: 0;
}

 /* Hide the rule from IE5-mac \*/
 /*Holly Hack, IE only, to force to fix the three-pixel text-jog bug */
 /*preventing the three-pixel text-jog bug, see http://www.positioniseverything.net/explorer/threepxtest.html*/
 /*as a bonus, it also forces IE into 'hasLayout' mode, thus rendering the line beneath the sections properly, fixing the peekaboo bug*/
* html .cwContainer .IE-3pxJogFix
 {
	height: 1px;
}
 /* End Hide the rule from IE5-mac */
 
 
 
 
 
 /* Alphabetised Navigation Page/Meta Links
---------------------------------------------------- */
div.cwAlphaFilter {
	text-align:left;
	margin: 0 0 20px 0;
	width:95%;/* same width as the tables being created for the displayed entries*/
	padding:0 0 0 8px;
/* cw-Alphabetised Navigation Overall Strip Background */
	background-color: #174BB9;
	border-top: 3px solid #3980F4;
	border-bottom: 3px solid #3980F4;
	height: 1.7em;/*variable height aids accessibility*/
	line-height: 1.7em;/*vertically-center the single line of text*/
}

#content div.cwAlphaFilter ul {
	float: left;
	list-style-type: none;
/* Alphabetised Navigation Items Unordered List Background */
	background-color: transparent;
/* cw-Alphabetised Navigation Text */
	color : #FFFFFF;
	margin: 0;
	padding:0;
	width: auto;
	height: 30px;
}

#content div.cwAlphaFilter li {
	float: left;
	padding: 0;
	margin: 0px;
/* cw-Alphabetised Navigation Individual Menu Items Background */
	background-color: transparent;
	height: 30px;
}

div.cwAlphaFilter li.notUsed {
/* cw-Alphabetised Navigation Background Not Used */
	background-color: transparent;
	height: 30px;
	line-height: 30px;
	padding: 0 4px;
	color: #666666;
}

#content div.cwAlphaFilter a {/*all anchors*/
	padding: 0 7px;
	margin:0;
	height: 30px;
	line-height: 30px;
	float:left;
	display:block;
	text-decoration: none;
}

#content div.cwAlphaFilter li.used a:link, 
#content div.cwAlphaFilter li.used a:visited {
	font-weight : bolder;
/* cw-Alphabetised Navigation Menu Item Text Link */
	color: #FFFFFF;
	text-decoration: none;
	height: 30px;
	line-height: 30px;
}

#content div.cwAlphaFilter li.used a:hover {
	font-weight : bolder;
/* cw-Alphabetised Navigation Menu Item Text Link Hover */
	color: #000000;
	text-decoration: none;
/* cw-Alphabetised Navigation Menu Item Text Link Hover Background */
	background-color: #CCCCCC;
}

#content div.cwAlphaFilter li.current a {
/* cw-Alphabetised Navigation Menu Current Item Background */
	background-color: #666666;
/* cw-Alphabetised Navigation Menu Current Item Text Link */
	color: #FFFFFF;
	text-decoration: none;
}

p.RSSTitle {
	margin-bottom : 0px;
}

.portlet .pageTop {
	display:none;
}

div.portlet {
margin: 0px;
border: 1px solid #D6D6E7;
background-color:#FFFFFF;
color:#000000;
padding: 10px;
overflow: hidden;
}

div#LatestNews {
overflow-y: none;
overflow-x: none;
overflow: none;
background: #E9E9F2;
}

/*NewsTicker stops at the right place with borders enabled */
#LatestNews div, div.NewsTicker div{
border:1px solid #E0E0ED!important;
}

div.portlet h2 {
color: #000066;
font-weight: normal;
padding: 3px 10px 3px 45px;
height: 40px;
background: url(icon_logo.jpg) 0 0 no-repeat;
margin-top:-10px;
margin-left: -10px;
margin-right: -10px;
line-height: 30px;
vertical-align: middle;
}

/*Targetting the default banner style*/
p span	{
	line-height: 1;
	}
	
/*Fix for the IE 6 float drop italic bug, for more information, see http://www.positioniseverything.net/explorer/italicbug-ie.html*/	
#mainContent .section {
	_overflow: visible;
	_height: 1%;
	_width: auto;
	}
	
/* Hide all survey results */
body.hideSurveyResults td.surveyBars, 
body.hideSurveyResults td.surveyPercent, 
body.hideSurveyResults td.surveyVotes {
	display: none;
}

/* Hide only survey result bars */
body.hideSurveyBars td.surveyBars {
	display: none;
}

/* Hide only survey percent symbol */
body.hideSurveyPercent td.surveyPercent {
	display: none;
}

/* Hide only survey vote count */
body.hideSurveVotes td.surveyVotes {
	display: none;
}

/* Make screen table styles disappear */                                 
	
.noTableStyle tr.QHeader,
.noTableStyle td.Trim {
	display:none;
}

.noTableStyle table,
.noTableStyle tr.QRow1,
.noTableStyle tr.QRow2,
.noTableStyle td.QRow1, 
.noTableStyle td.QRow2 {
	background:transparent!important;
}

.noTableStyle table,
.noTableStyle table tr,
.noTableStyle table td {
	border: 0 none!important;
	padding:0;
}

 /* Non-Standard Additions
------------------------------------------------------------------------------------- */

#ScoutingMembers {
overflow-x: hidden;/*for IE6 and 7 only*/
overflow-y: auto;/*for IE6 and 7 only*/
}
