@charset "iso-8859-1";

/*******************************************************************************
*  skidoo_lean.css : 2004-08-17 : Ruthsarian Layouts
* ------------------------------------------------------------------------------

*  lean and mean version of the original skidoo layout seen at:
*  http://webhost.bridgew.edu/etribou/layouts/skidoo/
*  CSS for horizontal and vertical nav elements based on unordered lists

*  isn't here to help reduce the layout to its core components.
*******************************************************************************/

body
{
	background: url("/images/bg.png");
	background-repeat: repeat-x;
	font-size: 100.1%;

	margin: 0;
	padding:0 1em;		/* remove this to stretch the layout 
				   across the screen edge-to-edge */
}

#pageWrapper
{
	border-style: solid;
	border-width: 0 1px;	/* layout's side borders */

	font-family: arial, helvetica, sans-serif;
	font-size: 80%;		/* arial looks better with a smaller size */
	margin: 0;
	min-width: 800px;	/* IE doens't understand this property */
	max-width: 1280px;	/* IE doens't understand this property */
	width: auto;
}

#masthead
{
	background-color:rgb(255,255,255);
	background-image: url("/images/bghead.png");
	background-repeat:repeat-y;
	background-position:right; 
	border-style: solid;
	border-width: 1px 0;
	font-family:Helvetica;
	font-variant:small-caps;
	font-size:1.1em;
	color:rgb(40,80,125);	
	padding:0 0.5em;
}

#nav {
	margin:0;
	padding:0;
	background-image: url("/images/bgmnu.png");
	background-repeat:repeat;
	background-position:right;
	font-size:12px;	
	height:20px;
	border-style: solid;
	border-width: 0 0 1px 0;
}
	
#nav ul { margin:0; padding:0; }
#nav li { display:inline; }

#nav a:link,
#nav a:visited {
	padding:2px 0 0 0;
	margin:0;
	width:110px;
	height:18px;
	text-align:center;
	font-weight:bold;
	color:rgb(40,80,125);
	float:right;
	border-left:1px solid;
	text-decoration:none;

}
#nav a:hover {
	background-image: url("/images/bghvr.png");
	background-repeat:repeat;
	background-position:right;
}


#outerColumnContainer
{
	background-color: #fff;
	border-style: solid;
	border-width: 0 18em 0 14.5em;	/* side border widths must equal the

				   widths of the left and right columns. 
				 */
	border-left-color:rgb(240,240,240);	/* left hand column background color */
	border-right-color:rgb(255,255,255);	/* right hand column background color */
	color: #000;
	z-index: 1;

}

#twoColumnContainer
{
	background-color: #fff;
	border-style: solid;
	border-width: 0 .5em 0 14.5em;	/* side border widths must equal the

				   widths of the left and right columns. 
				 */
	border-left-color:rgb(240,240,240);	/* left hand column background color */
	border-right-color:rgb(255,255,255);	/* right hand column background color */
	color: #000;
	z-index: 1;

}

#innerColumnContainer
{
	border-style: none;
	border-width: 0 1px;	/* puts borders between middle and the side 

				   columns. */
	margin: 0 -1px;		/* compensate for the borders because of
				   100% width declaration */
	width: 100%;
	z-index: 2;
}
html[xmlns] .mozclear
{
	/* this selector should be valid CSS, but Opera 7.5 (and above) will pick

	 * this up as well. Shouldn't be a problem, Opera should handle this fine,
	 * but it's a Mozilla-targeted hack, and it should probably only affect
	 * mozilla. You can do that by replacing the INVALID CSS selector

	 * :root .mozclear for what's give here.
	 */
	border-bottom: 1px solid;
	border-color: transparent;
	margin-bottom: -1px;
}
#leftColumn, #rightColumn, #contentColumn
{
	float: left;
	overflow: visible;	/* fix for IE italics bug */

	position: relative;
	z-index: 10;
}
#leftColumn
{
	margin: 0 1px 0 -14.5em;	/* the margin on the side the column is to be
				   rendered on must be the negative equal of 
				   the column's width. The opposite border must

				   be 1px */
	width: 14.5em;
}
#rightColumn
{
	float: right;	/* doesn't have to be floated right, but if using some
			   original skidoo tweaks, you need it this way */
	margin: 0 -18em 0 1px;	/* same as in the #leftColumn but reversed */

	width: 18em;
	
}

#rightColumn .inside
{
	font-size: 90%;	/* because the parent element ( #rightColumn )
			   defines its width in EMs, we can't change the font 
			   size in that selector, otherwise the column won't use

			   the entire width reserved for the column */
	text-align:left;
	margin:0 auto;
}

#rightColumn img { text-align:center; margin:0 auto; }

#contentColumn
{
	margin: 0 -1px;		/* required to get the negative margin-based
				   layout to work. if #contentColumn does not
				   overlap the left and right columns, then
				   the whole layout will break */
	width: 99%;
}


#footer
{
	background-color:rgb(158,26,129);
	text-align:center;
	font-size:0.85em;
	font-weight:bold;
	border-style: solid;
	border-width: 1px 0;	/* border for bottom of layout and top of 
				   footer area */

	color: #fff;
	position: relative;
}

#footmenu
{
	background-color:rgb(246,203,236);
	text-align:right;
	font-size:0.85em;
	font-weight:bold;
	border-style: solid;
	border-color: rgb(0,0,0);
	border-width: 0 0 1px 0;	/* border for bottom of footmenu area */

	color: #fff;
	position: relative;
}

#ps
{
	width:100%;
	text-align:right;
	padding-top:5px;
}



p, h1, h2, h3, h4, h5, h6
{
	margin: 1em 0;		/* for better consistency across platforms */
}

.clear
{
	clear: both;
}

.inside
{
	padding: 0 1.5em;	/* glitch in IE caused by vertical padding in
				   this class, so 0 padding is set here and
				   those blocks that need the vertical padding
				   must be applied to the parent element.
				   the purpose of this class is to provide 
				   horizontal padding without using hacks to
				   get around IE's broken box model. so it's
				   okay to apply vertical padding to the parent
				   element, just not horizontal padding. */
}

#leftColumn, #centerColumn, #rightColumn
{
	padding-top: 0.5em;
	padding-bottom: 0.5em;	/* this is the vert padding talked about in the
				   .inside selector comment. */
}

#footer
{
	padding: 0.2em;	/* ditto from above */
}

#pageWrapper, #innerColumnContainer, #masthead, #footer
{
	border-color:rgb(0,0,0);	/* one-stop control of border color used within
				   the layout */
}

#outerColumnContainer
{
	border-top-color:rgb(0,0,0);	/* should match the above border color */

}


/******************************************************************************/

/************** Rounded Edges Border *******************/



.t {background: url(/images/dot.png) 0 0 repeat-x; width: 97%; margin-bottom:.8em;}
.b {background: url(/images/dot.png) 0 100% repeat-x}
.l {background: url(/images/dot.png) 0 0 repeat-y}
.r {background: url(/images/dot.png) 100% 0 repeat-y}
.bl {background: url(/images/bl.png) 0 100% no-repeat}
.br {background: url(/images/br.png) 100% 100% no-repeat}
.tl {background: url(/images/tl.png) 0 0 no-repeat}
.tr {background: url(/images/tr.png) 100% 0 no-repeat; padding:3px 10px;}
