@charset "utf-8";

/********** BASIC ELEMENTS **********/
body  {
	font: 100% Arial, Helvetica, sans-serif;
	background: #000000;
	margin: 0;
	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: #ffffff;
}
a  {
	color: #ffffff;
}
a:hover  {
	color: #ff0000;
}

/********** CONTENT CONTAINER **********/
.structure #container { 
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #000000;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: justify; /* this overrides the text-align: center on the body element. */
	color: #000000;
} 
a  {
	color: #000000;
}
a:hover  {
	color: #ff0000;
}

/********** MAIN SECTION - INCLUDES AD SIDEBAR, MAIN BODY, and PURSUE GOOD STUFF SIDEBAR **********/
.structure #mainSection {
	width: 100%;
	background: #ffffff;
	margin: 0;
	padding: 0;
	font-size: 12px;
}
.structure #mainSection table {
	border: none;
	border-collapse: collapse;
	width: 100%;
	margin: 0;
	padding: 0;
}
.structure #mainSection table tr td {
	border: 1px solid #000000;
	text-align: center;
	vertical-align: top;
	margin: 0;
	padding: 0;
}

/********** TOP NAVIGATION BAR **********/

.structure #mainSection table tr #navTop {
	text-align: center;
}
.structure #navTop { 
	padding: 0;
	background-color: #ffff33;
	color: #ffffff;
	font-size: 12px;
	margin: 0;
	text-align: center;
	} 
.structure #navTop tr {	
	border: none;
	background-color: #000000;
	}
.structure #navTop tr td {
	vertical-align: middle;
	}
.structure #navTop p {
	font-size: 12px;
	color: #ffffff;
	text-align:center;
	vertical-align: middle;
	margin: 0;
	padding: 2px 4px 2px 4px;
	}
.structure #navTop a {	
	color: #ffff33;
	text-decoration: none;
	display: block;
	}
.structure #navTopItem {	
	background-color: #000000;
	}
.structure #navTopItem:hover {	
	background-color: #00cc99;
	}

/********** TOP NAVIGTION BAR WITH DROP-DOWNS **********/
#navTopDropDown {
	padding: 0;
	background-color: #000000;
	color: #ffffff;
	font-size: 12px;
	margin: 0;
	text-align: left;
	list-style: none;
	width: 100%;
	/* Bring the nav above everything else--uncomment if needed.
	position:relative;
	*/
	z-index:5;
}
#navTopDropDown li {
	float: left;
	margin-right: 20px;
	position: relative;
}
#navTopDropDown cite {
	font-style: normal;
	font-weight: normal;
	display: block;
	padding: 5px;
	color: #ffff33;
	background: #000000;
	text-decoration: none;
}
#navTopDropDown a {
	display: block;
	padding: 5px;
	color: #ffff33;
	background: #000000;
	text-decoration: none;
}
#navTopDropDown a:hover{
	color: #ffff33;
	background:#ff6633;
	text-decoration: none;
}

/*--- DROPDOWN ---*/
#navTopDropDown ul {
	background: url(/images/spacer.gif) repeat; /* Make the background outside the list items transparent */
	text-align: left;
	list-style: none;
	position: absolute;
	left: -9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
}
#navTopDropDown ul li {
	border-bottom: 1px solid #ffff33; /* Introducing a line between the li and the a give the illusion spaced items */
	/* padding-top: 1px; /* Introducing a padding between the li and the a give the illusion spaced items */
	/* float: none; */
	width: 150px;
	text-align: left;
}
#navTopDropDown ul li:first-child {
	/* border-top: none; /* Eliminate separator line for first item */
	border-top: 1px solid #ffff33; /* Introducing a line between the li and the a give the illusion spaced items */
}
#navTopDropDown ul a {
	white-space: nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}
