/* CSS Style Sheet for Chisago Dfl Website
   Layout.css includes many styles which style the outlines of different aspects of the site */

/* The '*' will change all styles */
* {
	margin:0;
	padding:0;
	font-family:Arial, Helvetica, sans-serif;
}
/* Main table */
#main {
	width:760px;
}
/* Main content area */
#content {
	width:760px;
	margin-top:10px;
}
/* Left Column */
#content #left {
	padding-right:5px;
	width: 230px;
}
/* Middle Column */
#content #middle {
	width: 340px;
	padding-right:5px;
	padding-left:5px;
}
/* Right Column */
#content #right {
	padding-left:5px;
	width: 170px;
}
/* Spanned Columns */
#content .span {
	width: auto;
	height: auto;
}

/* Will give a table in a column a thin border */
.thin {
	border: 1px solid #666666;
	padding:4px;
	margin-bottom:10px;
	width:100%;
}
.thin td {
	padding:4px;
}
/* Will give a table in a column a thick border */
.thick {
	border: 2px solid #666666;
	padding:4px;
	margin-bottom:10px;
	width:100%;
}
.thick td {
	padding:4px;
}

/* Images use this class to have a border around them */
#content .image {
	border:1px solid #333333;
}
/* Captions below images contained in a <span> will be smaller and below the image */
#content .caption {
	clear:both;
	font-size:12px;
	line-height:14px;
	color:#666666;
}

/* Image left and right will float an image to the left and right to allow text beside them */
#content .image_left {
	border:1px solid #333333;
	float:left;
	margin:0 4px 10px 0;
}
#content .image_right {
	border:1px solid #333333;
	float:right;
	margin:0 0 4px 10px;
}