@charset "utf-8";
/* CSS Document */

/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. 
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%;
}*/

/* Allow for easy use of em sizing */
html { font-size: 62.5%; font-family: Verdana, Helvetica, Arial, Sans;}

/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  color: #000000;
  font-size: 1.1em; /* 11px by default */
  line-height: 14px;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
  background-color: #FFFFFF;
  background-image: url(../images/bgPage.jpg);
  background-repeat: repeat-x;
}

/* *********************************************************************************************
HEADER TAGS H1, H2, H3, H4, H5, H6
********************************************************************************************* */

h1 {
	font-size: 2em; /* 30px by default */
	font-family: Georgia, Times New Roman, Times, serif;
	font-weight: bold;
	color: #226e9f;
	line-height: 2em;
}

h2 {
	font-size: 1.4em; /* 24px by default */
	font-family: Georgia, Times New Roman, Times, serif;
	font-weight: bold;
	color: #226e9f;
	line-height: 1.4em;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}

h3 {
	font-size: 1.4em; /* 18px by default */
	font-family: Georgia, Times New Roman, Times, serif;
	font-weight: bold;
	color: #226e9f;
	line-height: 1.2em;
	margin: 10px 0px 4px 0px;
}

h4 {
	font-size: 1.1em; /* 16px by default */
	font-family: Georgia, Times New Roman, Times, serif;
	font-weight: bold;
	color: #666666;
	line-height: 1.1em;
	margin: 10px 0px 4px 0px;
}

h5 {
	font-size: 1.4em; /* 14px by default */
	font-family: Georgia, Times New Roman, Times, serif;
	font-weight: bold;
	color: #000000;
	line-height: 1.4em;
}

h6 {
	font-size: 1.2em; /* 12px by default */
	font-family: Georgia, Times New Roman, Times, serif;
	font-weight: bold;
	color: #000000;
	line-height: 1.2em;
}

/* *********************************************************************************************
COMMON HTML ELEMENTS
********************************************************************************************* */

p {
	padding: 5px 0px 5px 0px;
}

ul {
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}

li {
	padding: 5px 0px 5px 0px;
	margin: 0px 0px 0px 40px;
}

blockquote {
	margin: 0px 30px 0px 30px;
}

small {
	font-size: 0.9em; /* 11px by default */
    line-height: 0.9px;
	color: #999999;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/* *********************************************************************************************
LINKS
********************************************************************************************* */

/* Sets the style for unvisited links. */
a,  a:link {
  color: #336699;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #336699;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #663333;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #663333;
  text-decoration: none;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #336699;
  text-decoration: none;
}



/* *********************************************************************************************
PAGE LAYOUT DIVs
********************************************************************************************* */


#pageWrapper {
  margin: 0 auto;
  padding: 0px 0px 0px 0px;
  width: 960px;
  height: 700px;
  /*border-left: 1px solid #333333;*/
  text-align: left;
}

#pageWrapper #navigation {
  height: 50px;
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  /*background-color: #00FF00;*/
}

	#pageWrapper #navigation ul {
		margin: 0px 0px 0px 0px;
		padding: 20px 0px 0px 0px;
	}
	
	#pageWrapper #navigation ul li {
		display: inline;
		list-style-type: none;
		margin: 0px 30px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  		padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
		color: #666666;
	}
	
	#pageWrapper #navigation ul li a {
		font-family: Georgia, "Times New Roman", Times, serif;
		font-size: 1.4em; /* 11px by default */
  		line-height: 14px;
		color: #666666;
		text-decoration: none;
	}
	
	#pageWrapper #navigation ul li a:link {
	    color: #666666;
	 }
	
	#pageWrapper #navigation ul li a:visited {
	    color: #666666;
	}
	
	#pageWrapper #navigation ul li a:hover {
	    color: #333333;
	}
	
	#pageWrapper #navigation ul li a:focus {
	    color: #333333;
	}
	
	#pageWrapper #navigation ul li a:active {
	    color: #666666;
	}
	
	* html #pageWrapper #navigation a {width:1%;} /* see http://www.positioniseverything.net/explorer/escape-floats.html */

#pageWrapper #logo {
  height: 150px;
}

#pageWrapper #homeHeader {
  background-image: url(../images/bgWrapper.jpg);
  background-repeat: no-repeat;
  height: 434px;
}

#pageWrapper #blogHeader {
  background-image: url(../images/bgWrapper2.jpg);
  background-repeat: no-repeat;
  height: 434px;
}

#pageWrapper #pageHeader {
  background-image: url(../images/bgWrapper3.jpg);
  background-repeat: no-repeat;
  height: 434px;
}

#pageWrapper #homeHeader #carousel {
  padding-top: 109px;
}

#spacer {
  /*background-color: #00FF33;*/
  height: 234px;
}

