@charset "utf-8";
body  {
	font: 100% Arial, Helvetica, sans-serif;
	background-image:url(../images/background.jpg);
	background-repeat:repeat-x;
	background-color:#c1def1;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-size:0.9em;
}

a img {border:none;}

img {border:none;}
.twoColFixLtHdr #container { 
	width: 905px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header { 
	background: #DDDDDD; 
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

.twoColFixLtHdr #sidebar1-home {
	float: left; /* since this element is floated, a width must be given */
	width: 450px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	height:600px;
	background-image:url(../images/home-page-logo.jpg);
	background-repeat:no-repeat;
	background-position:top left;
}

#home-buttons {padding-top:162px;}

#name {width:250px; height:167px; padding:0;margin:0;float:left;}

#name a {text-decoration:none; color:#000; font-size:1.8em; font-weight:bold;}
#name p { margin-top:10px;}
#interior-buttons{width:250px; height:207px; padding:0;margin:0;float:left;}

.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 250px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	height:750px;
	background-image:url(../images/interior-pages-image.jpg);
	background-repeat:no-repeat;
	background-position:top left;
	padding:0;
	margin:0;
}
.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 250px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

.twoColFixLtHdr #mainContent-home { 
	margin: 0 0 0 450px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 


#topmenu-home{width:450px; height:40px;}
#topmenu{width:650px; height:40px;}

#topmenu-home ul, #topmenu ul {
	list-style-type: none;
	padding: 10px 0 0  0;
	font-weight:normal;
}
#topmenu-home li, #topmenu li {
	float:right;
	margin-right:0px;
	margin-left: 20px;
	color:#FFFFFF;
}

#topmenu-home a, #topmenu a {color:#000; font-weight:bold;font-size:1.0em; text-decoration:none;}

#topmenu-home a:hover, #topmenu a:hover {text-decoration:underline;}

.greenbox {
	background-image:url(../images/green-box-450-600.gif);
	background-repeat:no-repeat;
	height:600px;
	width:450px;
	}

#box-top {
	background-image:url(../images/box-top.gif);
	background-repeat:no-repeat;
	color:#FFF; 
	width:650px;
	height:58px;
	padding:0;
	margin:0;
	}

#box-green-top {
	background-image:url(../images/box-green-top.gif);
	background-repeat:no-repeat;
	color:#FFF; 
	width:450px;
	height:58px;
	padding:0;
	margin:0;
	}
	
#box-bottom {
	background-image:url(../images/box-bottom.gif);
	background-repeat:no-repeat;
	color:#FFF; 
	width:650px;
	height:55px;
	padding:0;
	margin:0;
	}
#box-green-bottom {
	background-image:url(../images/box-green-bottom.gif);
	background-repeat:no-repeat;
	color:#FFF; 
	width:450px;
	height:55px;
	padding:0;
	margin:0;
	}
#box {
	background-image:url(../images/box-middle.gif);
	background-repeat:repeat-y;
	margin:0;
	padding-top:10px;
	padding-bottom:10px;
	width:650px;
	}

#box-green-middle {
	background-image:url(../images/box-green-middle.gif);
	background-repeat:repeat-y;
	margin:0;
	padding-top:10px;
	padding-bottom:10px;
	width:450px;
	}

.twoColFixLtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	font-size:0.7em;
	text-align:right;
	height:50px;
} 
.twoColFixLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

.twoColFixLtHdr #footer a {
	color: #666;
	text-decoration:none;
}
.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 */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

#box-top h1 {
	color:#FFF;
	padding-bottom:0px;
	margin-bottom:0px;
	}
#box-green-top h1 {
	color:#FFF;
	padding-bottom:0px;
	margin-bottom:0px;
	}

h1{font-size:1.5em;padding-left:30px;padding-right:30px;padding-top:10px; z-index:1}
h2{font-size:1.0em;padding-left:30px;padding-right:30px; z-index:1;}
h3{font-size:1.0em;padding-left:30px;padding-right:30px;}

p{font-size:0.9em; padding-left:30px;padding-right:30px;}
li{font-size:0.9em;}

#box-top h1.purple {color:#843577;}
#box-top h1.green {color:#62bb46;}
#box-top h1.orange {color:#f68e47;}
#box-top h1.red {color:#ee4037;}
#box-top h1.blue {color: #06C;}

#box a.menu-purple {font-size:1.1em;color:#843577; text-decoration:none; font-weight:bold;}
#box a.menu-purple-on {font-size:1.1em;color:#843577; text-decoration:underline; font-weight:bold;}
#box a:hover.menu-purple {font-size:1.1em;color:#843577; text-decoration:underline; font-weight:bold;}

#box a.menu-blue {font-size:1.1em;color:#06C; text-decoration:none; font-weight:bold;}
#box a.menu-blue-on {font-size:1.1em;color:#06C; text-decoration:underline; font-weight:bold;}
#box a:hover.menu-blue {font-size:1.1em;color:#06C; text-decoration:underline; font-weight:bold;}

#box a.menu-green {font-size:1.1em;color:#62bb46; text-decoration:none; font-weight:bold;}
#box a.menu-green-on {font-size:1.1em;color:#62bb46; text-decoration:underline; font-weight:bold;}
#box a:hover.menu-green {font-size:1.1em;color:#62bb46; text-decoration:underline; font-weight:bold;}

#box a.menu-orange {font-size:1.1em;color:#f68e47; text-decoration:none; font-weight:bold;}
#box a.menu-orange-on {font-size:1.1em;color:#f68e47; text-decoration:underline; font-weight:bold;}
#box a:hover.menu-orange {font-size:1.1em;color:#f68e47; text-decoration:underline; font-weight:bold;}

#box a.menu-red {font-size:1.1em;color:#ee4037; text-decoration:none; font-weight:bold;}
#box a.menu-red-on {font-size:1.1em;color:#ee4037; text-decoration:underline; font-weight:bold;}
#box a:hover.menu-red {font-size:1.1em;color:#ee4037; text-decoration:underline; font-weight:bold;}

.greentext {color:#62bb46;}
.bluetext{color:#06C;}
.orangetext{color:#f68e47;}
.redtext{color: #ee4037;}
.purpletext{color:#843577;}

.picture {padding:10px 0 0 30px;}

blockquote {font:"Times New Roman", Times, serif, "Palatino Linotype", "Book Antiqua", Palatino, serif; font-size:1.1em; font-weight:bold;margin-left:30px;}

h1.h1teens {
	width: 350px; height: 50px;
	position: relative;
	}
h1.h1teens span {
		background: url("../images/tring-teens.gif");
		background-repeat:no-repeat;
		position: absolute;
		width: 100%;
		height: 100%;
	}
	
h1.h1youth {
	width: 350px; height: 50px;
	position: relative;
	}
h1.h1youth span {
		background: url("../images/tring-youth-project.gif");
		background-repeat:no-repeat;
		position: absolute;
		width: 100%;
		height: 100%;
	}
h1.h1collages {
	width: 350px; height: 50px;
	position: relative;
	}
h1.h1collages span {
		background: url("../images/tring-local-collages.gif");
		background-repeat:no-repeat;
		position: absolute;
		width: 100%;
		height: 100%;
	}
h2.h2otherstuff {
	width: 185px; height: 36px;
	position: relative;
	}
h2.h2otherstuff span {
		background: url("../images/teens-other-stuff.jpg");
		background-repeat:no-repeat;
		position: absolute;
		width: 100%;
		height: 100%;
	}

.textp {font-size:0.9em; padding-left:30px; }

