/* CSS Document */

/* James Lowe style sheet for http://www.james-lowe.co.uk */

* {
	margin: 0;
	padding: 0;
	border: 0;
}

html {
	height: 100%;
	max-height: 100%;
}

body {
	height: 100%;
	max-height:100%;
	background-color: #000000;
	font-size: 76%;
	font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	/* MSIE 5 doesn't center based on auto left/right margins, 
    but 'text-align:center' does center top-level divs: */
	text-align: center;
  	/* Specify a min-width for the body as wide as the 'wrapper'
    element itself. This prevents negative (i.e. inaccessible)
    left-margins in narrow browser windows when using 
    Navigator 6+/Mozilla on Win32: */
  	min-width: 950px;
}

#wrapper {
	padding: 0;
	margin: 0;
	vertical-align: top;
	text-align: left;
	width: 950px;
	/*height:100%;*/
	margin-left: auto;
	margin-right: auto;
}

#header {
	text-align: right;
}

#nav {
	height: 25px;
	width: 940px;
	background-image: url(images/nav_bground.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	padding: 4px 10px 0 0;
	float:left;
}

#nav ul {
	list-style-type: none;
	margin-left: 20px;
}

#nav li {
	display: inline;
}

#nav li a {
	font-size: 1em;
	color: #FFF;
	padding: 0.5em 1em 0.5em 1em;
	border-left: 3px solid #000;
	text-decoration: none
}

#nav li a:hover {
	text-decoration: underline;
}

#contentcontainer {
	width: 920px;
	float: left;
	margin: 10px 10px 20px 20px;
	background-image: url(images/james_conducting.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	/*background-attachment: fixed;*/
	
}

#content {
	width: 550px;
}

#contentfixed {
	width: 550px;
	height: 400px;
	overflow: auto;
}

#infopanels {
	width: 920px;
	height: 152px;
	float: left;
	display: inline;
	background-image: url(images/info_panel_bground.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	margin: 10px 0 20px 0;
}

#infopanels p {
	font-size: 1em;
}

#infopanels h1 {
	margin-bottom: 0;
}

#panel1 {
	float:left;
	width: 280px;
	padding:5px 10px;
}

#panel2 {
	float:left;
	width: 280px;
	padding:5px 10px;
}

#panel3 {
	float:left;
	width: 280px;
	padding:5px 10px;
}

#footer {
	height: 25px;
	width: 950px;
	background-color:#990000;
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	float: left;
	display: inline;
	padding: 6px 0 0 0;
	margin-bottom: 0.5em;
}

#footer ul {
	list-style-type: none;
	margin-left: 14px;
}

#footer li {
	display: inline;
}

#footer li a {
	font-size: 0.95em;
	color: #CCC;
	padding: 0.5em 1.7em 0.5em 1em;
	text-transform: uppercase;
	background-image: url(images/footer_bullet.gif);
	background-position: right center;
	background-repeat: no-repeat;
	text-decoration: none;
}

#footer li a:hover {
	text-decoration: underline;
}

#copyrightcontainer {
	width: 950px;
	float: left;
	display: inline;
	margin-bottom: 1em;
}

#copyrightleft {
	width: 50%;
	float: left;
	display: inline;
}

#copyrightright {
	width: 50%;
	float: right;
	text-align: right;
}

#gallerycontent {
	background-color: #000;
}

/* ----------------------------------------------------------------------------- */

/* FORMS - ALL CSS FOR FORMS AND FORM ELEMENTS BELOW */
form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
  color:#CCC;
  margin: 0;
  padding: 0;
  width: 100%;
}

form fieldset {
  /* clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
  border-color: #CCC;
  border-width: 1px;
  border-style: solid;
  padding: 10px;        /* padding in fieldset support spotty in IE */
  margin: 0;
}

form label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left;
	width: 225px;
	font-size: 1.21em; 
	padding: 0; 
	margin: 10px 0 0 10px; /* set top margin same as form input - textarea etc. elements */
	text-align: right; 
}

/*form fieldset label:first-letter {  /* use first-letter pseudo-class to underline accesskey, note that */
/*	text-decoration:underline;    	/* Firefox 1.07 WIN and Explorer 5.2 Mac don't support first-letter */
                                    /* pseudo-class on legend elements, but do support it on label elements */
                                    /* you could instead underline first letter on each element and accesskey */
                                    /* each input but doing only legends lessens cognitive load */
									/* changed to label first letter, opera broke after first letter legend */
/*}*/

form fieldset legend {
	color:#CCC;
	font-size:1.3em; /* bump up legend font size, not too large or it'll overwrite border on left */
                       /* be careful with padding, it'll shift the nice offset on top of border  */
}

form input, form textarea, form select {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	color:#CCC;
	width:auto;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:10px 0 0 10px; /* set margin on left of form elements rather than right of label aligns textarea better in IE */
	background-color: #000000;
	border: solid 1px #CCC;
}

form input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}

textarea { overflow: auto; }

form small {
	display: block;
	margin: 0 0 5px 160px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: 88%;
}

form .required{font-weight:bold;} /* uses class instead of div, more efficient */

/*form br {
	clear:both;  setting clear on inputs didn't work consistently, so brs added for degrade
} */

h1,h2,h3,h4,h5,h6 {
	color: #990000;
	font-weight: normal;
	text-transform: uppercase;
}

h1 { 
	font-size: 1.8em;
	margin-bottom: 0.3em;
}

h3 { 
	font-size: 1.4em;
	margin-bottom: 0.2em;
}

p {
	font-size: 1.2em;
	color: #CCC;
	line-height: 1.5em;
	margin-bottom: 0.5em;
}

a {
	color: #CCC;
}

hr {
	border: 0;
	color: #CCC;
	background-color: #CCC;
	height: 1px;
	margin-bottom: 1em;
}

/* Acronym and abbreviation style */
acronym, abbr {
	cursor: help;
}

a:hover {
	text-decoration: none;
}

.floatleft {
	float:left;
	margin: 0 1em 1em 0;
}

.floatright {
	float: right;
	margin: 0 0 1em 1em;
}

.smalltext {
	font-size: 0.95em;
}

.top {
	background-image:url(images/top_page_button.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 1.5em;
	display:block;
	float: left;
	display:inline;
}

.top2 {
	background-image:url(images/top_page_button.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 1.5em;
	display:block;
	margin-bottom: 0.5em;
}

.download {
	background-image:url(images/download_button.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 1.5em;
}

/* ----------------------------------------------------------------------------- */
/* CSS FOR ACCESSIBILITY */
.skiplink {display:none} 