/* Start of CMSMS style sheet 'gbsite-css' */
/* Horizontal menu for the CMS CSS Menu Module */
/* by Alexander Endresen */

#menu_vert {
   /* margin-left: 1px;
   margin-right: 1px; */
}

/* The wrapper clears the floating elements of the menu */

/* Fix for Opera 8 */
.clearb { clear: both; }
#menuwrapper { 
   /* Fix for Opera 8 */ 
   /*   overflow: hidden;  */ 
   background-color: #DDDDDD;
   width: 100%;
}

/* Unless you know what you do, do not touch this */ 
#primary-nav, #primary-nav ul { 
   list-style: none; 
   margin: 0px; 
   padding: 0px; 
   font-size: 90%;
}
#primary-nav ul { 
   position: absolute; 
   top: auto; 
   display: none; 
}
#primary-nav ul ul { 
   margin-top: 1px;
   margin-left: -1px;
   left: 100%; 
   top: 0px; 
}
	
#primary-nav li { 
   margin-left: -1px;
   float: left; 
   width: 185px;
   text-align: center;
}

#primary-nav li li { 
   margin-left: 0px;
   /* margin-top: -1px; */
   float: none; 
   position: relative; 
   width: 185px; 
   text-align: left;
}

/* Styling the basic apperance of the menu elements */
#primary-nav a { 
   display: block; 
   margin: 0px; 
   padding: 5px 10px; 
   text-decoration: none; 
   color: #FFFFFF;
}
#primary-nav li a { 
   border-right: 1px solid #DDDDDD;
   border-left: 1px solid #DDDDDD;
}
#primary-nav li li a { 
   border-bottom: 1px solid #DDDDDD;
}	
#primary-nav li, #primary-nav li.menuparent { 
   background-color: #83A77B; 
}

/* Styling the basic apperance of the active page elements (shows what page in the menu is being displayed) */

#primary-nav li.menuactive { 
   background-color: #FFFFFF; 
}

#primary-nav li.menuactive a, #primary-nav li.menuactive a:link, #primary-nav li.menuactive a:visited, #primary-nav li.menuactive a:hover, #primary-nav li.menuactive a:active { 
   background-color: #FFFFFF; 
   color: #333;
   font-weight: bold;
}

#primary-nav li li a:hover, #primary-nav li.menuactive li a:hover { 
   background-color: #D9E3D5; 
   color: #333;
}

/* Styling the basic apperance of the menuparents - here styled the same on hover (fixes IE bug) */
#primary-nav ul li.menuparent, 
#primary-nav ul li.menuparent:hover, 
#primary-nav ul li.menuparenth { 
/* arrow for menuparents */
   background-image: url(images/cms/arrow.gif); 
   background-position: center right; 
   background-repeat: no-repeat; 
}

/* Styling the apperance of menu items on hover */

#primary-nav li a:hover, 
#primary-nav li:hover, 
#primary-nav li.menuh, 
#primary-nav li.menuparenth, 
#primary-nav li.menuactiveh { 
   background-color: #AA69A3;
}


/* The magic - set to work for up to a 3 level menu, but can be increased unlimited */

/* 
just add 
#primary-nav li:hover ul ul, 
#primary-nav li.menuparenth ul ul ul,
for fourth level 
*/
#primary-nav ul, 
#primary-nav li:hover ul, 
#primary-nav li:hover ul ul, 
#primary-nav li.menuparenth ul, 
#primary-nav li.menuparenth ul ul { 
   display: none; 
}

/* add 
#primary-nav ul ul ul li:hover ul, 
#primary-nav ul ul ul li.menuparenth ul,
for fourth level
*/
#primary-nav li:hover ul, 
#primary-nav ul li:hover ul, 
#primary-nav ul ul li:hover ul, 
#primary-nav li.menuparenth ul, 
#primary-nav ul li.menuparenth ul, 
#primary-nav ul ul li.menuparenth ul { 
   display: block; 
}


/* IE Hacks */
#primary-nav li li { 
   float: left; 
   clear: both; 
}
#primary-nav li li a { 
   height: 1%; 
}


