@charset "utf-8";

	/*
	Colours
	
		light blue: #BBE8FA;
		medium blue: #33B9F1;
		dark blue: #00598B;
		very dark blue: #001943;
		
	*/

* { 
	margin: 0;
}

html, body  {
	height: 100%;
	background: #BBE8FA;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
}
.layout #container { 
	min-height: 100%;
	height: auto !important;
	height: 100%;
	margin: 0 auto -2.8em; /* the bottom margin is the negative value of the footer's height */
	/*width: 46em;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	background-image: url(../Images/containerbg.png);
	background-repeat: repeat-x;
	background-position: bottom;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.layout #header { 
	background: #FFFFFF;
	max-width: 58em;
	margin: 0;
	padding: 0 10px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
.layout #headerlinks { 
	margin: 0;
	padding: 0;
}
.layout #strapline {
	float: right;
	margin: 0 0 0 0;
	padding: 0.5em 0 0 0;
	width: 27em;
	height: 2em;
}
.layout #menu {
	height: 1.8em;
	background: #00598B;
	padding: 0.4em 0 0 1em;
}
.layout #menu #menuholder {
	max-width: 72.5em;
}
.layout #menu #menulinks {
	float: left;
}
.layout #menu #menuholder #textsizer {
	padding: 0;
	margin: 0;
	float: right;
	width: 6em;
}
/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".layout #sidebar p" rule.
*/
.layout #sidebar {
	float: left; 
	width: 12em; /* since this element is floated, a width must be given */
	min-height: 20em;
}
.layout #sidebar h3, .layout #sidebar p, .layout #sidebar h6 {
	margin-left: 0.5em;
	margin-right: 0.5em;
}
.layout #sidebar #sidebarone {
	background: #33B9F1;
	padding: 0.5em 0.5em;
	min-height: 16em;
}
.layout #sidebar #sidebartwo {
	padding: 1em 0;
	text-align: center;
}
.layout #sidebar #sidebaronepointtwo {
	background: #33B9F1;
	padding-bottom: 0.8em;
}
/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar space when the content in #sidebar ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.layout #mainContent {
	margin: 0.5em 1.5em 2em 13em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	max-width: 46em;
} 
.layout #footer, #push {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	height: 2.5em; /* .push must be the same height as .footer */
} 
.layout #footer {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding-top: 0.5em; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	border-top: #00598B 0.5em solid;
	background: #33B9F1; 
} 
/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
	margin: 0;
	padding: 0;
}
.textpanel {
	float: right;
	padding: 0.5em;
	width: 18em;
	font-size: 1em;
}
.productpagetextpanel {
	padding: 0.5em;
	width:58em;
	font-size: 0.8em;
}
.thumbmenu div { /* used to arrange thumbnail divs for menus*/
	width: 11em;
	height: 10em;
	float: left;
	margin: 0 1em 2em 1em;
	padding: 0.5em;
	background-color:#FFFFFF;
	border-right: #BBE8FA 0.1em solid;
	border-top: #BBE8FA 0.1em solid;
	border-bottom: #BBE8FA 0.1em solid;
	
	-o-border-radius: 0.8em;
	-icab-border-radius: 0.8em;
	-khtml-border-radius: 0.8em;
	-moz-border-radius: 0.8em;
	-webkit-border-radius: 0.8em;
	border-radius: 0.8em;
}
.thumbmenu div:hover { /* used to arrange thumbnail divs for menus*/
	background-color:#BBE8FA;
	border-right: #33B9F1 0.1em solid;
	border-top: #33B9F1 0.1em solid;
	border-bottom: #33B9F1 0.1em solid;


	-o-box-shadow: 0.4em 0.4em 0.2em #8793a7;
	-icab-box-shadow: 0.4em 0.4em 0.2em #8793a7;
	-khtml-box-shadow: 0.4em 0.4em 0.2em #8793a7;
	-moz-box-shadow: 0.4em 0.4em 0.2em #8793a7;
	-webkit-box-shadow: 0.4em 0.4em 0.2em #8793a7;
	box-shadow: 0.4em 0.4em 0.2em #8793a7;

}
.thumbmenu #clearfloat { 
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
	margin: 0;
	padding: 0;
	visibility: hidden;
}
.thumbmenu p{ 
	vertical-align: middle;
	text-align: center;
}
.productgroupslist div {
	float: left;
	width: 25em;
	height: 2em;
	margin: 0.5em 0 0.5em 2em;
	padding: 0.5em;
	background-color:#FFFFFF;
	border-right: #BBE8FA 0.1em solid;
	border-top: #BBE8FA 0.1em solid;
	border-bottom: #BBE8FA 0.1em solid;
	
	-o-border-radius: 0.8em;
	-icab-border-radius: 0.8em;
	-khtml-border-radius: 0.8em;
	-moz-border-radius: 0.8em;
	-webkit-border-radius: 0.8em;
	border-radius: 0.8em;
}
.productgroupslist div:hover { /* used to arrange thumbnail divs for menus*/
	background-color:#BBE8FA;
	border-right: #33B9F1 0.1em solid;
	border-top: #33B9F1 0.1em solid;
	border-bottom: #33B9F1 0.1em solid;

	-o-box-shadow: 0.4em 0.4em 0.2em #8793a7;
	-icab-box-shadow: 0.4em 0.4em 0.2em #8793a7;
	-khtml-box-shadow: 0.4em 0.4em 0.2em #8793a7;
	-moz-box-shadow: 0.4em 0.4em 0.2em #8793a7;
	-webkit-box-shadow: 0.4em 0.4em 0.2em #8793a7;
	box-shadow: 0.4em 0.4em 0.2em #8793a7;
}
.productgroupslist #clearfloat { 
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
	margin: 0;
	padding: 0;
	visibility: hidden;
}
.thumb1 { 
	border-left: #67bd4a 1em solid;
}
.productgroupslisttitle1 {
	border: none;
	background-color: #67bd4a;
	color: #FFFFFF;
	padding: 0.1em 0;
	height: 2em;
	-o-border-radius: 0.8em;
	-icab-border-radius: 0.8em;
	-khtml-border-radius: 0.8em;
	-moz-border-radius: 0.8em;
	-webkit-border-radius: 0.8em;
	border-radius: 0.8em;
}
.thumb2 { 
	border-left: #ffcf06 1em solid;
}
.productgroupslisttitle2 {
	border: none;
	background-color: #ffcf06;
	color: #FFFFFF;
	padding: 0.1em 0;
	height: 2em;
	-o-border-radius: 0.8em;
	-icab-border-radius: 0.8em;
	-khtml-border-radius: 0.8em;
	-moz-border-radius: 0.8em;
	-webkit-border-radius: 0.8em;
	border-radius: 0.8em;
}
.thumb3 { 
	border-left: #ef3e56 1em solid;
}
.productgroupslisttitle3 {
	border: none;
	background-color: #ef3e56;
	color: #FFFFFF;
	padding: 0.1em 0;
	height: 2em;
	-o-border-radius: 0.8em;
	-icab-border-radius: 0.8em;
	-khtml-border-radius: 0.8em;
	-moz-border-radius: 0.8em;
	-webkit-border-radius: 0.8em;
	border-radius: 0.8em;
}
.thumb4 { 
	border-left: #0099d9 1em solid;
}
.productgroupslisttitle4 {
	border: none;
	background-color: #0099d9;
	color: #FFFFFF;
	padding: 0.1em 0;
	height: 2em;
	-o-border-radius: 0.8em;
	-icab-border-radius: 0.8em;
	-khtml-border-radius: 0.8em;
	-moz-border-radius: 0.8em;
	-webkit-border-radius: 0.8em;
	border-radius: 0.8em;
}
.thumb5 { 
	border-left: #db4599 1em solid;
}
.productgroupslisttitle5 {
	border: none;
	background-color: #db4599;
	color: #FFFFFF;
	padding: 0.1em 0;
	height: 2em;
	-o-border-radius: 0.8em;
	-icab-border-radius: 0.8em;
	-khtml-border-radius: 0.8em;
	-moz-border-radius: 0.8em;
	-webkit-border-radius: 0.8em;
	border-radius: 0.8em;
}
.thumb6 { 
	border-left: #9c4b1e 1em solid;
}
.productgroupslisttitle6 {
	border: none;
	background-color: #9c4b1e;
	color: #FFFFFF;
	padding: 0.1em 0;
	height: 2em;
	-o-border-radius: 0.8em;
	-icab-border-radius: 0.8em;
	-khtml-border-radius: 0.8em;
	-moz-border-radius: 0.8em;
	-webkit-border-radius: 0.8em;
	border-radius: 0.8em;
}
.thumb7 { 
	border-left: #f47920 1em solid;
}
.productgroupslisttitle7 {
	border: none;
	background-color: #f47920;
	color: #FFFFFF;
	padding: 0.1em 0;
	height: 2em;
	-o-border-radius: 0.8em;
	-icab-border-radius: 0.8em;
	-khtml-border-radius: 0.8em;
	-moz-border-radius: 0.8em;
	-webkit-border-radius: 0.8em;
	border-radius: 0.8em;
}
.thumb8 { 
	border-left: #723e98 1em solid;
}
.productgroupslisttitle8 {
	border: none;
	background-color: #723e98;
	color: #FFFFFF;
	padding: 0.1em 0;
	height: 2em;
	-o-border-radius: 0.8em;
	-icab-border-radius: 0.8em;
	-khtml-border-radius: 0.8em;
	-moz-border-radius: 0.8em;
	-webkit-border-radius: 0.8em;
	border-radius: 0.8em;
}
.thumb9 { 
	border-left: #c3d941 1em solid;
}
.productgroupslisttitle9 {
	border: none;
	background-color: #c3d941;
	color: #FFFFFF;
	padding: 0.1em 0;
	height: 2em;
	-o-border-radius: 0.8em;
	-icab-border-radius: 0.8em;
	-khtml-border-radius: 0.8em;
	-moz-border-radius: 0.8em;
	-webkit-border-radius: 0.8em;
	border-radius: 0.8em;
}
div#vacancy  {
    margin-top: 50px;
    padding: 10px;
    border: #ff0033 solid 3px;
    width: 450px;
}
