/* 3CR Web Stylesheet */


/* *** GENERAL TEXT AND LAYOUT SETTINGS *** */

body {
  font-family: "Lucida Sans Unicode",Verdana,Arial,sans-serif;
  font-weight: normal;
  font-style: normal;
  text-align: left;
  font-size: 10pt;
  color: rgb(64, 96, 128);
  border: 0px;
  padding: 0px;
  margin: 0px;
  min-width:760px;
}

div, p, h1, h2, h3, h4, ul, li, img, hr {
  border: 0px;
  padding: 0px;
  margin: 0px;
}


div.indenttext {
  margin-left: 2em;
}

div.rightmargin {
  margin-right: 2em;
}

p {
  margin-top: 0.5em;
  margin-bottom: 0px;
}

ul {
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 3em;
  list-style-type: disc;
}

a {
  text-decoration: underline;
  color: rgb(64, 96, 128);
}

a:hover {
  color: rgb(172, 6, 51);
}

h1 {
  font-size: 130%;
  font-weight: bold;
  font-style: normal;
  color: rgb(172,6,51);
  margin-top: 1em;
  margin-bottom: 0px;
}

h2 {
  font-size: 115%;
  font-weight: bold;
  font-style: normal;
  color: rgb(172,6,51);
  margin-top: 1em;
  margin-bottom: 0px;
}

h3 {
  font-size: 115%;
  font-weight: bold;
  font-style: normal;
  color: rgb(80,106,137);
  margin-top: 1em;
  margin-bottom: 0px;

}

h4 {
  font-size: 100%;
  font-weight: bold;
  font-style: italic;
  color: rgb(80,106,137);
  margin-top: 1em;
  margin-bottom: 0px;

}

/* *** LAYOUT SETTINGS *** */
/* The page layout is done by using <div> boxes with identifiers */

div#Canvas {  /* Fills the whole browser window */
  background-color: rgb(255,255,255);
  text-align: center;  /* to centre page in IE5 */
}

div#MainPage {
  width: 760px;
  margin-left: auto;  /* to center page in most browsers */
  margin-right: auto;
  text-align: left;
  background-color: rgb(255,255,255);
}

div#PageTop {
  position: relative;
  width: 100%;
  height: 75px
}

div#TopLogo {
  position: absolute;
  top: 0px;
  left: 0px;
}

div#TopText {
  position: absolute;
  bottom: 6px;
  left: 120px;
  font-size: 10pt;
  font-style: italic;
  color: rgb(115, 153, 198);  
}

div#MainColumns {  /* Provides a box to hold the LHS and RHS Columns */
  position: relative;
  overflow: hidden;
}

div#LHS {
  width: 500px;
  float: left;
  overflow: hidden;
}

div#LHSContent {
  padding-right: 30px;  /* Add more space between LHS and RHS  */
}

div#RHS {
  width: 245px;
  float: right;
  overflow: hidden;
}

/* NB: (Width of LHS + Width of RHS) must be less than 100%
   so that there is space between them.
   MainPage is 760px wide, LHS is 500px, RHS is 245px,
   So the space between LHS and RHS is 15 pixels.
   I use an absolute pixel count for LHS width and RHS width
   so that we know how wide to make images to fit in the RHS.
   If we used a percentage, then the columns would scale down
   in a narrower window, but the browser might rescale or crop the images.
*/

div#MainColumnsEnd {  /* An empty div to get the page lined up after the floating elements */
  clear: both;
  height: 0px;
  width: 0px;
}



table.partners {
 width:100%;
}

table.partners td {
  text-align: left;
  padding-top: 30px;
}


 

div#PageBottom {
  width: 100%;
}

div#NavListBottom {
  float: left;
}

div#CopyrightBottom {
  float: right;
}

div#PageBottomEnd {  /* An empty div to get the page lined up after the floating elements */
  clear: both;
  height: 0px;
  width: 0px;
}

div#Peoplepage {
 
}

/* *** RULERS, LINES AND IMAGES *** */

div.Spacer {  /* empty box to provide vertical space  */
              /* It can be used with a specific height
                 e.g.  <div class="Spacer" style="height: 20px;"></div>
              */
  height: 10px;
  width: 0px;
}

/* We use a filled div instead of an hr for a line because it is more consistent across browsers */
/* But we have to put in a fix in the printer stylesheet to get it printed  */
div.TopLine {
  background: rgb(115, 153, 198);
  height: 5px;
  width: 100%;
}

div.BottomLine {
  background: rgb(115, 153, 198);
  height: 2px;
  width: 100%;
}


/* *** TEXT SETTINGS FOR SPECIFIC AREAS OF THE PAGE *** */

h1#LHSTitle, h1#RHSTitle {
  font-size: 150%;
  font-weight: bold;
  font-style: 
  margin-top: 5px;
  margin-bottom: 5px;
  color: rgb(80,106,137);
}

#NavList1 ul, #NavList2 ul, #NavListBottom ul {  /* Navigation Menus  */
  padding-left: 0px;
  margin-left: 0px;
  list-style-type: none;
  font-size: 100%
}

#NavList1 li, #NavList2 li, #NavListBottom li {
  display: inline;   /* Means that the navigation menus are horizontal lists */
  padding-right: 5px;
}

#NavList1 a, #NavList2 a, #NavListBottom a {
  text-decoration: none;
}

#NavList1 a:hover, #NavList2 a:hover, #NavListBottom a:hover {
  color: rgb(172, 6, 51);
}

#NavList1 a.ThisPage, #NavList2 a.ThisPage {
  font-weight: normal;
}

#PageBottom, #PageBottom a {
  font-size: 80%;
  font-style: normal;
}
