/***********************************************/
/* gcp_2008style.css                           */
/* Use with template gcparch.html              */
/* style type="text/css" media="screen"        */
/***********************************************/

/***********************************************/
/* HTML tag styles                             */
/***********************************************/ 

body
	{
	text-align: center;
	font-family: Arial,sans-serif;
	line-height: 1.166;
	color: black;
	margin: 0px;
	padding: 0px;
}
/* body - text-align center aligns entire page centred, works with div container */

#container
{
	margin-top: 10px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
 	max-width: 1024px; 
	width:expression(document.body.clientWidth > 1023? "1024px": "auto" );
}

/* container holds entire page, in body centred position, to a set maximum width, but aligns text left */
/* expression is FIX FOR IE 5, 5.5, 6 TO APPLY MAX-WIDTH EQUIVALENT */

a:link, a:visited, a:hover {
	/* comment - links same colour as all text - were #006699 */
	text-decoration: none;
	color: none;
}

a:hover {
	text-decoration: underline;
}
/* overrides decoration from previous rule for hovered links */

h1, h2, h3, h4, h5, h6 {
	font-family: Arial,sans-serif;
	margin: 0px;
	padding: 0px;
}

h1{
 font-family: Arial,sans-serif;
 font-size: 150%;
 color: #334d55;
}

.fontg{
 font-family: Times New Roman, Times, serif;
 font-size: 135%;
 font-weight: bold
}

.fontcp{
 font-family: Arial, Helvetica, sans-serif;
 font-size: 110%;
}


h2{
 font-size: 114%;
 color: #006699;
}
h2 a {
	color: #006699;
}
/* this last is fix to ensure text colour for active links is same as standard text */

h3{
 font-size: 100%;
 color: #334d55;
}

h4{
 font-size: 100%;
 font-weight: normal;
 color: #333333;
}

h5{
 font-size: 100%;
 color: #334d55;
}

ul{
 list-style-type: square;
}

ul ul{
 list-style-type: disc;
}

ul ul ul{
 list-style-type: none;
}

label{
	font: bold 100% Arial,sans-serif;
 color: #334d55;
}


/***********************************************/
/* Layout Divs                                 */
/***********************************************/
/*comment - gcp banner*/

#masthead{
	margin: 0;
	padding: 0px 0px;
	width: 100%;
	
}
/**** max-width: 1024px; */
/**** adjust masthead 1st padding if space required above logo image */
/**** removed border-bottom-width: 0px; -- seeking to omit line below bannerNav text when white block */
/**** removed border-bottom-style: solid; -- dito as above */
 
#masthead img{
	float: right;
	padding: 0px 0px 0px 10px;
	margin: 0 0px 0px 5px;
}
/**** adjust margins to change separation between the image and text flowing around it */

/*comment - navBar is contentsecond (righthand column)*/

#navBar{
	margin: 0 0 0 65%;
	padding: 0px;
}
/**** navbar background-color was #eeeeee */
/**** removed border-left: 1px solid #ccc; */
/**** removed border-bottom: 1px solid #ccc; */

#contentGlobal{
 	width: 800px;
	margin: auto;
	padding: 0;
}
/****contentGlobal is wrapper around entire page content between masthead banner and footer limiting to 800px wide*/

#content{
  float:left;
	width: 61%;
	margin: 0;
	padding: 0 3% 0 0;
}

/****next sections subcontentImages and subcontentLeft are for home page index.html only to place text and main splash image*/
/****these are currently UNUSED in present page structure */

#subcontentImages{
	margin: 0 0 0 0%;
	padding: 0px;
	border: none;
}

/****border value for editing was 1px solid red */
/****margin last value should be 44% to push image&text to right */
/****subcontentImages is RH column of centre #content */
/****subcontentLeft is LH (text)column of centre #content */

#subcontentLeft{
	float:left;
	width: 38%;
	margin: 0;
	padding: 0 0 0 0;
}

/***********************************************/
/*Branding Colours                             */
/***********************************************/

.gcpgcp{
background-color: #EE6C38;
}

.gcparch{
background-color: #87A39C;
}

.gcpcons{
background-color: #8292BA;
}

/***********************************************/
/*Component Divs                               */
/***********************************************/

/************* #siteName is toplevel company or business stream name **************/

#siteName{
	color: white; 
	margin: 0px;
	padding: 0px 0px 10px 10px;
}

/************* #banner styles **************/
/************* #banner styling controls appearance of primary navigation sections - home arch sus cons etc **************/

#banner{
}