#navTopDropDown li:hover ul { /* Display the dropdown on hover */
	left: -40px; /* Bring back on-screen when needed */
}
#navTopDropDown li:hover a { /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	background: #00cc99;
	text-decoration: none;
}
#navTopDropDown li:hover ul a { /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	background: #000000;
	text-decoration: none;
}
#navTopDropDown li:hover cite { /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	background:#00cc99;
	text-decoration: none;
}
#navTopDropDown li:hover ul cite { /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	text-decoration: none;
}
#navTopDropDown li:hover ul li a:hover { /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	background: #ff6633;
}


/********** MASTHEAD **********/
.structure #masthead { 
	/* border-bottom: 1px solid #000000; */
	background-color: #cc9966;
	color: #000000;
	font-size: 12px;
	margin: 0;
	text-align: center;
	padding: 12px 0 12px 0;
} 
.structure #masthead table {
	border: none;
	border-collapse: collapse;
	width: 100%;
	margin: 0;
	padding: 0;
	margin-top: 6px;
}
.structure #masthead table tr td {
	border: none;
	text-align: center;
	vertical-align: top;
	margin: 0;
	padding: 0;
}
.structure #masthead table tr td #mastheadPGSlogo {
	background: center url(/images/StuffLogoRound) no-repeat;
}
.structure #masthead p {
	font-size: 16px;
	font-weight: bold;
	color: #000000;
	text-align: center;
	margin: 0;
	padding: 2px 4px 2px 4px;
	}
.structure #masthead img {
	margin: 0;
	padding: 0;
	line-height: 0;
	}
.structure #masthead a:hover {	
	color: #00cc99;
	}
.structure #masthead h1 {
	margin: 0;
	padding: 0;
}

/********** AD SIDEBAR **********/
.structure #sidebarLeft {
	width: 150px;
	background: #cc9966;
	margin: 0;
	padding: 0;
	font-size: 12px;
	font-weight: bold;
}
.structure #sidebarLeft table {
	border: none;
	border-collapse: collapse;
	width: 100%;
	margin: 0;
	padding: 0;
}
.structure #sidebarLeft table tr td {
	border: none;
	border-bottom: 1px solid #000000;
	text-align: center;
	margin: 0;
	padding: 0;
}
.structure #sidebarLeft img {
	margin: 0;
	padding: 0;
	text-align: center;
	border: none;
}
.structure #sidebarLeft  p {
	margin: 0;
	padding: 6px 3px 6px 3px;
	text-align: center;
}
.structure #sidebarLeft  p a {
	text-decoration: none;
	color: #000000;
}
.structure #sidebarLeft  p a:hover {
	text-decoration: none;
	color: #00cc99;
}

/********** MAIN BODY **********/
.structure #mainBody { 
	width: 546px;
	background: #ffffff;
	margin: 0;
	padding: 0;
	font-size: 12px;
} 
.structure #mainBody div {
	text-align: center;
	margin: 0;
	padding: 0;
}
.structure #mainBody table {
	border: none;
	border-collapse: collapse;
	width: 100%;
	margin: 0;
	padding: 0;
}
.structure #mainBody tr, td {
	border: none;
	text-align: center;
	margin: 0;
	padding: 0;
}
.structure #mainBody img {
	border: none;
	text-align: center;
	margin: 0;
	padding: 0;
}
.structure #mainBody h1 {
	font-size: 54px;
	font-weight: bold;
	margin: 0;
	padding: 6px 6px 6px 6px;
	text-align: center;
	color: #000000;
}
.structure #mainBody h2 {
	font-size: 28px;
	font-weight: bold;
	margin: 0;
	padding: 6px 6px 6px 6px;
	text-align: center;
	color: #000000;
}
.structure #mainBody h3 {
	font-size: 20px;
	font-weight: bold;
	margin: 0;
	padding: 6px 6px 6px 6px;
	text-align: center;
	color: #000000;
}
.structure #mainBody p {
	margin: 0;
	padding: 6px 6px 6px 6px;
	text-align: justify;
}
.structure #mainBody p a {
	text-decoration: none;
	color: #cc9966;
}
.structure #mainBody p a:hover {
	text-decoration: none;
	color: #00cc99;
}

