@charset "utf-8";
body {
	margin: 0;
	padding: 0;
	color: #333;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	line-height: 1.6;
	background-color: #dcddde;
}
/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	font-weight: normal;
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	margin-bottom: 0;
	padding-right: 0px;
	padding-left: 0px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
h1 {
	font-size: 1.5em;
	color: #666;
	line-height: 1.75em;
	letter-spacing: 0.2em;
	margin-bottom: 10px;
	text-transform: uppercase;
}
h2 {
	font-size: 1.2em;
	color: #666;
	line-height: 1.75em;
	letter-spacing: 0.1em;
	margin-bottom: 10px;
	text-transform: uppercase;
}
h3 {
	font-size: 12px;
	color: #666;
	line-height: 16px;
	font-weight: bold;
}
h4 {
	font-size: 0.8em;
	color: #666;
	font-weight: bold;
	text-align: right;
	padding-top: 6px;
}

/* ~~this fixed width container surrounds the other divs~~ */
.container {
	width: 980px;
	background: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	background: #fff;
	height: 80px;
}

.header img {

}


/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/
.sidebar1 {
	float: left;
	width: 280px;
	background: #fff;
	padding-bottom: 10px;
	margin-top: 20px;
	margin-left: 20px;
	clear: both;
}
.pink {
	color: #F0F;
}
.panel, .panel2 {
	margin-bottom: 20px;
	padding: 10px;
}
.panel {
	height: 48px;
	background-color: #dcddde;
}
.panel2 {
	background-color: #dcddde;
}
.panel p, .panel2 p, ul, li {
	font-size: 12px;
	line-height: 18px;
	color: #666;
}
.panel2 ul li {
	list-style-position: inside;
	padding: 0 0 8px 15px;
    text-indent: -1em;
}
.panel img {
	margin-right: 10px;
	float: left;
}
.panel p a, .panel2 p a {
	text-decoration: none;
	color: #666;
	font-style: italic;
}
.panel p a:hover, .panel2 p a:hover {
	text-decoration: underline;
	color: #0082d1;
}
.content {
	padding-left: 10px;
	width: 640px;
	float: right;
	margin-right: 20px;
}
.content2 {
	margin-right: 20px;
	margin-top: 20px;
	margin-bottom: 20px;
	width: 640px;
	float: right;
	margin-left: 10px;
}

.content2 p a {
	text-decoration: none;
	color: #0082d1;
}
.sidebar1 embed {
	margin-top: -10px;
	margin-bottom: 10px;
}



.content2 p a:hover {
	text-decoration: underline;
}
.content2 img {
	margin-bottom: 20px;
	border-radius: 10px;
}

.contactbanner {
	color: #666;
	text-align: right;
	text-decoration: none;
	float: right;
	font-size: 14px;
	margin-top: 35px;
	margin-right: 20px;
}
.contactbanner a {
	color: #0082d1;
	text-decoration: none;
}
.contactbanner a:hover {
	text-decoration: underline;
}
.sidebar2 {
	float: right;
	width: 280px;
	background: #fff;
	padding-bottom: 10px;
	margin-top: 20px;
	margin-right: 20px;
	clear: both;
}.content2 ul li {
	font-size: 1.2em;
	line-height: 1.6em;
	list-style-position: inside;
}
.testimonial {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCC;
	clear: left;
	padding-top: 8px;
	padding-bottom: 8px;
	font-size: 0.8em;
}

.testimonial p {
	padding-top: 12px;
}

.content2 img {
	margin-bottom: 20px;
	border-radius: 10px;
}
#player {
	width: 280px;
	margin-bottom: 15px;
}
/* ~~ The footer ~~ */
.footer {
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both;
	font-size: 12px;
	color: #FFF;
	text-decoration: none;
	text-align: center;
	line-height: 18px;
	list-style-position: inside;
	background-color: #999;
	padding-left: 20px;
	padding-top: 10px;
	padding-bottom: 20px;
}
.footer a:hover {
	text-decoration: underline;
	font-weight: bold;
}

.footer a {
	color: #fff;
	text-decoration: none;
}
.section
{
	display: inline;
	float: left;
	position: relative;
	margin-left: 0px;
	margin-right: 20px;
	width: 140px;
	margin-top: 20px;
	font-size: 10px;
	line-height: 14px;
}
.container .content2 form {
	margin-top: 8px;
}
