/* Cascading Style Sheet for Buildwin Web Site */

/* these first few are a legacy of table-based layout. They can be removed once all pages are properly css-based. */

col.stdleft {
    width: 1%; /* the 1% just ensures the table is full-page width */
	background: #FF9700;
	}
td.pageheader {
    text-align: center;
	}
td.stdleft {
    text-align: center; 
	background: #FF9700; 
	margin: 0px; 
	border: 0px; 
	width: 230px;
	}

/* these should continue */

body {
	font-family: Arial, sans-serif;
	font-size: 12pt;
    background: #FFFFFF url("common graphics/watermark2.png") repeat scroll;
	}

.navigation {
  position: absolute;
	top: 0;
	left: 0;
  text-align: center; 
	background: #FF9700; 
	margin: 0px; 
	border: 0px; 
	width: 230px;
	height: 100%;
    }
.content {
    margin-left: 235px;
    }
.pageheader {
	height: 70px;
    text-align: center;
	}
.pagefooter {
    text-align: left;
	font-size: 60%;
	}

p {
    font-size: 12pt;
	margin-top: .5em;
	margin-bottom: 0;
	}

/* Links */
a:link {
    color: #0088FF; /* a pale blue */
	}
a:visited {
    color: #800080; /* purple */
	}

/* interactive */
:focus {
    background: #FFEEDD;
	}	   
a:active {
    color: #FF33CC; /* pink */
	}
a:focus {
    background: transparent;
	}

/* Headings */
h1 {
    font-size: 250%;
	margin-top: 0.2em;
	margin-bottom: .1em;
	color: #0000FF;
	}
h2 {
    font-size: 200%;
	margin-top: 1.0em;
	margin-bottom: .1em;
	color: #0000FF;
	}
h3 {
    font-size: 150%;
	margin-top: 1.0em;
	margin-bottom: .1em;
	color: #0000FF;
	}
h4 {
    font-size: 125%;
	margin-top: 1.0em;
	margin-bottom: .1em; 
	color: #0000FF;
	}
h5 {
    font-size: 110%; 
	margin-top: .2em; 
	margin-bottom: 0em;
	}
h6 {
    font-size: 100%; 
	font-weight: bold;
	margin-top: .2em; 
	margin-bottom: 0em; 
	}

/* Lists */
ul {
    font-size: 12pt; 
	margin-top: 0; 
	margin-bottom: 0;
	}
ol {
    font-size: 12pt; 
	margin-top: 0; 
	margin-bottom: 0;
	}

li {
    font-size: 12pt; 
	margin-top: .2em; 
	margin-bottom: .2em;
	}

dl {
    font-size: 12pt; 
	margin-top: 0; 
	margin-bottom: 0;
	}
dt {
    font-size: 12pt; 
	margin-top: .5em; 
	margin-bottom: 0; 
	font-weight: bold;
	}
dd {
    font-size: 12pt; 
	margin-top: 0; 
	margin-bottom: 0;
	}

/* Tables */
/* Note: some table attributes (eg: border, cellpadding) are not well supported in style sheets */
table {
    margin-top: 0; 
	margin-bottom: 0; 
	}

th {
    text-align: left; 
	background: #dddddd; 
	margin: 0.5em; 
	vertical-align: bottom;
	}
th.center {
    text-align: center;
	}

tr {
    vertical-align: top;
	}

td {
    margin: 3px; 
	vertical-align: top;
	}

td.center {
    text-align: center;
	}
td.number {
    text-align: right; 
	vertical-align: bottom; 
	width: 90px;
	}

/* Text Formatting */
code {
    font-family: Courier;
	}
pre {
    margin-top: 0em;
	margin-bottom: 1.5em;  
	font-family: Courier, monospace; 
	font-size: 12pt;
	}

/* Other */
hr {
    margin-top: 0;
	margin-bottom: 0;
	}

/* CSS MENUS */
  /* MENU BLOCKS */
ul.makeMenu, ul.makeMenu ul {
    width: 230px;                 /* sets the size of the menu blocks */
    border: 2px solid #0000ff;      /* puts a blue border around the menu blocks */
    background-color: #ff9700;      /* makes the menu blocks orange - a bg-color MUST be included for IE to work properly! */
    padding-left: 0px;           /* stops the usual indent from ul */
    cursor: default;             /* gives an arrow cursor */
    margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
    text-align:left;
    vertical-align:top;
    }
  /* MENU ITEMS */
ul.makeMenu li {
    list-style-type: none;       /* removes the bullet points */
    margin: 0px;                 /* Opera 7 puts large spacings between li elements */
    position: relative;          /* makes the menu blocks be positioned relative to their parent menu item
                                    the lack of offset makes these appear normal, but it will make a difference
                                    to the absolutely positioned child blocks */
    color: #ffffff;                 /* sets the default font colour to white */
    border: 0.0px solid #0000ff;	/* puts a blue border around individual menu items in the menu block */
    text-indent: 5px;
    padding-bottom: 5px;
    }
  /* SUB-MENU BLOCKS, POSITION & INITIAL STATUS */
ul.makeMenu li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
    display: none;               /* hides child menu blocks - one of the most important declarations */
    position: absolute;          /* make child blocks hover without leaving space for them */
    top: 0px;                    /* position slightly lower than the parent menu item */
    left: 210px;                  /* this must not be more than the width of the parent block, or the mouse will
                                    have to move off the element to move between blocks, and the menu will close */
    }

  /* MENU ITEMS, MOUSE OVER EFFECTS */
ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
    background-color: #0000ff;      /* gives the active menu items a blue background */
    color: #ffffff;                 /* makes the active menu item text white */ 
    }
ul.makeMenu ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
    display: block;              /* specially to go with the className changes in the behaviour file */
    }
  /* MOUSE OVERS SHOW SUB-MENU BLOCKS */
ul.makeMenu li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements
                                    the > targets only the child ul, not any child uls of that child ul */
    display: block;              /* makes the child block visible - one of the most important declarations */
    }
  /* LINK STYLES */
ul.makeMenu li a { 
    color: #ffffff; 
    display: block; 
    width: 100%; 
    text-decoration: none;
	}
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink {
    color: #ffffff;
	}
ul.makeMenu li:hover > a { /* supports links in branch headings - must not be display: block; */
    color: #ffffff;
	}
