@charset "utf-8";

/*This section always displays a vertical scroll bar on every page in Firefox to stop page jumping */
html { overflow: -moz-scrollbars-vertical; }
html { overflow-x: auto; }

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	/*font-family: 'Trebuchet MS', Arial, Verdana, Sans-Serif;
	font-size: 76%;*/
	background: #FFF;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
.jasonbyrne #container { 
	width: 965px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

/**************************************************************/
/*                          HEADER                            */
/**************************************************************/
.jasonbyrne #header { 
	background: #484848; 
	padding: 0px;
} 

/**************************************************************/
/*                         SIDEBAR                            */
/**************************************************************/
.jasonbyrne #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 260px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px;
	margin: 0px;
}

/**************************************************************/
/*                      MAIN CONTENT                          */
/**************************************************************/
.jasonbyrne #mainContent { 
	float: left;
	margin: 0 600 0 0px;
	padding: 10px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	/*margin: 0 0 0 260px;*/
	width: 683px;
} 

/**************************************************************/
/*                      MAIN SECTION                          */
/**************************************************************/
.jasonbyrne #mainSection { 
	float: left;
	padding: 10px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 0px;
	border-left: 1px solid #CCC;
} 
.jasonbyrne #mainSection p { 
	font-family: 'Trebuchet MS', Arial, Verdana, Sans-Serif;
	font-size: 85%;
}
.jasonbyrne #mainSection hr { 
	width: 20%;
	height: .1em;
	color:#ddd;
	text-align:center;
	border: none;
	/*background-color:#ddd;*/
}
.jasonbyrne #mainSection a
{
  text-decoration: none;
  color: #0dabf7;
}
 
.jasonbyrne #mainSection a:hover
{
  text-decoration: underline;
  color: #0dabf7;
}
.jasonbyrne #mainSection img
{
	border: none;
}
.jasonbyrne #mainSection ul
{
  list-style: none;
  margin-bottom: 10px;
  font-family: 'Trebuchet MS', Arial, Verdana, Sans-Serif;
	font-size: 85%;
}
.jasonbyrne #mainSection ol
{

  margin-bottom: 10px;
  font-family: 'Trebuchet MS', Arial, Verdana, Sans-Serif;
	font-size: 85%;
}
.jasonbyrne #mainSection li
{
  margin-bottom: 10px;
}

/**************************************************************/
/*                          FOOTER                            */
/**************************************************************/
.jasonbyrne #footer
{
  margin: 2em auto;
  clear: both;
  text-align: center;
  width: 965px;
  height: 3em;
  color: #cccccc;
  padding-top: 0px;
  padding-bottom: 20px;
  background-color: #484848;
}
.jasonbyrne #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: 'Trebuchet MS', Arial, Verdana, Sans-Serif;
	font-size: 76%;
}
.jasonbyrne #footer a
{
  text-decoration: none;
  color: #cccccc;
}
 
.jasonbyrne #footer a:hover
{
  text-decoration: underline;
  color: #ffffff;
}

/**************************************************************/
/*                    EVERYTHING ELSE                         */
/**************************************************************/
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
