

/*********************************************************
   HTML Elements
 *********************************************************/

html,
body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  text-align: center;
  background: url(../images/bg/dark_background.gif) repeat-y top center;
  font:0.7em 'Lucida Grande', 'Lucida Sans Unicode',Verdana, sans-serif;
  font-weight:400;
  line-height: 170%;
  
  color: #999;
}


/* Headers */
h1, h2, h4, h5, h6 {
  margin: 0 0 10px 0;
  padding: 0;
}


h1 {
  font-size:1.5em;
  font-weight:normal;
  color: #777;
 
 
}

h2 {
  font-size: 1.1em;
  font-weight:300;
  color: #999;
  padding: 10px 0 0 0;
  margin-left:7px;
  margin-right:7px;
}

h3 {
  text-transform: uppercase;
  font-size: 0.9em;
  color: #5367AC;
  margin-bottom:0px;
}

h4 {
    font-size:0.9em;
	font-weight:normal;
	text-align:justify;
}

h5 {
  font-size: 1.5em;
  font-weight:500;
  color: #888;
  padding: 0px 0 7px 0;
  margin-left:1px;
  margin-right:7px;
}

h6 {
  font-size:1.6em;
  font-weight:500;
  color: #888;
  margin-bottom: -6px;
}

h7 {
  font-size:1.5em;
  font-weight:400;
  color: #888;
  
 
}


/* Needed to horizontally pad in a coloured container */
.horzPad h1,
.horzPad h2,
.horzPad h3,
.horzPad h4,
.horzPad h5,
.horzPad p {
  padding-left: 5px;
  padding-right: 5px;
}


/* Links */
a {
  text-decoration: none;
  color: #ADBE70;
}

a:hover {
  color: #fff;
}

a img {
  border: 0;
}

a img.border {  
  border: 1px solid #000;
}

a:hover img.border {  
  /* Fixes IE bug - IE doesn't correctly apply the style on a:hover so need to mask it */
  border: 1px solid #668FA3 !important;
  border: 1px solid #FC3307;
}



/* Images */
img.floatRight {
  margin: 5px 0 10px 10px;
}

img.floatLeft {
  margin: 5px 10px 10px 0;
}



/* Lists */
ul li {
  list-style-image: url(../images/bg/submenu1.gif);
}

ol li {
  list-style-image: url(../images/SERVICESIMG/button.jpg);
}

ol li span {
  font-weight: normal;
  color: #444;
}



/* Blockquote */
blockquote {
  margin: 0;
  padding: 0 20px;
  background: #eee;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}



/**************************************************************
   Form Elements
 **************************************************************/

form {
  padding: 0;
  margin: 0;
}

/* If you're finding the input elements get pushed down, increase the width */
label {
  float: left;
  width: 25%;
  vertical-align: top;
}

input,
textarea,
select {
  padding: 1px;
  font: 400 1em verdana, sans-serif;
  color: #999;
  background: #EEE;
  border: 1px solid #CCC;
}

input:focus,
input:hover,
textarea:focus,
textarea:hover,
select:focus,
select:hover {
  color: #000;
  background: #E7F1F3;
  border: 1px solid #888;
}

input.noBorder,
input:focus.noBorder,
input:hover.noBorder {
  padding: 0;
  border: 0;
}

input.button {
  padding: 4px 20px;

  font: 600 0.9em verdana, serif;
  cursor: pointer;

  color: #888;
  background: #000;
  border-width: 1px;
  border-style: solid;
  border-color: #555 #555 #555 #555;
}

input.radio {
  background: none;
  border: 0px;
}






