@charset "iso-8859-1";

/*******************************************************************************
*  skidoo_too.css : 2005.08.29
* -----------------------------------------------------------------------------
*  A remake of the skidoo layout with the middle column appearing first in
*  source ordering.
*******************************************************************************/

/* begin with generic selectors so that they can be overridden if needed
 * by classes deeper in the stylesheet
 */
.clear
{
	clear: both;
	padding-bottom: 1px;	/* for Gecko-based browsers */
	margin-bottom: -1px;	/* for Gecko-based browsers */
}
.hide
{
	display: none !important;
}

/* margin values and font sizes for headings, and margins on paragraphs
 * and lists are not consistent across browser platforms. to achieve a
 * consistent look we need to explicity set these values here. it may
 * seem an odd way to declare the margins like this but you never
 * know what kind of horizontal padding a browser may be using on an
 * element, and I only want to change the vertical padding.
 *
 * pixels are used here, rather than ems, because I want a consistent
 * margin on the different headings. if I use ems, 1em for an h1 element
 * is much larger than 1em on an h6 element. I don't wnat this.
 *
 * salt to taste
 */
ul, ol, dl, p, h1, h2, h3, h4, h5, h6
{
	margin-top: 14px;
	margin-bottom: 14px;
	padding-top: 0;
	padding-bottom: 0;
}
h1
{
	font-size: 220%;
}
h2
{
	font-size: 190%;
}
h3
{
	font-size: 160%;
}
h4
{
	font-size: 130%;
}
h5
{
	font-size: 100%;
}
h6
{
	font-size: 70%;
}

/* alter some HTML elements' default style
 */
a, a:link, a:visited, a:active
{
	text-decoration: underline;
}
a:hover
{
	text-decoration: none;
}

code
{
	font-family:Verdana, Arial, Sans-Serif; 
}
label
{
	cursor: pointer;
}
table
{
	font-size: 100%;
}
td, th
{
	vertical-align: top;
}

/* now we craft the core layout of the page. this includes positioning and
 * gutter space. colors and fonts should not come into play at this point.
 * when defining a border, default its color to white which is probably
 * the safest thing to do.
 */
body
{
/*	margin: 25px 4%;	   margin instead of padding for the gutterspace around 
	 			   the layout because IE breaks the layout when 
	 			   horizontal padding is applied to the body element.
	 			   % over pixels for that horizontal gutterspace so that
	 			   it automatically goes below 20px on low-res browsers
	 			   to create more space for the content. */
	margin: 0px 0 -200px 0;				 
	font-size: 100.1%;	/* resolve some font size issues in some layouts for
				   some browsers. (in other words, i got no clue.) */
	align: left;
}
#pageWrapper
{
	border-left:0px solid #fff; border-right:0px solid #fff; border-top:0px solid #fff; border-bottom:0px solid #fff; min-width: 40em;	/* IE doens't understand this property. EMs are used
				   so that as the font size increases, the proportional
				   limitations (min-width) increase with it, rather
				   than creating a middle column that can only fit
				   3 or 4 characters in it. */
	width: auto
	
}
* html #pageWrapper
{
	/* \*/
		word-wrap: break-word;
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}

#outerColumnContainer
{
	/* reserves space for the left and right columns. you can use either
	 * padding, margins, or borders, depending on your needs. however you
	 * can use the border method to create a background color for both left
	 * and right columns
	 * bobmutch: change the #rightColumn and #leftColumn Margins is you change 
	 * the border-left or border-right and the background color is at
	 * #outerColumnContainer
	 */ 
	border-left: solid 165px #fff;
	border-right: solid 170px #fff;
}
#innerColumnContainer
{
	/* compensate for the borders because of
				   100% width declaration */
	border-left:0px solid #fff; border-right:0px solid #fff; border-top:0px solid #fff; border-bottom:0px solid #fff; margin:0px -1px; width: 100%;
	z-index: 1
}
#leftColumn, #middleColumn, #rightColumn, * html #SOWrap
{
	overflow: visible;	/* fix for IE italics bug */
	position: relative;	/* fix some rendering issues */
}
#SOWrap
{
	float: left;
	margin: 0 -1px 0 0;
	width: 100%;
	z-index: 2;
}
#middleColumn
{
	
	float: right;
	margin:0px -4px 0px -1px;
        width: 100%;
	z-index: 3;
}

#leftColumn
{
	
	float: left;
	margin: -3px 1px 0 -165px;
	width: 165px;
	z-index: 4;
	background-color:#003399;
	
	
}
#leftColumn a, #leftColumn a:link, #leftColumn a:visited, #leftColumn a:active
{
	/*Giving no decoration for links in left column*/
	text-decoration: none;
}
#leftColumn a:hover
{
	/*nothing will happen on mouse move in left column*/
	text-decoration: none;
}

#leftColumn ul {margin:0;
                 padding:0;
		 margin-left:-8px;
		 }
				 
#leftColumn li {list-style:none;}				 
				 
