@charset "utf-8";
/* CSS Document */

/*Start CSS for rounded box for text promos*/
#box
	{
	position: relative;
	margin-left: 0;
	margin-right: 0;	
	margin-top: 10px;
	padding: 0;
	text-align: left;
	width:80%;				/* <-- use this to tie width to viewport size */
	width: 200px;				/* <-- use this for a set width */
	background-color: #eeeeee;
	}
 	
#content
	{
	padding:6px 10px;
	}

#content h3
	{
	color:#0354c2;
	font-weight: bold;
	font-size: 12px;
	font-family: helvetica, geneva, arial, sans-serif;
	margin-bottom:5px;
	margin-top: 7px;
	background-color:#999;
	}
	
#content h4
	{
	color: #666;
	font-weight: bold;
	font-size: 10px;
	font-family: helvetica, geneva, arial, sans-serif;
	text-transform:uppercase;
	}
	
#content p
	{
	color:#3b3b3b;
	font-size: 10px;
	line-height: 14px;
	font-family: arial, helvetica, sans-serif;
	padding: 0 0 0 10px;
	margin: 0;
	}
		
/* ---=== border code follows ===--- */
/*
	tlc = top left corner
	trc = top right corner
	blc = bottom left corner
	brc = bottom right corner
	lb = left border
	rb = right border
	tb = top border
	bb = bottom border 
*/

#tlc, #trc, #blc, #brc
	{
	background-color: transparent;
	background-repeat: no-repeat;
	}

#tlc
	{
	background-image:url(images/tlc.gif);
	background-position: 0% 0%;
	}

#trc
	{
	background-image:url(images/trc.gif);
	background-position: 100% 0%;
	}
	
#blc
	{
	background-image:url(images/blc.gif);
	background-position: 0% 100%;
	}

#brc
	{
	background-image:url(images/brc.gif);
	background-position: 100% 100%;
	}

#tb, #bb
	{
	background-color: transparent;
	background-repeat: repeat-x;
	}
			
#tb
	{
	background-image:url(images/tb.gif);
	background-position: 0% 0%;
	}

#bb
	{
	background-image:url(images/bb.gif);
	background-position: 50% 100%;
	}
	
#rb
	{
	background-image:url(images/r.gif);
	background-position: 100% 0%;
	background-repeat: repeat-y;
	}

#lb
	{
	background-color: #eeeeee;
	background-image:url(images/l.gif);
	background-position: 0% 100%;
	background-repeat: repeat-y;
	}

/*End CSS for rounded box for text promos*/
/*Defining #box menu and link classes*/
#box a:link {/*General link class will be the same as visited class*/
	text-decoration:none;
	color: #F00;
	padding: 5px 0 0 0;
}
#box a:visited{/*General link class will be the same as visited class*/
	text-decoration:none;
	color: #F00;
	padding: 5px 0 0 0;
}

#box a:hover {/*All link hover colors for the site will be red if possible*/
	color:#F00;
	text-decoration:underline;
}
#box a:active {/**/
} 
/*End of #box menu and link classes*/