/*****************************************************************************************************

This file should contain all div tags structuring the layout of the website

reasoning : 

so this style sheet could be used to re-structure the website and when removed
should produce the website as a easily readable list which can be used for small
screens (such as phones)

*****************************************************************************************************/

/*************************************** Structure Settings *****************************************/

html
{
	margin:0px;
	padding:0px;
}
body
{
	margin:0;
	padding:0;
	line-height: 1.2em;
	text-align:left;
}

#layout
{
	padding: 0 0px 0 0px;
	width:1000px;
	margin:auto;
}
#header
{
	padding:15px 0;
	overflow:visible;
}
#contentwrapper
{
	float: left;
	width: 100%;
}
#contentcolumn
{
	margin: 0 210px 0 250px; /*Margins for content column. Should be "0 right-column-width 0 left-column-width*/
}
#leftcolumn
{
	float: left;
	width: 225px; /*Width of left column in percentage*/
	margin-left:-988px;
}
#rightcolumn
{
	float: right;
	width: 185px; /*Width of right column in pixels*/
	margin-left:-195px;
	margin-right:10px;
}
#footer
{
	width: 100%;
	height:auto; /*Height of bottom section*/
	color: #999999;
	text-align: left;
	padding: 4px 0;
	clear:both;
}

.padding { margin:10px; clear:both; /*Margins for inner DIV inside each column (to provide padding)*/ }
.hr { overflow:hidden; height:0px; clear:both; margin:0px; padding:0px; /*Force hr of floating objects*/ }/*****************************************************************************************************

This file should contain
1.) all site wide colour, background and font styles for html tags
2.) a selection of class(.) styles that can be used in the cms text editor

reasoning : so this style sheet could be used to re-style the website

*****************************************************************************************************/

/**************************************** Website Settings *******************************************/

body
{
	background:url(/images/bg.gif) center center repeat-y #dedb00;
	color: #707070;
	font: 12.5px Arial, Helvetica, sans-serif ; /* Medium = 11 px - Small = 9px */  font-weight:400;
}

#layout { background-color:#FFFFFF;	color: #707070; }

/******************************************** CMS Styles *******************************************/

body.mceContentBody
{
	background: none #ffffff;
	color: #000000;
}

