@charset "UTF-8";
/* CSS Document 

File Name sjs_layout_monitor.css

Style Sheet for Monitors for Shaston Jazz and Swing
Copyright Linden Solutions Limited Trading as Shaston Jazz and Swing
Created August 2009 by Duncan Sears using Dreamweaver on a mac

*/
/* First General Rules */

body {
	/* it's good practice to zero the margin and padding of the body element
	to account for differing browser defaults */
	margin: 0;
	padding: 0;
	background-color: #081762;			/* Matches with #081762 */
	/* this centers the container in IE 5* browsers.
	with compatable background to our bitmap which will be in centre.
	The text is then set to the left aligned default in the #container selector */
	text-align: center;
}

/* Now for Rules for Specific regions of the Screen */
/* Layouts used. which should be centred horizontal within browser window 

---------------- header -----------------
------------------ h1 -------------------
---------------- navbar -----------------
--- sidebar1 -- topcentre -- sidebar2 ---
-------------- midheader ----------------
-midsidebar1- midmaincontent -midsidebar2
-------------- footer -------------------
------------- actionbar -----------------
or

---------------- header -----------------
------------------ h1 -------------------
---------------- navbar -----------------
--- sidebar1 -- topcentre -- sidebar2 ---
------------ midmainscroll --------------
-------------- footer -------------------
------------- actionbar -----------------

or 

---------------- header -----------------
------------------ h1 -------------------
---------------- navbar -----------------
--- sidebar1 -- topcentre -- sidebar2 ---
-------------- midheader ----------------
----- midmaincontent ------ midsidebar2 -
-------------- footer -------------------
------------- actionbar -----------------

True High must include Height + Margin + Pad

Padding is inside the box
Margin is outside of the box

*/

#container {
	/* using 20px less than a full 800px width allows for browser chrome
	and avoids a horizontal scroll bar
	Could use wider since 1200 very common but like 1/3 look with photos at 249px
	and don't want bigger / large pic files */
	width: 780px;
	/* Same for Vertical currently 600px but might look at longer */
	height: 580px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-repeat: no-repeat;
	border-width: 1px;
	border-style: solid;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #FFF;
	border-left-color: #FFF;
	background-image: url(images/sjs_780x580.jpg);
	position: relative;
}
			/* position logo off to right of main section */
.logo {
	position: absolute; left: 820px; top: 50px;
}

td, th {
	/* Tables data and Headers */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 24px;
	color: white;
}
em, b {
	/* Emphasizing not sure about Yellow */
	color: yellow;
	padding: 1px;
	font-family: Arial, Helvetica, sans-serif;
}
	/* Company information bit and policy cookies etc. */
.legal {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: gray;
}
.centred {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: white;
	text-align:center;
	margin: 0px;
	padding: 1px;
}
.float_pic_right
{
	margin: 1px 1px 1px 15px;
	padding: 0px;
	float: right;
}

	/* Activity of cursor over anchor links and whether they have been taken */
a:link {
	color: white;
}
a:hover {
	color: #081762;						/* Background Colour */
	text-decoration: underline;
	background: white;
}
a:visited {
	color: gray;
}
h1 {
	font-family: Arial Black, Arial, Helvetica, sans-serif;
	font-size: 20px;
	line-height: 14px;
	color: white;
	text-align: center;
	padding: 1px;
}
h2 {
	font-family: Arial Black, Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: white;
	text-align: center;
	padding: 1px;
}
h3, h4, h5, h6 {
    font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	line-height: 14px;
	color: white;
    text-align: center;
}
ol, ul {
	color: white;
	font-size: 9px;
	padding: 1px;
	line-height: normal;
}
p {
	/* Use the Following by Default */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	white-space:normal;
	color: white;
	padding: 3px;
}
form {			/* Following are for Form filling */

	font-family: Arial, Helvetica, sans-serif;
	color: white;
	font-size: 12px;
}
input {
	font-family: Arial, Helvetica, sans-serif;
	color: black;
	font-size: 12px;
}
textarea {
	color: black;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
select {
	font-family: Arial, Helvetica, sans-serif;
	color: black;
	font-size: 12px;
}				/* End of Form Filling */

	/* List entries unless specified more fully includes ordered and unordered ones */
li {
	font-family: Arial, Helvetica, sans-serif;
	color: white;
	list-style-position: outside;
	list-style-type: circle;
	line-height: 20px;
	text-indent: 10px;
	margin-left: 40px;
	font-size: 14px;
	font-style: normal;
	word-spacing: normal;
	padding: 1px;
}

/*
	Rules about specific layout boxs and formats
	Particularly padding to aviod margin collapse
*/
#header {
	padding: 1px;
	height: 48px;		/* 50px High */
}
#header h1 {
	margin: 0;
	padding: 5px;
	font-family: Arial Black, Arial, Helvetica, sans-serif;	
}
/* 	navbar and actionbar both menu's but action has less on it
	actionbar has more important actions like book us !
	Vertbar is Vertical to select say players
*/
#navbar {
	margin: 0;
	padding: 2px; 
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	font-size: 10px;
	font-weight: bold;
}
#navbar ul {
	margin: 0;
	padding: 1px; 
}
#navbar ul a:link {
	color: white;
}
#navbar ul a:hover {
	color: #081762;						/* Background Colour */
	background: white;
}
#navbar ul a:visited {
	color: gray;
	font-family: Arial, Helvetica, sans-serif;
}
#navbar ul li {
	display: inline;
	font-size: 12px;
	margin-right: 3px;
	margin-left: 3px;
	list-style-type: none;
	padding: 1px;
}
#vertbar ul li
{
	margin: 0; 
	display: block;					/* Not Sure for Vertical */
	font-size: 12px;
	list-style-type: circle;
	padding: 1px 10px 1px 1px;
}

