/*
	Paragon Standard Style Sheet for Corporate BLOG Generation 1
	
	written by: Mike Wilkinson
	
*/




/***********************************************************************************
	BLOG BANNER Top Line
***********************************************************************************/
table.blogtop {
	font: normal 12px Arial, Helvetica, sans-serif;
	padding: 0 0 0 100px;
	margin: 0px;
	width: 100%;
	background-color: #eee;
	color: #000;
}

table.blogtop td {
	padding: 2px 2px 2px 2px;
	vertical-align: top;
	margin: 0px;
	border-collapse: collapse;
}


table.clients tr { color:#666; }

.blogbanner {
}

.banner-tagline {
	position: inherit;
	top: -120px;
	left: 100px;
	z-index: 15;
	text-align: right;   /* I wish I knew how to make it right aligned */
	font: bold 40px Arial, sans-serif;
	color: #f00;
}

.bloglogo1 {
	position: inherit;
	top: 0px;
	left: 105px;
	z-index: 15;
}

.banner-title {
	position: inherit;
	top: -130px;
	left: -45px;
	z-index: 15;
	text-align: center;   /* I wish I knew how to make it right aligned */
	font: bold 34px Arial, sans-serif;
	color: #0a0;
}

.banner-subtitle {
	position: inherit;
	top: -125px;
	left: -40px;
	z-index: 15;
	text-align: center;   /* I wish I knew how to make it right aligned */
	font: italic bold 11px Arial, sans-serif;
	color: #888;
	height: 1px;
}

/***********************************************************************************
	Internal styles redefined
***********************************************************************************/

/* SHOULD WE HAVE IT ???????????????? */
#headline_area {
	font: bold 14px Arial, Arial, Helvetica, sans-serif;
}

/***********************************************************************************
	HOVER, ACTIVE, VISTED LINK related styles
***********************************************************************************/

#piblog a {
	color: #000;				/* was color: #06c; */  /* was 999 */
	text-decoration: none;
}

#piblog A:hover, #piblog A:focus {
	/* Focus is for keyboard tabbing guides instead of mouse */
	/* background-color: #FFF;  Mike removed 8/12 */
	color: #06C;
	/* was text-decoration: underline; */
	cursor: pointer;
}

#piblogxxxx a img {
	border-width: 1px;
	border-style: solid;
	border-color: #FFF;
}

#piblogxxxx a img:hover, #piblogxxxx a img:focus {
	border-width: 1px;
	border-style: solid;
	border-color: #06C;
	cursor: pointer;
}

#footer {
	font: 12px normal Tahoma, Arial, Verdana, Helvetica, sans-serif;
	color: #999;
	background-color: #FFF;
	margin-left: 5px;
	margin-right: 0px;
	padding: 4px 0 0 2px;
	width: 740px;
	clear: both;
}

#footer a { color: #999; /* override links color to gray on footer only */ }

#footer hr {
	color: #080;
	background-color: #080;
	margin: 10px 0 8px 0;
	height: 1px;
}

/***********************************************************************************
	Footer items
***********************************************************************************/
.countertext {
	font-size: 8px;
	color: #cccccc;
	margin-top: 0px;
	margin-bottom: 0px
}

.webcount {
	font-size: 10px;
	color:#fff;
}

/* #sidenav, #mainpage, #sidebar {padding-bottom:32767px; margin-bottom:-32767px;} */

/***********************************************************************************

	ADD TO EXISTING STYLES 
	
***********************************************************************************/
#sidebars h3 {
	color: #080;
	font-weight: bold;
}
	
	

/***********************************************************************************
	Image Size constraints options
	--- This works with real browsers and IE both.
***********************************************************************************/
.size200r {
	max-width: 200px;
	max-height: 150px;
 width: expression(this.width > 200 ? "200px" : true);
 height: expression(this.height > 150 ? "150px" : true);
}

.size150r {
	max-width: 150px;
	max-height: 110px;
 width: expression(this.width > 150 ? "150px" : true);
 height: expression(this.height > 110 ? "110px" : true);
}

.size100r {
	max-width: 100px;
	max-height: 80px;
 width: expression(this.width > 100 ? "100px" : true);
 height: expression(this.height > 80 ? "80px" : true);
}

.size75r {
	max-width: 75px;
	max-height: 55px;
 width: expression(this.width > 75 ? "75px" : true);
 height: expression(this.height > 55 ? "55px" : true);
}

.size50r {
	max-width: 50px;
	max-height: 38px;
 width: expression(this.width > 50 ? "50px" : true);
 height: expression(this.height > 38 ? "38px" : true);
}

/*  Need to try these out sometime

pre { text-align: left; overflow: visible }
code { background-color: #ffc }
pre code { background-color: #eee }

*/

/***********************************************************************************
	Displayable styles
***********************************************************************************/
.invisible { visibility: hidden; }

.nodisplay { display: none; }