#banner img{
	float: right;
	padding: 0px 0px 0px 10px;
	margin: 0 0px 0px 5px;
	width: 77px;
	height: 74px;
}
/* adjust margins to change separation between the feature image and text flowing around it */
/* commented out css to max width the site banner text etc
	width: 1024px;
	margin: auto;
but in IE this floats wrongly - hack fix needed sourcing
*/

#banner h1{
	color: white;
	margin: 0px;
	padding: 0px 0px 10px 10px;
}
#bannerName{
	color: white; 
	margin: 0px;
	padding: 0px 0px 10px 10px;
}
#bannerNav{
	color: white;
	padding: 0px 0px 0px 10px;
	white-space: normal;
}
/* whitespace 'nowrap' prevents links from line-wrapping if there are too many to fit in one line
   this will force a horizontal scrollbar if there isn't enough room for all links
   remove rule or change value to 'normal' if you want the links to line-wrap */

#bannerNav a {
	font-size: 90%;
	color: white;
	padding: 0px 4px 0px 4px;
	font-weight: bold;
}

/* class to highlight in navigation section the page that user is viewing - combines with body id=class tags */

#home .home, #archit-intro .archit-intro, #planurb-intro .planurb-intro, #sustain-intro .sustain-intro, #news .news, #jobs .jobs, #contact .contact
{
color: black;
background: white;
}

/**** fix follows to clear float container */
/**** particular issue re 'g' protruding below banner */

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */

/************* START #globalNav styles **************/
/************* #globalNav styling has been omitted from pages and replaced with #bannerNav styling references **************/

#globalNav{
color: white;
padding: 0px 0px 0px 10px;
white-space: normal;
}
/* whitespace 'nowrap' prevents links from line-wrapping if there are too many to fit in one line
   this will force a horizontal scrollbar if there isn't enough room for all links
   remove rule or change value to 'normal' if you want the links to line-wrap */

/* comment out this templatestyle *****************
#globalNav img{
 display: block;
}
end commented out (replace with floatstyle img style**********************/

#globalNav a {
	font-size: 90%;
color: white;
	padding: 0px 4px 0px 0px; 
}
/************* #globalNav styling has been omitted from pages and replaced with #bannerNav styling references **************/
/************* END #globalNav styles **************/

/************* #secondaryNav styles *************/

#secondaryNav{
	color: black;
	white-space: normal;
	padding-top: 6px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left: 10px;
}
/* whitespace 'nowrap' prevents links from line-wrapping if there are too many to fit in one line
   this will force a horizontal scrollbar if there isn't enough room for all links
   remove rule or change value to 'normal' if you want the links to line-wrap */

#secondaryNav a {
	font-size: 90%;
color: black;
	padding: 0px 4px 0px 0px; 
}

/************* #breadCrumb styles *************/

#breadCrumb{
	font-size: 80%;
	padding: 2px 0px 10px 10px;
	text-align: right;
	margin-bottom: 5px;
}

/*************** #pageName styles **************/

#pageName{
	padding: 0px 0px 10px 10px;
}

/*************** #streamBox styles **************/
/**** #streamBox styling is for home page index.html only to control 2 streamboxes for arch and cons */

#streamboxarchitects
{
	width: 170px;
	height: 100px;
	background-color: #87A39C;
	z-index: 3;
	margin-top: 0px;
	margin-bottom: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-right: 5px;
	padding-left: 5px;
}

#streamboxarchitects a {
	color: black;
}

#streamboxconsulting
{
	width: 170px;
	height: 100px;
	background-color: #8292BA;
	z-index: 3;
	margin-top: 10px;
	margin-bottom: 25px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}

#streamboxconsulting a {
	color: black;
}

/************** .feature styles ***************/

.feature{
	padding: 0px 0px 10px 10px;
	font-size: 80%;
}

.feature h3{
	padding: 0px 0px 5px 0px;
	text-align: left;
}

.feature img{
	float: left;
	padding: 0px 10px 0px 0px;
	margin: 5px 5px 5px 0;
}
/* adjust margins to change separation between the feature image and text flowing around it */


/************** .story styles *****************/

.story{
	clear: both;
	padding: 10px 0px 0px 10px;
	font-size: 80%;
}

.story p{
  padding: 0px 0px 10px 0px;
}

/**** INHERITED FROM OLD SITE .caption-txt styling is to accommodate imported text on project & news pages only */
.caption-txt{
	padding: 0px;
	margin: 0px;
 	font-size: 87.5%;
 	alt: image of project
}

/************* #siteInfo footer styles ***************/