/* Start of CMSMS style sheet 'Accessibility and cross-browser tools' */
/* accessibility */

/* Menu links accesskeys */
span.accesskey {
   text-decoration:none;
}

/* 
accessibility divs are hidden by default 
text, screenreaders and such will show these 
*/

.accessibility, hr {
   position: absolute;
   top: -999em;
   left: -999em;
}

/* 
definition tags are also hidden 
these are also used for menu links    
*/

dfn {
   position: absolute;
   left: -1000px;
   top: -1000px;
   width: 0;
   height: 0;
   overflow: hidden;
   display: inline;
}

/* end accessibility */

/* clearing */
/* 
clearfix is a hack for divs that hold floated elements. it will force the holding div to span all the way down to last floated item.
We strongly recommend against using this as it is a hack and might not render correctly but it is included here for convenience.
Do not edit if you dont know what you are doing
*/

.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 */
/* end clearing */
/* End of 'Accessibility and cross-browser tools' */


/* Start of CMSMS style sheet 'gbsite-css' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/

* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/

body {
   text-align: left;
   font-family: Arial, Verdana, Geneva, Helvetica, sans-serif;
   font-size: 85%;
   line-height: 1em;
}

/*
set font size for all divs,
this overrides some body rules
*/

div {
   font-size: 1em;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/

img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */

a,
a:link 
a:active {
   text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #18507C; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
   color: #18507C;                /* a different color can be used for visited links */
}

/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-color: #C3D4DF;
   color: #385C72;
}

/*****************
basic layout 
*****************/

body {
   background-color: #DDD;
   color: #333;
   margin:1em; /* gives some air for the pagewrapper */
}

/* center wrapper, fixed width */
div#pagewrapper {
   margin: 0 auto;     /* this centers wrapper */
   width: 780px; 
/*   width: 950px; */
   background-color: #fff;
   color: #333;
}

/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/
div#header {
   height: 190px; /* adjust according your image size */
   background: #FFFFFF url(uploads/images/logog.gif) no-repeat;
   border-bottom: 1px solid #FFFFFF;
}

div#header h1 a {
/* you can set your own image here */
   background: transparent url(uploads/images/contact-gb.gif) right no-repeat; /*changed to blank image ML*/
   display: block; 
   height: 190px;             /* adjust according your image size */
   text-indent: -999em;  /* this hides the text */
   text-decoration: none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

div#content {
   padding: 0 0 2em;
   background: transparent url(uploads/images/content-bg-780.gif) repeat-y;
/*   background: transparent url(uploads/images/content-bg.gif) repeat-y; */
   border-top: 10px solid #AB69A4;
   border-bottom: 10px solid #AB69A4;
}

/* Alternate content style for e-news pages */
div#content2 {
   padding: 0 0 2em;
   background: transparent url(uploads/images/content-bg2-780.gif) repeat-y;
/*   background: transparent url(uploads/images/content_bg2.gif) repeat-y; */
   border-top: 10px solid #83A77B;
   border-bottom: 10px solid #83A77B;
}

div#main {
   margin-left: 2%;  /* and some air on the left */
   margin-top: 1.5em; 
   margin-right: 29%; /* this will give room for sidebar to be on the right side, make sure this space is bigger than sidebar width */
}

div#main p {
   font-size: 1.1em;  /* larger font in main content panel */
}

div#sidebar {
   float: right;  /* set sidebar on the right side. Change to left to float it left instead. */
   width: 26%;    /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX ie doublemargin bug */
   margin-left: 0;
}

div#footer {
   clear:both;       /* keep footer below content and menu */
   height: 112px; /* adjust according your image size */
   background: #FFFFFF url(uploads/images/footer_image.gif) no-repeat;
   border-bottom: 1px solid #FFFFFF;   
   color: #fff;
}

div#footer p {
   font-size: 0.9em;
   padding: 1.5em;      /* some air for footer */
   text-align: center; /* centered text */
   margin: 0;
}

div#footer p a {
   color: #fff; /* needed becouse footer link would be same color as background otherwise */
}

div#footer p a:hover {
   background: none; /* remove hover background colour from footer */
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   margin: 1em;
   border-bottom: 1px dotted #333;
}