.hightlight { color:#d3dc32 }
.captioned { border: 2px groove #ffffff; margin:20px; }

/**************************************** Text Settings **********************************************/

h1, h2, h3, h4, h5, h6
{
	font-weight: bold;
	line-height: 1.2em;
	margin: 0px 0px 1em 0px;
}
p
{
	margin: 0px 0px 1em 0px;
	line-height: 1.2em;
}
li
{
	margin: 0em;
	padding: 0em; 
	line-height: 1.2em;
}
a
{
	color:#373792;
	text-decoration:none;
}
a:hover
{
	color:#B081B9;
	text-decoration:underline;
}

/************************************** Image Settings ***********************************************/

img { border:0px solid #000000; }
div.image { width:auto; margin:20px; background-color:#000000; border: 2px groove #000000 }
div.image img.captioned { margin:5px !important; padding:0px !important; }
div.image div.caption { clear:both; width:auto; color:#FFFFFF }
div.image div.caption div.padding { margin:5px; padding:5px; font-size:0.8em; line-height:0.9em }

/************************************** Table Settings ***********************************************/

caption { text-align:left; }

/*************************************** Form Settings ************************************************/

form
{
	margin: 0px;
	padding: 0px; 
}
fieldset
{
	border: 1px solid #999;
	padding: 1em;
	margin: 0;
}
legend
{
	color: #000;
	font-size: 1.2em;
}
fieldset div
{
	clear: left;
	margin: 0.5em 0em 0em;
	padding: 0.1em 0.3em 0.1em 0em;
}
fieldset div label
{
	display: block;
	float:left;
	width: 20%;
	padding: 0em;
	margin: 0em 0.5em;
	text-align:right;
}
fieldset div span.block
{
	display: block;
	float:left;
	width: 75%;
	padding: 0em;
}
fieldset div * label
{
	display: inline-block;
	float:none;
	width:auto;
	padding: 0px;
	margin: 0px;
	text-align:left;
}
fieldset div input[type="text"],
fieldset div input[type="password"],
fieldset div textarea,
fieldset div select { width:60%; min-width:200px; max-width:400px; border: 1px solid black; margin-right: 1em; }
input:focus,
textarea:focus,
select:focus { border: 1px dotted black !important; }
input.error,
textarea.error,
select.error { border: 1px dotted red !important; }

label.error
{
	/* remove the next line when you have trouble in IE6 with labels in list */
	color: red;
	font-style: italic;
	text-align:left;
	width:auto;
}

/************************************** Header Navigation ***********************************************/

div.topmenu { position:relative; width:770px; top:-20px; left:240px; font: 12px Arial, Helvetica, sans-serif; color: #707070; }
.topmenu ul { z-index:100; margin: 0; padding: 0; list-style-type: none; }

/*Top level list items*/
.topmenu ul li { position: relative; list-style:none; display: inline; float: left; }

/*Top level menu link items style*/
.topmenu ul li a
{
	display: block;
	background: #fff; /*background of menu items (default state)*/
	color: #707070;
	padding: 0.3em 1em;
	border-right: 1px solid #eeeeee;
	text-decoration: none;
}

* html .topmenu ul li a { display: inline-block; } /*IE6 hack to get sub menu links to behave correctly*/
.topmenu ul li a:link, .topmenu ul li a:visited { color: #b9c4c6; }
.topmenu ul li a.selected { color:#189346; } /*CSS class that's dynamically added to the currently active menu items' LI A element*/
.topmenu ul li a:hover {  color: #189346; } /*background of menu items during onmouseover (hover state)*/
	
/*1st sub level menu*/
.topmenu ul li ul
{
	position: absolute;
	left: 0;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.topmenu ul li ul li { display: list-item; float: none; }
/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.topmenu ul li ul li ul { top: 0; }

/* Sub level menu links style */
.topmenu ul li ul li a
{
	width: 130px; /*width of sub menus*/
	padding:5px 10px 5px 10px;
	margin: 0;
	border-top-width: 0;
}

/* Holly Hack for IE \*/
* html .topmenu { height: 1%; } /*Holly Hack for IE7 and below*/

/* ######### CSS classes applied to down and right arrow images  ######### */
.downarrowclass { position: absolute; top: 0.5em; right: 7px; }
.rightarrowclass { position: absolute; top: 0.5em; right: 5px; }

/* ######### CSS for shadow added to sub menus  ######### */
.ddshadow
{
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	background: silver;
}
.toplevelshadow{ opacity: 0.8; } /*shadow opacity. Doesn't work in IE*/

div.topsubmenu ul
{
	margin:10px 0px;
	padding:10px 0px;
	background-color: #1b8d9a;
	list-style: none;
	color: white;
	float: left;
	width: 100%;
}
div.topsubmenu ul li { list-style: none; }
div.topsubmenu ul li a
{
	padding:0;
	background-color: #1b8d9a;
	color: #ffffff;
	text-decoration: none;
	display:block;
}
div.topsubmenu ul li a strong
{
	display:block;
	margin: 0;
	padding: 0.2em 1em;
}
div.topsubmenu ul li.last a strong { border-right:none }
div.topsubmenu ul li a:hover
{
	background:url(/images/topmenu_hover.gif) bottom right repeat-x #c4cbcc;
	color: #fff;
}
div.topsubmenu ul li a.selected { color:#189346; }

.logo
{
	/*background:url(/images/title-poppy.jpg) no-repeat;*/
	background:url(/images/title.jpg) no-repeat;
	height:101px;
	width:178px;
	float:left;
	margin-top: 35px;
	margin-left:32px;
}
.logo h1 { margin:0px; padding:0px; }
.logo h1 a
{
	text-indent:-99999px;
	display:block;
	height:101px;
	width:178px;
}

/************************************** Footer Settings ***********************************************/

div.footerbanner
{
	margin-left:-3px;
}
div.footermenu
{
	margin-top:20px;
	font-size:0.9em;
	margin-left:-10px;
	padding:5px;
}
div.footermenu ul
{
	list-style: none;
	margin: 0px;
	padding: 0px;
	border:none;
	display:inline;
}
div.footermenu ul li
{
	display:inline;
	list-style: none;
	padding:0px 5px;
	border-right:1px solid #999999;
}
div.footermenu ul li.last { border-right:none; }
div.footermenu ul li a { color:#999999; }
div.footermenu ul li a strong { font-weight:100 }
div.footermenu ul li a.selected strong { font-weight:bold }

/*************************************** Enquiry Form ************************************************/

#enquiryform input[type="text"] { width:98.5%; margin-bottom:5px;  }
#enquiryform select { width:100%; margin-bottom:5px; }
#enquiryform { padding-bottom:20px; margin-bottom:10px; border-bottom:1px solid #999999; }


/*************************************** Page Settings ************************************************/

.pagetitle {}
.pagetitle h2 { text-transform:uppercase; }
.pagetitle h3 { text-transform:lowercase; font-size:1.5em; margin-top:-10px }

div#breadcrumbs { margin-left:-10px; margin-bottom:1em; }

/*************************************** Content Settings *********************************************/

.intro {}
.content{}

/*************************************** List Settings ************************************************/

.groupmenu { margin-bottom:1em; }
.groupmenu li {}

.list { color:#707070; }
.list h3 { font-size:1em; border-bottom:1px solid #999999 }
.listgroup { }
.listgrouptitle { text-transform:lowercase; font-size:1.5em; }
.listrow {}
.listdetails {}
.listtitle { margin-bottom:0em; }
.listthumbnail
{
	float:left;
	margin:0 1em 1em 0;
	border-right:1px dashed #000000;
	padding-right:1em;
}
.listthumbnail a
{
	display:block;
	background-repeat:no-repeat;
	background-position:center center;
	width:100px;
	height:50px;
	text-decoration:none;
}
.listcaption { margin-bottom:1em; }
.listselect {}
.listmore { padding: 0 0 5px 0; margin:0 0 1em 0; text-align:right; border-bottom:1px solid #b9c4c6; }
.listunavailable {}
 
.selectedtitle {}
.selectedimage { display:inline; float:right; padding:0 0 1em 1em; }
.selectedtext {}
.selectedunavailable {}

.pagenavigation {}
.previouspage {}

/******************************************** LEFT COLUMN *******************************************/

#leftcolumn a { color:#009245; font:14px Arial, Helvetica, sans-serif; font-weight:bolder }
#leftcolumn a:hover { color:#dedb00; text-decoration:none;  }
#leftcolumn h3 { color:#009245; font:14px Arial, Helvetica, sans-serif; font-weight:bolder }

#leftcolumn p.more-info a { color:#99a2a3; font:10px Arial, Helvetica, sans-serif; font-weight:bold; float:right; }
#leftcolumn p.more-info a:hover { color:#dedb00;  }

#leftcolumn .stories { border-top:1px solid #b9c4c6; margin-top:20px; padding-top:5px; }
#leftcolumn .story-content { padding-bottom:11px; margin-top:5px; color:#707070 }

#leftcolumn .video { border-top:1px solid #b9c4c6; margin-top:10px; padding-top:5px; }
#leftcolumn .view-video { padding-bottom:11px; margin-top:5px; }

#leftcolumn .client { border-top:1px solid #b9c4c6; margin-top:10px; padding-top:5px; }

#leftcolumn .the-board { border-top:1px solid #b9c4c6; margin-top:10px; padding-top:5px; }

#leftcolumn .social { border-top:1px solid #b9c4c6; margin-top:10px; padding-top:5px; }

#leftcolumn .story-content a { font:11px Arial, Helvetica, sans-serif; font-weight:bold; color:#707070; }
#leftcolumn .story-content a:hover { color:#dedb00; }

#leftcolumn p.newsletter_download a { font:11px Arial, Helvetica, sans-serif; font-weight:bold; color:#707070; }
#leftcolumn p.newsletter_download a:hover { color:#dedb00; }

/******************************************** RIGHT COLUMN *******************************************/

#rightcolumn a { color:#009245; font:14px Arial, Helvetica, sans-serif; font-weight:bolder}
#rightcolumn a:hover { color:#dedb00; text-decoration:none;  }
#rightcolumn h3 { color:#009245; font:14px Arial, Helvetica, sans-serif; font-weight:bolder }

#rightcolumn p.more-info a { color:#707070; font:10px Arial, Helvetica, sans-serif; font-weight:bold; float:right; }
#rightcolumn p.more-info a:hover { color:#dedb00; }

#rightcolumn p.download a { color:#707070; font:11px Arial, Helvetica, sans-serif; font-weight:bold; }
#rightcolumn p.download a:hover { color:#dedb00; }


#rightcolumn .the-news { border-top:1px solid #b9c4c6; margin-top:20px; padding-top:5px; position:relative;}
#rightcolumn .news-content { padding-bottom:11px; margin-top:5px; color:#707070 }

#rightcolumn .blog { border-top:1px solid #b9c4c6; margin-top:10px; padding-top:5px;position:relative;  }
#rightcolumn .blog-content { padding-bottom:11px; margin-top:5px; color:#707070 }

#rightcolumn .newsletter { border-top:1px solid #b9c4c6; margin-top:10px; padding-top:5px; position:relative; }

#rightcolumn .annual-report { border-top:1px solid #b9c4c6; margin-top:10px; padding-top:5px;  position:relative;}

#rightcolumn .veterans { float:left; margin-top:10px; }

#rightcolumn .donate { border-top:1px solid #b9c4c6; padding-top:10px; position:relative; }

#rightcolumn .donate-list 
{
	margin-top:1px;
	padding:10px 5px 5px 5px;
	width: 172px;
	background-color:#FFF;
	display:none;
	border: 1px groove #b9c4c6;
	position:absolute;
}
#rightcolumn .donate-list a { font:11px Arial, Helvetica, sans-serif; }
#rightcolumn .donate-list a:hover { color:#707070; }
#rightcolumn .donate-list ul { list-style:none; }
#rightcolumn .donate-list li { margin-left:-35px; border-bottom:1px solid #b9c4c6; } 



#sb-title-inner,#sb-info-inner,#sb-loading-inner,div.sb-message{font-family:"HelveticaNeue-Light","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:200;color:#fff;}
#sb-container{position:fixed;margin:0;padding:0;top:0;left:0;z-index:999;text-align:left;visibility:hidden;display:none;}
#sb-overlay{position:relative;height:100%;width:100%;}
#sb-wrapper{position:absolute;visibility:hidden;width:100px;}
#sb-wrapper-inner{position:relative;border:1px solid #303030;overflow:hidden;height:100px;}
#sb-body{position:relative;height:100%;}
#sb-body-inner{position:absolute;height:100%;width:100%;}
#sb-player.html{height:100%;overflow:auto;}
#sb-body img{border:none;}
#sb-loading{position:relative;height:100%;}
#sb-loading-inner{position:absolute;font-size:14px;line-height:24px;height:24px;top:50%;margin-top:-12px;width:100%;text-align:center;}
#sb-loading-inner span{background:url(/scripts/shadowbox/loading.gif) no-repeat;padding-left:34px;display:inline-block;}
#sb-body,#sb-loading{background-color:#060606;}
#sb-title,#sb-info{position:relative;margin:0;padding:0;overflow:hidden;}
#sb-title,#sb-title-inner{height:26px;line-height:26px;}
#sb-title-inner{font-size:16px;}
#sb-info,#sb-info-inner{height:20px;line-height:20px;}
#sb-info-inner{font-size:12px;}
#sb-nav{float:right;height:16px;padding:2px 0;width:45%;}
#sb-nav a{display:block;float:right;height:16px;width:16px;margin-left:3px;cursor:pointer;background-repeat:no-repeat;}
#sb-nav-close{background-image:url(/scripts/shadowbox/close.png);}
#sb-nav-next{background-image:url(/scripts/shadowbox/next.png);}
#sb-nav-previous{background-image:url(/scripts/shadowbox/previous.png);}
#sb-nav-play{background-image:url(/scripts/shadowbox/play.png);}
#sb-nav-pause{background-image:url(/scripts/shadowbox/pause.png);}
#sb-counter{float:left;width:45%;}
#sb-counter a{padding:0 4px 0 0;text-decoration:none;cursor:pointer;color:#fff;}
#sb-counter a.sb-counter-current{text-decoration:underline;}
div.sb-message{font-size:12px;padding:10px;text-align:center;}
div.sb-message a:link,div.sb-message a:visited{color:#fff;text-decoration:underline;}

