@charset "utf-8";
/* CSS Document */

/* ########################################################
Sioux Falls Area Chamber of Commerce
Copyright 2009
Thane Barnier, Programer & Project Lead
Jill Blom, Assistant programmer and designer
Jen Terveen, Designer

Basic Styles
Styles that fix browser issues, set default text and colors, 
provide a variety of text treatments to choose from for the
content and allow for easy handling of images.
############################################################ */

/* ###### BROWSER ISSUES ###### */

/* Sets margins to 0 as well as forces scroll bar */
html {
	min-height: 100%;
	margin: 0;
	margin-bottom: 1px;
	outline: 0;
}

/* Removes "focus" lines from Firefox */
:focus {
outline: 0;
} 

/* Removes built-in browser styles */
* {
/*border: 0;*/
margin: 0;
padding: 0;
}

/*Sets Arial as default */
body {
	font-family: Arial, Helvetica, sans-serif;
	padding: 0;
	margin: 0;
	font-size: 12px; /* Equivalent to 12px */
	line-height: 16px; /* Equivalent to 16px */
}

/* Prevents links on images from automatically creating borders */
img {
	border: 0;
}

/* ###### DEFAULT TEXT ###### */

p { 
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px; /* Equivalent to 12px */
	line-height: 16px; /* Equivalent to 16px */
}

h1 { 
	font-family: Arial, Helvetica, sans-serif;
	font-size: 24px; /* Equivalent to 12px */
	line-height: 28px; /* Equivalent to 16px */
	font-weight: bold;
}

h2 { 
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px; /* Equivalent to 12px */
	line-height: 22px; /* Equivalent to 16px */
	font-weight: normal;
}

h3 { 
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px; /* Equivalent to 12px */
	line-height: 18px; /* Equivalent to 16px */
	font-weight: bold;
}

h1.phark {
	text-indent: -9999px;
	line-height: 0;
}

hr { }

*.bodytext {
	font-size: 12px;
	font-family: Arial, Helvetica, Verdana, sans-serif;
	margin: 14px 0 0 0;
}

/* ###### TEXT TREATMENTS ###### */

*.dkblue { color: #002147; }

*.cblue { color: #002776; }

*.cblue_shaded { color: #002663; }

*.ltblue { color: #70a6d7; }

*.ltblue_shaded { color: #5686b6; }

*.cgold { color: #FFbd16; }

*.cgold_shaded { color: #eaab00; }

*.ltgray { color: #E6E6E6; }

*.mdgray { color: #999; }

*.dkgray { color: #333; }

*.white { color: #FFF; }

*.small {
	font-size: 10px;
	line-height: 14px;
	font-family: Arial, Helvetica, Verdana, sans-serif;
}

*.large {
	font-size: 16px;
	font-family: Arial, Helvetica, Verdana, sans-serif;
}

*.xlarge {
	font-size: 20px;
	font-family: Arial, Helvetica, Verdana, sans-serif;
}

*.title {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 20px;
	display: block;
	height: 30px;
}

*.subtitle {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-size: 12px;
	color: #70a6d7;
	font-style: italic;
	font-weight: bold;
}


/* ###### TABLE AND IMAGE CUSTOMIZATION ###### */

*.rowborder { border-bottom: 1px solid #70a6d7; }

*.imageborder { border: solid 2px #70a6d7; }

*.imagealign_left {
	float: left;
	margin-right: 15px;
	border: solid 2px #70a6d7;
}

*.imagealign_right {
	float: right;
	margin-left: 15px;
	border: solid 2px #70a6d7;
}