#siteInfo{
	clear: both;
	border: 1px solid;
	font-size: 75%;
	color: black;
	padding: 10px 10px 10px 10px;
	margin-top: 0px;
	border-right-style: none;
	border-left-style: none;
}
/* negative top margin pulls siteinfo up so its top border overlaps (and thus lines up with)
   the bottom border of the navBar in cases where they "touch" */

#siteInfo img{
	padding: 4px 4px 4px 0px;
	vertical-align: middle;
}

#siteInfo a {
	color: black;
}

/***********************************************/
/*Branding Colours - Site Info                 */
/* '.gcp..' class sets brand colour for border */
/***********************************************/

.gcpgcpf{
border-color: #EE6C38;
}

.gcparchf{
border-color: #87A39C;
}

.gcpconsf{
border-color: #8292BA;
}

/************* #search styles ***************/
/**** UNUSED SO FAR in this site - for future reference only */

#search{
	padding: 5px 0px 5px 10px;
	border-bottom: 1px solid #cccccc;
	font-size: 90%;
}

#search form{
 margin: 0px;
 padding: 0px;
}

#search label{
	display: block;
	margin: 0px;
	padding: 0px;
}


/*********** #navBar link styles ***********/

#navBar ul a:link, #navBar ul a:visited {display: block;}
#navBar ul {
	margin: 0;
	padding: 0;
	list-style-position: outside;
	list-style-image: none;
	list-style-type: disc;
}

/* hack to fix IE/Win's broken rendering of block-level anchors in lists */
#navBar li {border-bottom: 1px solid #EEE;}

/* fix for browsers that don't need the hack */
html>body #navBar li {border-bottom: none;}

/*********** #images styles ***********/

#imagesRH{
	text-align: right;
	padding: 0px 0px 0px 10px;
	margin: 0 0px 2px 0;
}
/* index.html dedicated css did have #imagesRH/font-size: 90% as well - assume unneeded */

.imgcaption{
	padding: 0px;
	margin: 0px;
 	font-size: 70%;
 	alt: image of project
}
/* if applicable - adjust margins to change separation between the image and text flowing around it */

/**** INSERTED - navbar inline story styles *****************/

.storynav{
	padding: 10px 0px 0px 10px;
	font-size: 80%;
}

.story p{
	padding: 0px 0px 10px 0px;
}

/**** INHERITED FROM OLD SITE .side-highlight-txt styling is to accommodate imported text on project & news pages only */
.side-highlight-txt{
	color: #FF0000;
	font-weight: bold;
}

/**** INHERITED FROM OLD SITE .highlight-txt styling is to accommodate imported text on project & news pages only */
.highlight-txt{
	color: #FF0000;
	font-weight: bold;
}

/*********** #sectionLinks styles ***********/
/**** UNUSED SO FAR in this site - for future reference only */

#sectionLinks{
	position: relative;
	margin: 0px;
	padding: 0px;
	border-bottom: 1px solid #cccccc;
	font-size: 90%;
}

#sectionLinks h3{
	padding: 10px 0px 2px 10px;
}

#sectionLinks a:link{
	padding: 2px 0px 2px 10px;
	border-top: 1px solid #cccccc;
	width: 100%;
	voice-family: "\"}\""; 
	voice-family:inherit;
	width: auto;
}

#sectionLinks a:visited{
	border-top: 1px solid #cccccc;
	padding: 2px 0px 2px 10px;
}

#sectionLinks a:hover{
	border-top: 1px solid #cccccc;
	background-color: #dddddd;
	padding: 2px 0px 2px 10px;
}


/*********** .relatedLinks styles ***********/
/**** UNUSED SO FAR in this site - for future reference only */

.relatedLinks{
	margin: 0px;
	padding: 0px 0px 10px 10px;
	font-size: 90%;
}

.relatedLinks h3{
	padding: 10px 0px 2px 0px;
}


/************** #advert styles **************/
/**** UNUSED SO FAR in this site - for future reference only */

#advert{
	padding: 10px 0px 0px 10px;
	font-size: 80%;
	border-top: 1px solid #cccccc;
}

#advert img{
	display: block;
}


/************** #headlines styles **************/
/**** #headlines styling controls news snippets on home page index.html */

#headlines{
	margin: 0px;
	padding: 10px 0px 5px 0px;
	font-size: 80%;
}

#headlines p{
	padding: 5px 0px 5px 0px;
}

#headlines h3{
	color: #FF0000;
}
#headlines a {
	color: #FF0000;
}

/************* #back style *************/
/**** #back styling controls back link at bottom of every page in site */

#navBack{
	font-size: 80%;
	text-align: right;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 10px;
	clear: both;
}

</style>