#actionbar {
	margin: 0;
	padding: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	text-align:center;
}
#actionbar ul {
	margin: 0;
	padding: 1px;
}
#actionbar ul li {
	margin: 0;
	padding: 1px; 
	display: inline;
	margin-right: 20px;
	margin-left: 20px;
	list-style-type: none;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 248px;					/* 250px wide */
	padding: 1px 1px 1px 1px;
	height: 178px;					/* 180px High */
}
#sidebar1 p {
	margin: 0;
	padding: 1px;
	text-align: center;
	color: white;
}
#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 248px; 
	padding: 1px;
	height: 178px;					/* 180px High */
}
#sidebar2 p {
	margin: 0;
	padding: 1px;
	text-align: center;
	color: white;		
}
#topcentre {
	margin: 0px 0px;			/* always a little Box. */
	padding: 1px;
	height: 178px;				/* 180px High */
}
#topcentre h2 {
	margin: 0;
	padding: 1px;
}
#topcentre li {
	font-size: 14px;
	padding-right: 5px;
	padding-left: 5px;
	padding-top: 1px;
	padding-bottom: 1px;
	list-style-position: inside;
	list-style-type: disc;
	top: 1px;
}
#topcentre p {
	margin: 0;
	font-size: 12px;
	text-align: center;
	color: white;
	padding: 5px;
}
.vertquickbar 
{				/* Must be after general topcentre definitions */
	font-size: 12px;
}
.vertquickbar ul
{
	margin: 0;
	padding: 1px
}
.vertquickbar ul li
{	
    display: block;					/* Must be after general topcentre definitions */
	list-style-type: none;
	font-size: 12px;
}
.vertquickbar ul li a
{	
    display: block;					/* Must be after general topcentre definitions */
	list-style-type: none;
	font-size: 12px;
	margin: 0px;
	padding: 0px;
}

#midheader {
	margin: 0;
	padding: 1px; 
	height: 28px;				/* 30px High */
}
#midheader h4 {
	margin: 0;
	padding: 5px;
	font-size: 16px;
	color: white;
}
#midsidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 230px; 				/* 250 px wide */
	padding: 10px;
	height: 260px;				/* 280 px high */
}
#midsidebar2 {
	float: right;
	width: 246px; 
	height: 260px;
	padding: 10px 2px; 
}
#midmaincontent {
	margin: 0px;
	height: 260px;				/* 280px High */
	padding-top: 10px;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 10px;
}
#midmaincontent p {
	margin: 0;
	padding: 8px 8px 1px 8px;
	font-family: Arial, Helvetica, sans-serif;
}
#midsidebar1 p {
	margin: 0;
	padding: 8px;
}
#midsidebar2 p {
	margin: 0;
	padding: 8px;
}
#midmaincontent h3 {
	margin: 0;
	padding: 8px;
}
#midsidebar1 h3 {
	margin: 0;
	padding: 8px;
}
#midsidebar2 h3 {
	margin: 0;
	padding: 8px;
}
#midmaincontent li {
	font-size: 12px;
	padding-right: 5px;
	padding-left: 5px;
	padding-top: 1px;
	padding-bottom: 1px;
	text-indent: 10px;	
	margin-left: 40px;
	list-style-position: outside;
	list-style-type: disc;
}
#midmainscroll {
	margin: 0px;
	padding: 10px;
	height: 290px;				/* 280px + 30px from no Midheader = 310px High */
	overflow: scroll;
}
#midmainscroll p {
	margin: 0;
	padding: 10px;
}
#midmainscroll h3 {
	margin: 0;
	padding: 8px;
}
#footer {	
	clear:both;
	margin: 0;
	padding: 1px;
	height: 36px;				/* 38px High */
}
#footer p {
	margin: 0;
	padding: 1px;
	font-size: 12px;
	line-height: 12px;
	text-align: center; /* this overrides the text-align: center on the body element. */
}
/* End of File sjs_layout_monitor.css */
