/* ---------------------------------------------------
   HTML ELEMENTS
---------------------------------------------------- */

/********** Top Elements **********/	
* { margin: 0; padding: 0; outline: 0; }

body {
	background: #caced1;  /* grey */
/*	font: 70%/1.5em Verdana, Tahoma, arial, sans-serif;*/
	font: 70%/1.5em verdana, arial, sans-serif;
	color: #505050;
	text-align: center;
	margin: 15px 0 15px;	/* grey space above and below entire page */
}


/********** Links **********/	
a, a:visited {
	text-decoration: none;
	background: inherit;
	color: #2666c3; 		/* blue */
}
a:hover {
	text-decoration: underline;
	background: inherit;
	color: #00008B;			/* dark blue */
}


/********** Headers **********/	
h1, h2, h3, h4, h5 { font-family: 'Trebuchet MS', Tahoma, Sans-serif;  }
/* Black Large */
h1 {
	font-size: 180%;	
	font-weight: normal;	
	color: #000000;
}
/* Dark Grey medium*/
h2 {
	font-size: 140%;	 
	color: #666666;
	padding: 10; 	
}
/* Dark Grey medium-large */
h3 {
	font-size: 160%;
	color: #666666;
	font-weight: normal;
	line-height: 130%;	
}
/* Dark Blue Large */
h4 {
	font-size: 180%;	
	font-weight: normal;	
	color: #2666c3;
}
/* Black Medium */
h5 {
	font-size: 150%;	
	font-weight: normal;	
	color: #000000;
}


/********** Images **********/	
/*
img {
	background: #fff;
    border: 1px solid #C7DDF3;
	padding: 7px;
}*/
img.float-right { margin: 5px 0px 10px 10px;  }
img.float-left { margin: 5px 10px 10px 0px; }
img.centered-image {
	text-align: center;
	display: block;
}

h1, h2, h3, h4, h5, p {
	margin: 10px 15px;
	padding: 0;
}
ul, ol {
	margin: 5px 15px;
	padding: 0 25px;
}


/********** Layout **********/	
#wrap {
	width: 870px;
	background: #CCC url(images/Content.jpg) repeat-y center top;
	margin: 0 auto;
	text-align: left;
}
#content-wrap {
	clear: both;
	width: 840px;
	margin: 0px auto;
	padding: 0; 	
}
/* Title header used on main page */
#main-header {
	position: relative;
	height: 200px;
	background: #caced1 url(images/MainPageHeader.jpg) no-repeat center top;
	padding: 0;	
	color: #fff;	
}


/********** Secondary Header **********/	
/* Title header used on pages other than main page */
#secondary-header {
	position: relative;
	height: 160px;
	background: #caced1 url(images/SecondaryPageHeader.jpg) no-repeat center top;
	padding: 0;	
	color: #fff;	
}
/* The title of the actual page - see this text under BlueTunes graphic */
#secondary-header h1#title-text a {
	position: relative;
	margin: 0; padding: 0;
	font: bolder 20px 'Trebuchet MS', Arial, Sans-serif;
/*	letter-spacing: -3px;*/
/*	color: #666666;*/
	color: #404040;
	text-transform: none;
	text-decoration: none;
	background: transparent;
	
	/* change the values of top to adjust the position of the text */
	top: 125px;
}


/********** Menu **********/	
/* This is the navigation menu (home, download, videos, etc... */
#menu {
	clear: both;	
	margin: 40px 0 0 0;
	padding: 0;
	font: bold 12px/20px "Trebuchet MS", Arial, Tahoma, Sans-serif;
	width: 870px;
}
#menu ul {
	float: right;
	list-style: none;
	margin:0 15px;
	padding: 0 0 0 20px;
}
#menu ul li {
	display: inline;
	float: left;
}
#menu ul li a {
	display: block;
	padding: 0 16px;
	color: #2666c3;	 		/* text color = dark blue */
	text-decoration: none;
	background: url(images/Sep.jpg) no-repeat;
}
#menu ul li a:hover {
	color: #FFFFFF;	
	background: #2666c3; 	/* dark blue background when highlighted */	
}
#menu ul li#current a {	
	color: #FFFFFF;	
	background: #2666c3; 	/* dark blue background when highlighted */	
}
/* this is the drop down portion of the menu */
#menu div
{	position: absolute;
	visibility: hidden;
	margin: 0;
	padding: 0;
	background: rgb(226,240,255);	/* light blue backdrop of drop down */
	background: #E2F0FF;
	border: 1px solid #2666c3;		/* dark blue border of drop down */
}
#menu div a
{
	position: relative;
	display: block;
	margin: 0;
	padding: 5px 5px;
	/*width: auto;*/
	white-space: nowrap;
	text-align: left;
	text-decoration: none;
	background: rgb(226,240,255);	/* light blue backdrop of drop down */
}