/********** PGS SIDEBAR **********/
.structure #sidebarRight {
	width: 200px;
	background: #ffffff;
	margin: 0 -1px 0 0;    /* Account for the 1 pixel right border */
	padding: 0;
	font-size: 12px;
}
.structure #sidebarRight img {
	margin: 0;
	padding: 0;
	text-align: center;
	border: none;
}
.structure #sidebarRight  h2 {
	font-size: 20px;
	font-weight: bold;
	margin: 0;
	padding: 6px 6px 6px 6px;
	text-align: center;
	color: #000000;
}
.structure #sidebarRight  h3 {
	font-size: 16px;
	font-weight: bold;
	margin: 0;
	padding: 6px 6px 6px 6px;
	text-align: center;
	color: #000000;
}
.structure #sidebarRight  p {
	margin: 0;
	padding: 6px 6px 6px 6px;
	text-align: justify;
}
.structure #sidebarRight  p a {
	text-decoration: none;
	color: #cc9966;
}
.structure #sidebarRight  p a:hover {
	text-decoration: none;
	color: #00cc99;
}

/********** BOTTOM NAVIGATION BAR **********/
.structure #navBot { 
	background-color: #000000;
	color: #ffffff;
	font-size: 12px;
	padding: 12px 0 12px 0;
	margin: 0;
	text-align: center;
} 
.structure #navBot table {
	border: none;
	border-collapse: collapse;
	width: 100%;
	margin: 0;
	padding: 0;
}
.structure #navBot table tr td {
	text-align: center;
	vertical-align: top;
	margin: 0;
	padding: 0;
}
.structure #navBot p {
	font-size: 12px;
	color: #ffffff;
	text-align: left;
	margin: 0;
	padding: 2px 4px 4px 4px;
	}
.structure #navBot img {
	margin: 0;
	padding: 0;
	line-height: 0;
	}
.structure #navBot #navBotSectionLevel1 {
	font-size: 12px;
	font-weight: bold;
	margin: 0;
	}
.structure #navBot #navBotSectionLevel2 {
	font-size: 11px;
	padding-left: 15px;
	}
.structure #navBot a {	
	color: #ffffff;
	text-decoration: none;
	display: block;
	}
.structure #navBot a:hover {	
	color: #00cc99;
	}
.structure #navBot h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 4px 0 8px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/********** FOOTER **********/
.structure #footer { 
	/* padding: 12px 2px 12px 2px; */
	background:#000000;
	color: #ffffff;
	font-size: 12px;
	margin: 0;
	text-align: center;
} 
.structure #footer table tr td { 
	padding: 12px 2px 12px 2px;
	border: none;
	border-top: 1px solid #ffffff;
} 
.structure #footer p {
	margin: 0;
	padding: 0;
}
.structure #footerBigText {
	font-size: 14px;
	font-weight: bold;
	margin: 0;
	padding: 0;
}
.structure #footer a {	
	color: #ffffff;
	}
.structure #footer a:hover {	
	color: #00cc99;
	}

/********** MISCELLANEOUS **********/

/* Non-Table version of photo grid...
.structure #photoGrid {
	text-align: center;
	margin: 0;
	padding: 0;
}
.structure #photoGrid img {
	border: none;
	margin: 0;
	padding: 0;
}
*/

.structure #photoGrid {
	text-align: center;
	margin: 0;
	padding: 0;
}
.structure #photoGrid img {
	border: none;
	margin: 0;
	padding: 0;
	width: 100px;
	height: 100px;
}
.structure #photoGrid td {
	border: none;
	margin: 0;
	padding: 0;
	width: 100px;
	height: 100px;
}

.structure #photoGridWithBorders {
	text-align: center;
	margin: 0;
	padding: 0;
}
.structure #photoGridWithBorders img {
	border: 2px solid #000000;
	margin: 0;
	padding: 0;
}

.floatRight { /* 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: 5px;
}
.floatLeft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 5px;
}
.floatClear { /* 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;
}