#pageWrapper #contentWrapper {
  padding: 0px 0px 0px 0px;
  margin: 50px 0px 0px 0px;
  z-index: 8000;
  position: relative;
  
  /*border: 1px solid #666666;*/
  /*height: 400px;*/
}

#pageWrapper #contentWrapper #contentLeft {
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
  width: 580px;
  float: left;
  display: inline;
  
  /*border: 1px solid #666666;*/
  /*background-color: #00FF00;*/
  /*height: 400px;*/
}

#pageWrapper #contentWrapper #contentRight {
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 630px;
  width: 320px;
  
  /*border: 1px solid #666666;*/
  /*background-color: #FFFF99;*/
  /*height: 400px;*/
}
		
		
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#pageWrapper #contentWrapper .clearFloat {
  clear: both;
  display: block;
}

#pageWrapper #footer {
  padding: 20px 0px 20px 0px;
  margin: 40px 0px 40px 0px;
  border-top: 1px dashed #226e9f;
}
		
#pageWrapper #footer ul {
  margin: 0px 30px 30px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}		
		
#pageWrapper #footer ul li {
	display: inline;
	list-style-type: none;
	margin: 0px 30px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}			


/* *********************************************************************************************
OTHER CLASSES
********************************************************************************************* */

.redheadThoughts {
	margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  	padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

.redheadThoughts li {
	list-style-type: none;
	margin: 0px 0px 20px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  	padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}



/* *********************************************************************************************
JCAROUSEL CLASSES AND SKIN
********************************************************************************************* */

/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
    position: relative;
}

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.jcarousel-list {
    z-index: 1;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

.jcarousel-list li,
.jcarousel-item {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 178px;
    height: 245px;
}

/**
 * The buttons are added dynamically by jCarousel before
 * the <ul> list (inside the <div> described above) and
 * have the classnames "jcarousel-next" and "jcarousel-prev".
 */
.jcarousel-next {
    z-index: 3;
    display: none;
}


/*SKIN*/


.jcarousel-skin-tango .jcarousel-container {
    /*-moz-border-radius: 10px;*/
    /*background: #F0F6F9;*/
    /*border: 1px solid #346F97;*/
}

.jcarousel-skin-tango .jcarousel-container-horizontal {
    width: 960px;
    padding: 0px 0px;
	margin: 0px 0px 0px 0px;
}

.jcarousel-skin-tango .jcarousel-clip-horizontal {
    width:  910px;
    height: 245px;
	margin: 0px 0px 0px 26px;
	/*background-color:#00FF00;*/
}

.jcarousel-skin-tango .jcarousel-item {
    width: 178px;
    height: 245px;
	padding: 0px 0px;
	margin: 0px 0px;
}

.jcarousel-skin-tango .jcarousel-item-horizontal {
    margin: 0px 2px 0px 2px;
}

.jcarousel-skin-tango .jcarousel-item-placeholder {
    background: #fff;
    color: #000;
}

/**
 *  Horizontal Buttons
 */
.jcarousel-skin-tango .jcarousel-next-horizontal {
    position: absolute;
    top: 90px;
    right: 0px;
    width: 24px;
    height: 32px;
    cursor: pointer;
    background: transparent url(../images/next-horizontal.png) no-repeat 0 0;
	/*background-color: #CC33CC;*/
}

.jcarousel-skin-tango .jcarousel-next-horizontal:hover {
    background-position: -32px 0;
}

.jcarousel-skin-tango .jcarousel-next-horizontal:active {
    background-position: -64px 0;
}

.jcarousel-skin-tango .jcarousel-next-disabled-horizontal,
.jcarousel-skin-tango .jcarousel-next-disabled-horizontal:hover,
.jcarousel-skin-tango .jcarousel-next-disabled-horizontal:active {
    cursor: default;
    background-position: -96px 0;
}

.jcarousel-skin-tango .jcarousel-prev-horizontal {
    position: absolute;
    top: 90px;
    left: 2px;
    width: 24px;
    height: 32px;
    cursor: pointer;
    background: transparent url(../images/prev-horizontal.png) no-repeat 0 0;
	/*background-color: #CC33CC;*/
}

.jcarousel-skin-tango .jcarousel-prev-horizontal:hover {
    background-position: -32px 0;
}

.jcarousel-skin-tango .jcarousel-prev-horizontal:active {
    background-position: -64px 0;
}

.jcarousel-skin-tango .jcarousel-prev-disabled-horizontal,
.jcarousel-skin-tango .jcarousel-prev-disabled-horizontal:hover,
.jcarousel-skin-tango .jcarousel-prev-disabled-horizontal:active {
    cursor: default;
    background-position: -96px 0;
}


#flashcontent {
	width: 100%;
	height: 640px;
	border: thin #999999 solid;		
	background-color: #000000;
}