/********** Main Column **********/	
#main {
	float: left;
	width: 838px;
	margin: 5px 0 10px 0;
	padding: 50px 0 0 0; 
	display: inline;
	min-height: 400px;
	border: 1px solid #C7DDF3; 
	/* light yellow */
	background: #FEFFF1;
}
#main p {
	font-size: 120%;
}


/********** Grouped Sections **********/	
/* these are the sections like - Download, Install, Guide, etc... */
/* Bold text header followed by description text below */
#grouped-sections{
	line-height: normal;	
	margin: 0 0 50px 0; 	/* bottom = 40, Space between sections */
}
#grouped-sections h1 {
/*	font-size: 150%;*/	
	font-size: 180%;	
	font-weight: normal;	
	color: #000000;			/* black text */
	margin-bottom: 0px;		/* no spacing between title and text below */
}
#grouped-sections h2 {
	font-size: 150%;	
	font-weight: normal;	
	color: #000000;			/* black text */
	margin-bottom: 0px;		/* no spacing between title and text below */
}
#grouped-sections p {
	font-size: 120%;	
	font-weight: normal;
	padding: 0 0 0 5px;		/* indent the text a bit */
	color: #505050;			/* dark grey */
	margin-top: 0;			/* no spacing between paragraphs */
	margin-bottom: 0;		/* no spacing between paragraphs */
}
#grouped-sections ul, ol {
	font-size: 110%;	
	font-weight: normal;
	line-height: 140%;
}

#main p, #main h1, #main h2, #main h3, #main h4, #main h5, #main ol, #main ul,
#main grouped-sections {
	margin-left: 20px;
	margin-right: 35px;
}

#main ul li {
	list-style-image: url(images/Bullet.gif); 
	margin-bottom: 5px;
}


/********** Footer **********/	
#footer {
	color: #C6DDEE;
	background: #caced1 url(images/Footer.jpg) no-repeat center top;
	clear: both;
	width: 870px;
	height: 57px;
	text-align: center;	
	font-size: 90%;	
}
#footer p { 
	padding: 13px 0;
	margin: 0;
	line-height: 120%;	
}
#footer a { 
	color: #fff;
	text-decoration: none; 
}


/* statcounter formating, currently just centering - nothing else seems to work */
#statcounter-format {
	text-align: center;
/*	font-family: 'Trebuchet MS', Tahoma, Sans-serif;*/	
/*	color: #666666;*/
/*	font-size: 200%;*/
}


/* This is the pop-up tool tip when hovering over text */
#text {margin:50px auto; width:500px}
.hotspot {cursor:pointer}
#tt {position:absolute; display:block; background:url(images/tt_left.gif) top left no-repeat}
#tttop {display:block; height:5px; margin-left:5px; background:url(images/tt_top.gif) top right no-repeat; overflow:hidden}
#ttcont {display:block; padding:2px 12px 3px 7px; margin-left:5px; background:#666; color:#FFF}
#ttbot {display:block; height:5px; margin-left:5px; background:url(images/tt_bottom.gif) top right no-repeat; overflow:hidden}



/********** Classes **********/	
.post-footer {
	background: #F4F8FD;
	padding: 5px; margin: 20px 25px 0 25px;
	border: 1px solid #E5F0FB; 
	font-size: 95%;	
}
.post-footer .date {	padding-left: 0px; margin: 0 5px; }
.post-footer .comments { padding-left: 0px; margin: 0 5px; }
.post-footer .readmore { padding-left: 0px; margin: 0 5px; }

.post-by { font-size: .95em;	margin-top: 0;	}

/* alignment classes */
.float-left  { float: left; }
.float-right { float: right; }
.align-left  { text-align: left; }
.align-right { text-align: right; }
.align-center { text-align: center;}
.center-italic {
	text-align: center;
	font-style: italic;
}
.center-image {
	text-align: center;
}

/* clearing */
.fix {
	clear: both;
	height: 1px;
	margin: -1px 0 0;
	overflow: hidden;
}
.clear { display:inline-block; }
.clear:after {
	display:block;
	visibility:hidden;
	clear:both;
	height:0;
	content: " ";
}