/* relational links under content */
div.right49 {
  text-align: right;
}

/********************
CONTENT STYLING
*********************/

/* HEADINGS */
div#content h1, div#content2 h1 {
   font-size: 2em;  /* font size for h1 */
   line-height: 1em;
   margin: 0;
}

div#content h2, div#content2 h2 {
   color: #AB69A4; 
   font-size: 2em; 
   text-align: left; 
/* some air around the text */
   padding-left: 0.5em;
   padding-bottom: 1px;
/* set borders around header */
   border-bottom: 1px solid #AB69A4; 
   border-left: 1.1em solid #AB69A4; 
   line-height: 1.5em;
/* and some air under the border */
   margin: 0 0 0.5em 0;
}

div#content h3, div#content2 h3 {
   color: #AB69A4; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
/* set borders around header */
   border-bottom: 1px solid #AB69A4; 
}

div#content h4, div#content2 h4 {
   color: #AB69A4; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}

div#content h5, div#content2 h5 {
   color: #AB69A4; 
   font-size: 1.3em;
   line-height: 1.5em;
   margin: 1em 0 0.25em 0;
}

h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
   color: rgb(51, 153, 102);
}

/* END HEADINGS */


/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 1.5em 0;  /* some air around p elements */
   line-height: 1.4em;
   padding: 0;
}

blockquote {
   margin-left: 20px;
   font-size: 1em;
   line-height: 1.4em;
   font-family: Arial, Verdana, Geneva, Helvetica, sans-serif;
   font-size: 85%;
}

pre {
   font-family: monospace;
   font-size: 1.0em;
}

strong, b {
/* explicit setting for these */
   font-weight: bold;
}

em, i {
/* explicit setting for these */
   font-style: italic;
}

/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;   /* smaller font size, as these are usually not so important data */
}

/* END TEXT */

/* LISTS */
div#main ul,
div#main ol,
div#main dl {
  font-size: 1.1em;
   line-height:1.4em;
   margin: 0 0 1.5em 0;
}

div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 3em;
}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}

div#dl dd {
   margin: 0 0 0 3em;
}

/* END LISTS */


/*****************
 SIDEBAR PANELS 
******************/

/* Top panel - newsletter subscription */
div#sidebar-subscribe {
  margin: 0 1em 1em 0;  /* margin for the first panel flush to top */
  border: 1px solid #FFFFFF; 
  background: #F8F0F7;
}

/* Second panel - whats new */
div#sidebar-news {
  margin: 0 1em 1em 0;  /* add space between panels */
  border: 1px solid #FFFFFF; 
  background: #F8F0F7 url(uploads/images/announcebox_bg.gif) no-repeat 100% 100%;
}

/* Other panels */
div.sidebar-insert {
  margin: 0 1em 1em 0;  /* add space between panels */
  border: 1px solid #FFFFFF; 
  background: #F8F0F7;
}

/* Panel headings */
div#sidebar-subscribe h2, div#sidebar-news h2 {
   line-height: 1.5em;
   background: #AB69A4;
   color: #FFF; 
   font-size: 1.5em; 
   text-align: center; 
/* some air around the text */
   padding-left: 0.5em;
   padding-bottom: 1px;
/* set borders around header */
   border-bottom: 1px solid #FFFFFF; 
   border-left: 0 solid #FFFFFF; 
/* and some air under the border */
   margin: 0 0 0.5em 0;
}

/* div#sidebar-news h2 {
   background: #FFF;
   color: #AB69A4; 
   border-bottom: 1px solid #AB69A4; 
} 

*/

div#sidebar-subscribe h3 {
   color: #AB69A4;
   font-size: 1.5em; 
   text-align: center; 
/* some air around the text */
   padding-left: 0.5em;
   padding-bottom: 1px;
   border-width: 0;
}

div.sidebar-insert h4 {
   color: #AB69A4;
   font-size: 1.2em; 
   text-align: center; 
/* some air around the text */
   padding: 0.5em 1em 1px;
}

/* Panel content and links */
div#sidebar-subscribe p, div#sidebar-news p, div.sidebar-insert p {
   text-align: center; 
