@charset "utf-8";
body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	font-size:0.8em;
	background: #EEE;
	margin: 0;
	padding: 0;
	color: #444;
}
h1 {
	
	font-weight: bold;
	/*color: #555;*/
	font-size:1.75em;
}
h2 {
	font-weight: bold;
	/*color: #555;*/
	font-size:1.25em;
}
h3 {
	font-weight: bold;
	/*color: #555;*/
	font-size:1em;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;
	/*padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* Daniel - Below is the usual position for the a styles, I have moved them see below */

a:link {
	color: #0000AA;
	text-decoration: underline;
}
a:visited {
	color: #0000AA;
	text-decoration: underline;
}
a:hover, a:active, a:focus {
	color: #0000FF;
	text-decoration: underline;
}


/* ~~this fixed width container surrounds the other divs~~ */
.container {
	width: 1000px;
	background: #EEE;
	padding 0px 0px 0px 0px;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	background: #FFF;
	padding: 0px 0px 0px 0px;
	margin: 5px 0px 0px 0px;
	border:2px solid #DDD;
	
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
}

.menu{
	text-align:justify;
	width: 1000px;
	margin: 0 auto;
	margin-bottom: 5px;
	padding: 0px 0px 0px 0px;
	font-size:13px;
	color:#333;
	
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
	
	background-color: #DDDDDD;
  	background-image: -webkit-gradient(linear, left top, left bottom, from(#EEEEEE), to(#777777)); /* Chrome, Safari 4+ */
	background-image: -webkit-linear-gradient(top, #EEEEEE, #777777); /* Chrome 10-25, iOS 5+, Safari 5.1+ */
	background-image:    -moz-linear-gradient(top, #EEEEEE, #777777); /* Firefox 3.6-15 */
	background-image:      -o-linear-gradient(top, #EEEEEE, #777777); /* Opera 11.10-12.00 */
	background-image:         linear-gradient(to bottom, #EEEEEE, #777777); /* Chrome 26, Firefox 16+, IE 10+, Opera 12.50+ */
}

ul.nav{
	list-style: none; /*removes the list markers */
	/* padding and margins here prevent big gap at beginning of line */	
	padding: 5px 0px 5px 0px; /*padding to the background bar - Top and Bottom ONLY */
	margin: 0px 0px 0px 0px auto;
	/* Top, Right, Bottom, Left */	
}

ul.nav li {
	/*border-left: 1px solid #EEE; /* this creates the button separation */
		
	padding: 0px 0px 0px 0px; /* keep this one at 0 - otherwise it fattens bar*/
	margin: 0px 0px 0px 0px;
	font-size:14px;
	
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
	border-radius:5px;

	/*display:block; /* whole area clickable */
	/*display:inline-block; /* this is for a horizontal menu DB */
}

ul.nav a, ul.nav a:visited { 
	padding: 5px 10px 5px 10px; /*fills it out to bar size top and bottom, and makes buttons wider. Must be the same as below*/
	margin: 0px 0px 0px 0px;		
	text-decoration: none;
	color: #333;
	font-size:14px;
	
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
	border-radius:5px;
}

ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	color:#FFF;
	font-size:14px;
	background-color:#0080C0; /*hover colour*/
	margin: 0px 0px 0px 0px;
	padding: 5px 10px 5px 10px; /*fills it out to bar size and makes buttons wider. Must be the same as above */
	
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
	border-radius:5px;
}

.filler 
{
    width:100%;
    display: inline-block;
    height:0px;
}

.item 
{
    display: inline-block;
}

body#home a#homenav,
body#events a#eventsnav,
body#venue a#venuenav,
body#location a#locationnav,
body#resources a#resourcesnav,
body#contact a#contactnav,
body#calendar a#calendarnav,
body#hirers a#hirersnav,
body#report a#reportnav,
body#staff a#staffnav
{
	color: #EEE;
	background-color:#005B88;
	
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
	border-radius:5px;
	
	/* margin: 0px 0px 0px 0px; */
	
}

.sidebar {
	padding: 20px 20px 20px 20px;
	width: 200px;
	float: right;
	margin: 0px 0px 5px 5px; 
	background-color: #FFF;
	border:2px solid #DDD;
	border-radius:5px;
	-moz-border-radius:5px; /* Old Firefox */
	-webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
}

.content {
	padding: 20px 20px 20px 20px;
	margin: 0px 0px 5px 0px;
	width: 956px;
	float: left;
	border:2px solid #DDD;
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
	border-radius:5px;
	background-color: #FFF;
}

.contentpublic {
	padding: 20px 20px 20px 20px;
	margin: 0px 0px 5px 0px;
	width: 707px;
	float: left;
	border:2px solid #DDD;
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
	border-radius:5px;
	background-color: #FFF;
}

.box2 {
		
	float:left;
	width:182px;
	text-align:left;
	background-color:#CCC;
	color:#333;
	padding: 5px 5px 5px 5px;
	margin-bottom:5px;	
	margin-right:5px;
	border:2px solid #DDD;
	position:relative; /*required to make div clickable */
	
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
	border-radius:5px;	
}
.box2 img{
	/*make images look cool*/
	opacity:0.7;
	filter:alpha(opacity=40); /* For IE8 and earlier */
}

.box2-right {
		
	float:left;
	width:182px;
	text-align:left;
	background-color:#CCC;
	color:#333;
	padding: 5px 5px 5px 5px;
	margin-bottom:5px;	
	margin-right:0px;
	border:2px solid #DDD;
	position:relative; /*required to make div clickable */
	
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
	border-radius:5px;	
}
.box2-right img {
	/*make images look cool*/
	opacity:0.7;
	filter:alpha(opacity=40); /* For IE8 and earlier */
}

.link-spanner{
	position:absolute; 
	width:100%;
	height:100%;
	top:0;
	left: 0;
	z-index: 1;
	/* edit: fixes overlap error in IE7/8, 
	   make sure you have an empty gif */
	background-image: url('images/empty.gif');
}

.box2:hover, .box2:active, .box2:focus,
.box2-right:hover, .box2-right:active, .box2:focus{
	background-color:#EEE;
	color:#000;
}
.box2:hover img, .box2:active img, .box2:focus img,
.box2-right:hover img, .box2-right:active img, .box2:focus img{
	opacity:1.0;
	filter:alpha(opacity=100); /* For IE8 and earlier */
}

.zindex10{
	/* use this for any links you want above the link spanner above */
	position:relative;
	z-index: 10;
}

.footer {
	padding: 10px 0px 0px 0px;
	margin: 0px 0px 5px 0px;
	background: #DDD;
	border:2px solid #DDD;
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
	border-radius:5px;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	
	background-color: #DDDDDD;
  	background-image: -webkit-gradient(linear, left top, left bottom, from(#EEEEEE), to(#777777)); /* Chrome, Safari 4+ */
	background-image: -webkit-linear-gradient(top, #EEEEEE, #777777); /* Chrome 10-25, iOS 5+, Safari 5.1+ */
	background-image:    -moz-linear-gradient(top, #EEEEEE, #777777); /* Firefox 3.6-15 */
	background-image:      -o-linear-gradient(top, #EEEEEE, #777777); /* Opera 11.10-12.00 */
	background-image:         linear-gradient(to bottom, #EEEEEE, #777777); /* Chrome 26, Firefox 16+, IE 10+, Opera 12.50+ */
}

table.nice {
	border-collapse:collapse;
}
table.nice th, table.nice td {
	border:1px solid #D0DAFD;
	padding:7px 7px 7px 7px;
	/* top, right, bottom, left */
}
table.nice th {
	background-color:#D0DAFD;
	color:#333;
}
table.nice td {
	font-size:small;
	color:#333;
}

table.nicesmall {
	border-collapse:collapse;
}
table.nicesmall th, table.nicesmall td {
	border:1px solid #D0DAFD;
	padding:7px 7px 7px 7px;
	/* top, right, bottom, left */
}
table.nicesmall th {
	background-color: #D0DAFD;
	color:#000;
	font-size:smaller;
}
table.nicesmall td {
	font-size:xx-small;
	color:#333;
}

table.blue {
	border-collapse:collapse;
}
table.blue th, table.blue td {
	border:1px solid #005B88;
	padding:7px 7px 7px 7px;
	/* top, right, bottom, left */
}
table.blue th {
	background-color:#005B88;
	color:#FFF
}
table.blue td {
	background-color:#005B88;
	color:#DDD;
}

table.blue a:link {
	color: #EEE;
	text-decoration: underline;
}
table.blue a:visited {
	color: #EEE;
	text-decoration: underline;
}
table.blue a:hover, table.blue a:active, table.blue a:focus {
	color: #FFF;
	text-decoration: underline;
}




table.clean {
	border-collapse:collapse;
}
table.clean th, table.clean td {
	border:none;
	padding:7px 7px 7px 7px;
	/* top, right, bottom, left */
}
table.clean th {
	background-color: #FFF;
	color:#000;
}
table.clean td {
	color:#333;
}

table.cleansmall {
	border-collapse:collapse;
}
table.cleansmall th, table.cleansmall td {
	border:none;
	padding:4px 4px 4px 4px;
	/* top, right, bottom, left */
}
table.cleansmall th {
	background-color: #FFF;
	color:#000;
	font-size:small;
}
table.cleansmall td {
	color:#333;
	font-size:x-small;
}


table.menu1 {
	border-collapse:collapse;
}
table.menu1 th, table.menu1 td {
	border: none;
	/* top, right, bottom, left */
	padding:5px 5px 5px 5px;
	
	background: #DDD; /* for non-css3 browsers */
	
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#bbbbbb'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#bbb)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #eee,  #bbb); /* for firefox 3.6+ */ 	
}


tr.alt, td.alt {
	background-color: #E8EDFF;
}
tr.alt2, td.alt2 {
	background-color: #D0DAFD;
}

tr.darkbg, td.darkbg, th.darkbg, .darkbg {
	background-color:#8F8F8F;
}

th.altgreen, tr.altgreen, td.altgreen {
	background-color:#BFB;
}
th.altred, tr.altred, td.altred {
	background-color:#FBB;
}

.backgroundblue {
	background-color: #D0DAFD;
	border-color:#000;
	border-bottom:medium;
}	

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */

/* Daniel - I have moved links to container styled */

a.content:link {
	color: #000040;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a.content:visited {
	color: #000040;
	text-decoration: underline;
}
a.content:hover, a.content:active, a.content:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	color: #0000FF;
	text-decoration: underline;
}

h2 a:link {
	color: #555;
	text-decoration: underline;
}
h2 a:visited {
	color: #555;
	text-decoration: underline;
	/*	text-decoration: underline; */
}
h2 a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	color: #222;
	text-decoration: underline;
}


/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 15px 15px 15px 15px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}


/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.warning, a.warning, 
a.warning:link, a.warning:hover,
a.warning:visited a.warning:active,
a.warning:focus { /* warning text */
	color: #F00;
	font-weight: bold;
/*	font-size: 1em; */
}

.green { /* green text */
	color: #2A9F00;
	font-weight: bold;
/*	font-size: 1em; */
}

.smallertext {
	font-size:smaller;
}

.whitesmallertext {
	font-size:smaller;
	color: #FFF;
}

.whitesmallertextright {
	font-size:smaller;
	color: #FFF;
	text-align: right;
}


.greyline {
	font-size: small;
	background-color: #CCC;
}

.tip {
	font-style: italic;
	color: #009;
	font-size: small;
}

.greysmallitalic {
	font-style: italic;
	color:#555;
	font-size:smaller;
}

.buttonxlargenice {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #555;
	font-size:xx-large;
}
.buttonlargenice {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #555;
	font-size: x-large;
}
.buttonlargishnice {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #444;
	font-size: 1.5em;
}
.buttonlargelittlenice {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #333;
	font-size: 1.2em;
}
.buttonlittlenice {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #333;
	font-size: 1em;
}


.footercopyright {
	font-size: x-small;
	text-align:center;
}
.greyout {
	color: #999;
}

.strikeout {
	color: #999;
	text-decoration: line-through;
}

.alignright {
	text-align: right;
}
.aligncentre {
	text-align: center;
}

.logo {
	font-family: Arial, Helvetica, sans-serif;
	font-size: xx-large;
	font-style: normal;
	color: #555;
	font-weight: normal;
}

.whitetext {
	color: #FFF;
}
a.whitetext:link {
	color: #FFF;
	text-decoration: none;
}
a.whitetext:visited {
	color: #FFF;
	text-decoration: none;
}
a.whitetext:hover, a.whitetext:active, a.whitetext:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	color: #FFF;
	text-decoration: underline;
}

.largish {
	font-size:1.5em;
}
.largelittle
{
	font-size:1.2em;
}
.largish-right {
	font-size:1.5em;
	text-align:right;
}
.larger {
	font-size:2em;
}

.boldme {
	font-weight:bold;
}


.yellowbg {
	background-color:#FFFF80;
}

.redbg {
	background-color:#FBB;
}

.greenbg {
	background-color:#BFB;
}

.greybg {
	background-color:#CCC;
}

th.nicebg, tr.nicebg {
	border:1px solid #D0DAFD;
	background-color: #D0DAFD;
}

.nicebg {
	background-color: #D0DAFD;
}


.taskhighlight {
	background-color:#FFFF80;
	font-weight:bold;
}

.nochange {
}

.bordered {
	border:3px solid #000;
}

.bordered2 {
	border:2px solid #000;
}



.button1 {
	text-align:center;
		
	/* background*/
	/* fallback */
  	background-color: #CCC;	
	/* Safari 4-5, Chrome 1-9 */
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FFF), to(#BBB));
	/* Safari 5.1, Chrome 10+ */
	background: -webkit-linear-gradient(top, #FFF, #BBB);
	/* Firefox 3.6+ */
	background: -moz-linear-gradient(top, #FFF, #BBB);
	/* IE 10 */
	background: -ms-linear-gradient(top, #FFF, #BBB);
	/* Opera 11.10+ */
	background: -o-linear-gradient(top, #FFF, #BBB);
	
	border:1px solid #AAA;
	color:#444;
	padding: 4px;
	/*margin-top:10px;
	margin-bottom:10px;
	margin-right:5px;
	margin-left:0px;*/
	position:relative; /*required to make div clickable */
	
	display:inline-block;
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	text-indent:0;
	font-weight:normal;
	font-size:18px;
	/*text-shadow:1px 1px 0px #ffffff;*/
	
	-moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
	-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
	box-shadow:inset 0px 1px 0px 0px #ffffff;	
	
	-moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -khtml-border-radius: 4px;
	border-radius:4px;	
}
.button1:link, .button1:visited {
	color: #444;
	text-decoration: none;
}
.button1 img, .button1right img{	
	/*make images look cool*/
	opacity:0.8;
	filter:alpha(opacity=40); /* For IE8 and earlier */
}

.button1:hover, .button1:active, .button1:focus{
	/* background*/
	/* fallback */
  	background-color: #9AE9FA;
	/* Safari 4-5, Chrome 1-9 */
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#dfdfdf), to(#9AE9FA));
	/* Safari 5.1, Chrome 10+ */
	background: -webkit-linear-gradient(top, #dfdfdf, #9AE9FA);
	/* Firefox 3.6+ */
	background: -moz-linear-gradient(top, #dfdfdf, #9AE9FA);
	/* IE 10 */
	background: -ms-linear-gradient(top, #dfdfdf, #9AE9FA);
	/* Opera 11.10+ */
	background: -o-linear-gradient(top, #dfdfdf, #9AE9FA);
		
	border:1px solid #AAA;
	
	-moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
	-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
	box-shadow:inset 0px 1px 0px 0px #ffffff;
	
	color:#222;
	text-decoration: none;
	text-emphasis: none;
}
.button1:hover img, .button1:active img, .button1:focus img{
	opacity:1.0;
	filter:alpha(opacity=100); /* For IE8 and earlier */
	text-decoration: none;
}

.button1selected {
	text-align:center;
		
	/* background*/
	/* fallback */
  	background-color: #000060;	
	/* Safari 4-5, Chrome 1-9 */
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#22A), to(#000040));
	/* Safari 5.1, Chrome 10+ */
	background: -webkit-linear-gradient(top, #22A, #000040);
	/* Firefox 3.6+ */
	background: -moz-linear-gradient(top, #22A, #000040);
	/* IE 10 */
	background: -ms-linear-gradient(top, #22A, #000040);
	/* Opera 11.10+ */
	background: -o-linear-gradient(top, #22A, #000040);

	border:1px solid #000040;
	color:#EEE;
	padding: 4px;
	/*margin-top:10px;
	margin-bottom:10px;
	margin-right:5px;
	margin-left:0px;*/
	position:relative; /*required to make div clickable */
	
	display:inline-block;
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	text-indent:0;
	font-weight:normal;
	font-size:18px;
	
	-moz-box-shadow:inset 0px 1px 0px 0px #22A;
	-webkit-box-shadow:inset 0px 1px 0px 0px #22A;
	box-shadow:inset 0px 1px 0px 0px #22A;	
	
	-moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -khtml-border-radius: 4px;
	border-radius:4px;	
}
.button1selected:link, .button1selected:visited {
	color: #EEE;
	text-decoration: none;
}
.button1selected img, .button1selectedright img{	
	/*make images look cool*/
	opacity:1.0;
	filter:alpha(opacity=100); /* For IE8 and earlier */
}

.button1selected:hover, .button1selected:active, .button1selected:focus{	
	/* background*/
	/* fallback */
  	* background*/
	/* fallback */
  	background-color: #000080;	
	/* Safari 4-5, Chrome 1-9 */
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#22A), to(#0000E6));
	/* Safari 5.1, Chrome 10+ */
	background: -webkit-linear-gradient(top, #22A, #0000E6);
	/* Firefox 3.6+ */
	background: -moz-linear-gradient(top, #22A, #0000E6);
	/* IE 10 */
	background: -ms-linear-gradient(top, #22A, #0000E6);
	/* Opera 11.10+ */
	background: -o-linear-gradient(top, #22A, #0000E6);

	border:1px solid #000040;
	color:#EEE;
	text-decoration: none;
	text-emphasis: none;
}
.button1selected:hover img, .button1selected:active img, .button1selected:focus img{
	opacity:1.0;
	filter:alpha(opacity=100); /* For IE8 and earlier */
	text-decoration: none;
}

.button1greyout {
	text-align:center;
	
	/* background*/
	/* fallback */
  	background-color: #CCC;	
	/* Safari 4-5, Chrome 1-9 */
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FFF), to(#BBB));
	/* Safari 5.1, Chrome 10+ */
	background: -webkit-linear-gradient(top, #FFF, #BBB);
	/* Firefox 3.6+ */
	background: -moz-linear-gradient(top, #FFF, #BBB);
	/* IE 10 */
	background: -ms-linear-gradient(top, #FFF, #BBB);
	/* Opera 11.10+ */
	background: -o-linear-gradient(top, #FFF, #BBB);
	
	border:1px solid #AAA;
	color:#999;
	padding: 4px;
	/*margin-top:10px;
	margin-bottom:10px;
	margin-right:5px;
	margin-left:0px;*/
	position:relative; /*required to make div clickable */
	
	display:inline-block;
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	text-indent:0;
	font-weight:normal;
	font-size:18px;
	
	-moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
	-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
	box-shadow:inset 0px 1px 0px 0px #ffffff;	
	
	-moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -khtml-border-radius: 4px;
	border-radius:4px;	
}
.button1greyout:link, .button1greyout:visited {
	color: #999;
	text-decoration: none;
}
.button1greyout img, .button1greyoutright img{	
	/*make images look cool*/
	opacity:0.4;
	filter:alpha(opacity=40); /* For IE8 and earlier */
}

.button1-small {
	text-align:center;	

  	/* background*/
	/* fallback */
  	background-color: #CCC;	
	/* Safari 4-5, Chrome 1-9 */
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FFF), to(#BBB));
	/* Safari 5.1, Chrome 10+ */
	background: -webkit-linear-gradient(top, #FFF, #BBB);
	/* Firefox 3.6+ */
	background: -moz-linear-gradient(top, #FFF, #BBB);
	/* IE 10 */
	background: -ms-linear-gradient(top, #FFF, #BBB);
	/* Opera 11.10+ */
	background: -o-linear-gradient(top, #FFF, #BBB);
		
	border:1px solid #AAA;
	color:#444;
	padding: 3px;
	/*margin-top:10px;
	margin-bottom:10px;
	margin-right:5px;
	margin-left:0px;*/
	position:relative; /*required to make div clickable */

	display:inline-block;
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	text-indent:0;
	font-weight:normal;
	font-size:12px;
	/*text-shadow:1px 1px 0px #ffffff;*/
	
	-moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
	-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
	box-shadow:inset 0px 1px 0px 0px #ffffff;	
	
	-moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
	border-radius:3px;	
}
.button1-small:link, .button1-small:visited {
	color: #444;
	text-decoration: none;
}
.button1-small img, .button1-smallright img{	
	/*make images look cool*/
	opacity:0.8;
	filter:alpha(opacity=40); /* For IE8 and earlier */
}

.button1-small:hover, .button1-small:active, .button1-small:focus{
	/* background*/
	/* fallback */
  	background-color: #9AE9FA;
	/* Safari 4-5, Chrome 1-9 */
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#dfdfdf), to(#9AE9FA));
	/* Safari 5.1, Chrome 10+ */
	background: -webkit-linear-gradient(top, #dfdfdf, #9AE9FA);
	/* Firefox 3.6+ */
	background: -moz-linear-gradient(top, #dfdfdf, #9AE9FA);
	/* IE 10 */
	background: -ms-linear-gradient(top, #dfdfdf, #9AE9FA);
	/* Opera 11.10+ */
	background: -o-linear-gradient(top, #dfdfdf, #9AE9FA);
		
	border:1px solid #AAA;
	
	-moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
	-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
	box-shadow:inset 0px 1px 0px 0px #ffffff;
	
	color:#222;
	text-decoration: none;
	text-emphasis: none;
}
.button1-small:hover img, .button1-small:active img, .button1-small:focus img{
	opacity:1.0;
	filter:alpha(opacity=100); /* For IE8 and earlier */
	text-decoration: none;
}

.button1-smallselected {
	text-align:center;
	
	/* background*/
	/* fallback */
  	background-color: #000060;	
	/* Safari 4-5, Chrome 1-9 */
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#22A), to(#000040));
	/* Safari 5.1, Chrome 10+ */
	background: -webkit-linear-gradient(top, #22A, #000040);
	/* Firefox 3.6+ */
	background: -moz-linear-gradient(top, #22A, #000040);
	/* IE 10 */
	background: -ms-linear-gradient(top, #22A, #000040);
	/* Opera 11.10+ */
	background: -o-linear-gradient(top, #22A, #000040);

	border:1px solid #000040;
	color:#eee;
	padding: 3px;
	/*margin-top:10px;
	margin-bottom:10px;
	margin-right:5px;
	margin-left:0px;*/
	position:relative; /*required to make div clickable */
	
	display:inline-block;
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	text-indent:0;
	font-weight:normal;
	font-size:12px;
	
	-moz-box-shadow:inset 0px 1px 0px 0px #22A;
	-webkit-box-shadow:inset 0px 1px 0px 0px #22A;
	box-shadow:inset 0px 1px 0px 0px #22A;	
	
	-moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
	border-radius:3px;	
}
.button1-smallselected:link, .button1-smallselected:visited {
	color: #EEE;
	text-decoration: none;
}
.button1-smallselected img, .button1-smallselectedright img{	
	/*make images look cool*/
	opacity:1.0;
	filter:alpha(opacity=100); /* For IE8 and earlier */
}

.button1-smallselected:hover, .button1-smallselected:active, .button1-smallselected:focus{
	/* background*/
	/* fallback */
  	* background*/
	/* fallback */
  	background-color: #000080;	
	/* Safari 4-5, Chrome 1-9 */
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#22A), to(#0000E6));
	/* Safari 5.1, Chrome 10+ */
	background: -webkit-linear-gradient(top, #22A, #0000E6);
	/* Firefox 3.6+ */
	background: -moz-linear-gradient(top, #22A, #0000E6);
	/* IE 10 */
	background: -ms-linear-gradient(top, #22A, #0000E6);
	/* Opera 11.10+ */
	background: -o-linear-gradient(top, #22A, #0000E6);

	border:1px solid #000040;
	color:#EEE;
	text-decoration: none;
	text-emphasis: none;
	
	-moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
	-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
	box-shadow:inset 0px 1px 0px 0px #ffffff;
}
.button1-smallselected:hover img, .button1-smallselected:active img, .button1-smallselected:focus img{
	opacity:1.0;
	filter:alpha(opacity=100); /* For IE8 and earlier */
	text-decoration: none;
}

.button1-smallgreyout {
	text-align:center;
	
	/* background*/
	/* fallback */
  	background-color: #CCC;	
	/* Safari 4-5, Chrome 1-9 */
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FFF), to(#BBB));
	/* Safari 5.1, Chrome 10+ */
	background: -webkit-linear-gradient(top, #FFF, #BBB);
	/* Firefox 3.6+ */
	background: -moz-linear-gradient(top, #FFF, #BBB);
	/* IE 10 */
	background: -ms-linear-gradient(top, #FFF, #BBB);
	/* Opera 11.10+ */
	background: -o-linear-gradient(top, #FFF, #BBB);
		
	border:1px solid #AAA;
	color:#999;
	padding: 3px;
	/*margin-top:10px;
	margin-bottom:10px;
	margin-right:5px;
	margin-left:0px;*/
	position:relative; /*required to make div clickable */
	
	display:inline-block;
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	text-indent:0;
	text-decoration: none;
	font-weight:normal;
	font-size:12px;
	
	-moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
	-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
	box-shadow:inset 0px 1px 0px 0px #ffffff;	
	
	-moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
	border-radius:3px;	
}
.button1-smallgreyout:link, .button1-smallgreyout:visited {
	color: #999;
	text-decoration: none;
}
.button-small1greyout img, .button1-smallgreyoutright img{	
	/*make images look cool*/
	opacity:0.4;
	filter:alpha(opacity=40); /* For IE8 and earlier */
}