#leftColumn ul ul {margin-left:25px;}
				 
#rightColumn
{
	float: right;
	width: 170px;
	margin: 0 -169px 0 0px;
	text-align: right;
	z-index: 5;
}

p.fontsize-set
{
	text-align: center;
}
p.fontsize-set img
{
	border-width: 0;
}
/* removed the vertical navigation - bobmutch */
/* removed the horizontal navigation - bobmutch */

/* everything below this point is related to the page's "theme" and could be
 * placed in a separate stylesheet to allow for multiple color/font scemes on
 * the layout. you should probably leave a default theme within this stylesheet
 * just to be on the safe side.	
 */
#pageWrapper, #innerColumnContainer, #footer, .vnav ul, .vnav ul li, .hnav, .hnav ul li a
{
	border-color: #565;
}
html, body
{
	/* note that both html and body elements are in the selector.
	 * this is because we have margins applied to the body element
	 * and the HTML's background property will show through if
	 * it is ever set. _DO_NOT_ apply a font-size value to the
	 * html or body elements, set it in #pageWrapper.
	 */
	background-color: #ffffff;
	color: #000;
	font-family:Verdana, Arial, Sans-Serif; 
	font-size: 12pt;
}
#pageWrapper
{
	font-size: 80%;	/* set your default font size here. */
}

#outerColumnContainer
{
	border-left-color: #003399;	/* left column background color */
	border-right-color: #fff;	/* right column background color */
	background-color: #fff;		/* set the background color for the
					   middle column here */
}
.vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active
{
	text-decoration: none;
	background-color: #cdc;
	color: #000;
}
#rightColumn .vnav ul li a:link, #rightColumn .vnav ul li a:visited, #rightColumn .vnav ul li a:active
{
	background-color: #ded;
	
}
.vnav ul li a:hover, #rightColumn .vnav ul li a:hover
{
	text-decoration: none;
	background-color: #898;
	color: #fff;
}
.hnav ul li a:link, .hnav ul li a:visited
{
	background-color: #bcb;
	color: #000;
}
.hnav ul li a:hover
{
	background-color: #787;
	color: #fff;
}




/******************************************************************************/

/*******************************************************************************
*  fixedWidth.css : 2004-07-19 : Ruthsarian Layouts
* ------------------------------------------------------------------------------
*  Provide a fixed width to the layout
*******************************************************************************/

* html body
{
	color:#000000;
	background-color:#ffffff;
	text-align:left;	/* hack to center this under IE5 */
}
* html #pageWrapper
{
	text-align: left;	/* keep the content left-aligned */
}

#pageWrapper
{
	width: 786px;
	
	/*margin-left: auto;
	margin-right: auto;*/
}

/******************************************************************************

/* General CSS */
a img {border-width: 0;}

#format
{
padding:3px 0 0 5px;
margin:0 0 6px 0;
line-height:120%;
}
#format b
{
color: #013893;
}
#format strong
{
color: blue;
}
.center
{
text-align: center;
font-family: Times New Roman;
font-size:12pt;
}
#footer
 {
 /* For footer */
 background-image:
 url('http://www.customppcmanagement.com/images/customppc_14.gif');
 background-repeat: no-repeat;
 background-position: left;
 width: 490px;
 position: absolute;
 visibility: visible;
 text-align: center;
 font-size: 7pt;
 font-family:Verdana;
}

#text
{
width: 490px;
padding:4px 4px 1px 175px;
}

#article
 {
 /* For link of Article in left column */

 background-image:
 url('http://www.customppcmanagement.com/images/customppc_16.gif');
 background-repeat: no-repeat;
 background-position: left;
 width: 165;
 height: 50;
 text-decoration:none;
 font-size:14pt;
 color: Yellow;
 padding:10px 10px 6px 25px;
 font-weight:bold;
 text-align:left;
 font-family:Verdana, Arial, Helvetica, sans-serif;
 margin:4px 0 4px -4px;
 }
 #article a, #article a:link, #article a:visited, #article a:active
 {
 	color: yellow;
 	text-decoration: none;
 }
 #indeximg
 {
 /* Image for writing a Title */

 background-image:
 url('http://www.customppcmanagement.com/images/customppc_02.gif');
 background-repeat: no-repeat;
 background-position: left;
 width: 785;
 height: 35;
 font-size:14pt;
 color:#013893;
 padding:5px 4px 10px 175px;
 font-weight:bold;
 text-align:left;
 font-family:Times New Roman;
 margin:-5px 0px;
 }

 #indeximg1
 {
 /* Image for writing a Title */

 background-image:
 url('http://www.customppcmanagement.com/images/customppc_02.gif');
 background-repeat: no-repeat;
 background-position: left;
 width: 785;
 height: 35;
 font-size:14pt;
 color:#013893;
 padding:4px 4px 1px 175px;
 font-weight:bold;
 text-align:left;
 font-family:Times New Roman;
 margin:-14px 0px -14px 0px;
 }