/* some air around the text */
   padding: 0 15px;
}

div#sidebar-subscribe a,
div#sidebar-subscribe a:link, 
div#sidebar-subscribe a:active,
div#sidebar-news a,
div#sidebar-news a:link, 
div#sidebar-news a:active,
div.sidebar-insert a,
div.sidebar-insert a:link, 
div.sidebar-insert a:active {
   font-weight: bold;
   text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #AB69A4; 
}

div#sidebar-subscribe a:visited, div.sidebar-insert a:visited, div#sidebar-news a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #AB69A4;                /* a different color can be used for visited links */
}

/* remove underline on hover and change color */
div#sidebar-subscribe a:hover, div.sidebar-insert a:hover, div#sidebar-news a:hover {
   text-decoration: none;
   background-color: #F0E4EF;
   color: #AB69A4;
}

/* TABLE ON NEWSLETTER SUBSCRIPTION PAGE */

caption {
   text-align: left;
   color: #AB69A4; 
   font-size: 1.5em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
/* set borders around header */
   border-bottom: 1px solid #AB69A4; 
}

td, th {
   padding: 3px;
}

/* RATES TABLE ON SERVICES PAGES */
table.rates {
    border-width: 0 1px 1px 0;
    border-color: #AB69A4;
    border-style: solid;
    border-collapse: collapse;
}

table.rates td, table.rates th {
    border-width: 1px 0 0 1px;
    border-color: #AB69A4;
    border-style: solid;
   line-height:1.4em;
}

table.rates th {
    padding: 5px; 
    background-color: rgb(170, 105, 163); 
    color: rgb(255, 255, 255); 
    font-size: 1.2em;
}

/* PULL QUOTE - GREEN, RIGHT ALIGN */
.pullquote {
text-align: right;
color: #83a77b;
font-weight: bold;
}

/*styles for newsletter*/
.ccc300 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.3em;
	background-color: #ccc0d9;
	text-align: center;
	display: block;
	width: 500px;
	padding: 10px;
        height: 320px;
}

.ccc150 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.3em;
	background-color: #ccc0d9;
	text-align: center;
	display: block;
	width: 500px;
	padding: 10px;
        height: 150px;
}

.ccc200 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.3em;
	background-color: #ccc0d9;
	text-align: center;
	display: block;
	width: 500px;
	padding: 10px;
        height: 200px;
}

.ccc125 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.3em;
	background-color: #ccc0d9;
	text-align: center;
	display: block;
	width: 500px;
	padding: 10px;
        height: 75px;
}

.ccctitle {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 32px;
	font-style: italic;
	line-height: normal;
	font-weight: bold;
	color: #800080;
	text-align: center;
}
.cccleft {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #FFFFFF;
	text-align: center;
	display: block;
	padding: 10px;
	float: left;
	height: auto;
	width: 210px;
	border: dotted #339966;
}
.cccright {
        font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 11px;	
        padding: 5px;
	float: right;
	clear: none;
	width: 215px;
	background-color: #FFFFFF;
	line-height: 1.3em;
	text-align: right;
}
.cccleftitle {
	font-weight: bold;
	color: #339966;
}
.cccrighttitle {
	font-size: 16px;
	font-weight: bold;
	color: #800080;
}

.centrequote {
	font-weight: bold;
	color: #339966;
	float: none;
	width: 400px;
	display: block;
        clear: left;
}

.wpleft {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	text-align: left;
	display: block;
	padding: 5px;
	width: 280px;
	line-height: 1.3em;
	float: left;
}

.wpright {
	background-color: #FFFFFF;
	text-align: center;
	display: block;
	padding: 10px;
	float: right;
	width: 180px;
	border: dotted #339966;
	color: #339966;
}
.ccctitleleft {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 24px;
	font-style: italic;
	line-height: normal;
	font-weight: bold;
	color: #800080;
	text-align: left;
}
.ccctitleright {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 24px;
	font-style: italic;
	line-height: normal;
	font-weight: bold;
	color: #800080;
	text-align: right;
}

.paleback {
	background-color: #ccc0d9;
}
/* End of 'gbsite-css' */

