/***********************************************/
/* newmain.css                             */
/* Main CSS file for LiveC portal  */

/***********************************************/
/*  A remake of the skidoo layout with the middle column appearing first in source ordering.
*******************************************************************************/

/*First lets import all the other style sheets here. Lets be nice to the server :-) */

@import url("mainmenu.css");
@import url("sidemenu.css");
@import url("pz.css");
@import url("privacy.css");
@import url("tablesnforms.css");
@import url("../editor/css/widgEditor.css");

/*@charset "iso-8859-1";*/

/* 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;
}
.inside
{
	padding-right: 0.5em;
	padding-left: 0.5em;
}

img {
	border: 0px !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: 10px;
	margin-bottom: 10px;
	padding-top: 0;
	padding-bottom: 0;
}
h1
{
	font-size: 120%;
}
h2
{
	font-size: 110%;
}
h3
{
	font-size: 160%;
}
h4
{
	font-size: 130%;
}
h5
{
	font-size: 100%;
}
h6
{
	font-size: 70%;
}

hr {
	color: #fff;
	width:95%;
	border: 1px solid #D9F8FF;
}



/* alter some HTML elements' default style
 */
a, a:link, a:visited, a:active
{
	color: #336699;
	text-decoration: none;
	font-weight: normal;
}
a:hover
{
	color: #336699;
	text-decoration: underline;
	font-weight: normal;
}

code
{
	font-family: "Courier New", Courier, monospace;
}
label
{
	padding-right: 10px;
}
table
{
	font-size: 100%;
}
/*td, th
{
	vertical-align: middle;
}
*/
/* 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: 0px 1%;	/* 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. */
	font-size: 100.1%;	/* resolve some font size issues in some layouts for
				   some browsers. (in other words, i got no clue.) */

}
#pageWrapper
{
/*	border: solid 1px #fff;
	border-width: 0 1px;
*/	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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 80%;
	color: #336699;


}
* html #pageWrapper
{
	/* \*/
		/*word-wrap: break-word;*/
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}	
	/***********************************************/
/* Top block styles                         */
/***********************************************/
#topblock {
/*	height: 50px;
*/	margin-top: 0px;
	margin-right :10px;
}


#topblock img.stackRight {
	float:right;
	padding:0;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 5px;
}

#topblock img.stackleft { 
float:left; 
padding:0; 
margin:0 0 0 0px;
 }


#masthead
{
	background-image: url(http://liveconnections.in/images/header_bg.gif);
	background-repeat: no-repeat;
	background-position: right center;
	background-color: #fff;
	padding: 0px;
}

#masthead h1
{
	padding: 0;
	margin: 0;
}

#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
	 */
	margin-top:3px;
	border-left: solid 14em #fff;
	border-right: solid 13em #fff;
	
}
#innerColumnContainer
{
	margin: 0 -1px;		/* compensate for the borders because of
				   100% width declaration */
	width: 100%;
	z-index: 1;
	border-top-width: 0;
	border-right-width: 1px;
	border-bottom-width: 0;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	/*border-right-color: #6FBEF5;*/
	border-right-color: #fff;
	border-left-color: #fff;
}
#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: 3;
}
#middleColumn
{
	float: right;
	margin: 0 0 0 -1px;
	width: 100%;
	z-index: 5;
	font-size: 80%;
	line-height:18px;
/*	text-align: justify;
*/
}

#middleColumn ul {
	list-style-image: none;
	list-style-type: square;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 25px;
}

#leftColumn
{
	float: left;
	margin: 0 1px 0 -14em;
	width: 14em;
	z-index: 4;
}
#rightColumn
{
	float: right;
	width: 13em;
	margin: 0 -13em 0 1px;
	z-index: 2;
}

/***********************************************/
/* Footer block styles                         */
/***********************************************/
#placebanner {
	background-color: #2c8bcf;
	text-align: center;
	vertical-align: middle;
	width: 100%;
	margin-top: 10px;
}

#footer 
{
/*	margin-top: 15px;
*/	margin-bottom: 0px;
	height: 100px;
	padding-top: 0.5em;
	padding-right: 20px;
	padding-bottom: 0.5em;
	padding-left: 10px;
	/*border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #2c8bcf;*/
}


#footer a, a:link {

	color: #2c8bcf;
	text-decoration: none;
	font-weight: normal;
}


#footer a:hover{
	color: #2574AD;
	text-decoration: underline;
	font-weight: normal;
}

#footer img.stackleft{
	float: left;
	padding-right: 5px;
}

p.fontsize-set
{
	text-align: center;
}
p.fontsize-set img
{
	border-width: 0;
}




/* 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, #masthead, #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: #fff;	color: #000;
	font-family: arial, helvetica, sans-serif;
}
#pageWrapper
{
	font-size: 89%;	/* set your default font size here. */
	line-height: 16px;
	/*border: 1px ridge #0092F2;*/
	margin-top: 5px;
}

#masthead
{
	background-color: #fff;
	color: #fff;
	height: 110px;
		
}

#outerColumnContainer
{
	border-left-color: #fff;	/* left column background color */
	border-right-color: #fff;	/* right column background color */
	background-color: #fff;		/* set the background color for the
					   middle column here */
}

#rightColumn .inside
{
	/* if you apply a font size to just #rightColumn, then its width,
	 * which is specified in EMs, will also be affected. you don't want
	 * that. so apply font size changes to the .inside element which exists
	 * inside underneath all three columns
	 */
	font-size: 80%;
}
#rightColumn .inside .vnav
{
	font-size: 110%;
}
#footer 
{
	background-color: #FFFFFF;
	color: #2c8bcf;
	text-align: right;
	font-size: 80%;
	font-weight:normal;
	background-image: url(http://liveconnections.in/images/footer_bg.gif);
	background-repeat: no-repeat;
	background-position: right bottom;
	line-height: 24px;
	bottom:-10px;
}

/******************************************************************************/

/***********************************************/
/* Left Nav Bar styles                         */
/***********************************************/

.navBar{
	padding: 0px;
	background-color: #fff;
	/*border: 2px solid #63AAEF;*/
	margin-right: 0px;
}



/*********** #navBar link styles ***********/

#navBar ul a:link, #navBar ul a:visited {display: block;}
#navBar ul {list-style: none; margin: 0; padding: 0;}

/* hack to fix IE/Win's broken rendering of block-level anchors in lists */
#navBar li {border: 1px solid #67B4F1;}

/* fix for browsers that don't need the hack */
html>body #navBar li {border: 1px solid #67B4F1;}


div#topmenu {
	width: 100%;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left: 0px;
}

/***********************************************/
/* Left Info Box styles  - the Matter that appears below the Side Menus */
/***********************************************/
#InfoBar{
	background: #FFF;
	border: 1px solid #67B4F1;
	margin-top: 10px;
}

#InfoBar img{
	display: block;
	vertical-align: middle;
	text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;

}

#InfoBar p{
	font-size: 75%;
	padding-top: 1px;
	padding-right: 5px;
	padding-bottom: 1px;
	padding-left: 5px;
}

/***********************************************/
/* Left Helpful Links Box styles  - the Matter that appears below the Info Box */
/***********************************************/
#helpfullinks {
	background: #FFF;
	border: 1px solid #67B4F1;
	margin-top: 10px;
}

#helpfullinks img{
	display: block;
	vertical-align: middle;
	text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;

}

#helpfullinks p {
	font-size: 75%;
	padding-top: 1px;
	padding-right: 5px;
	padding-bottom: 1px;
	padding-left: 5px;
}

/***********************************************/
/* Centre Content Specifc Styles                                */
/***********************************************/

#content{
	text-align: justify;
	padding-top: 3px;
	padding-bottom: 2px;
	padding-left: 8px;
	padding-right: 8px;
	line-height: 17px;
}

#content a, a:link {

	text-decoration: underline;
	font-weight: normal;
}


#content a:hover{
	color: #4684C1;
	text-decoration: underline;
	font-weight: normal;
}


#content img.stackRight {
	float:right;
	padding:0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 5px;
	margin-right: 0px;

}

#content img.stackleft {
	float:none;
	padding:0;
	margin-top: 0;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: 0px;

}

#content li {
	padding-top: 2px;
	padding-bottom: 5px;
}

.contentheading {
	color: #000066;
	display: block;
	font-weight: bold;
	background-color: #FFFFFF;
	padding-top: 3px;
	padding-right: 0;
	padding-bottom: 3px;
	padding-left: 10px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 13px;
	line-height: 25px;
	letter-spacing: 2px;
	background-image: url(http://liveconnections.in/images/content_header.gif);
	background-repeat: no-repeat;
	background-position: left center;
	height: 20px;
}
	
.headings {
	background-image: url(images/headerbg.gif);
	height: 40px;
	padding-left: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 105%;
	font-weight: bold;
	background-position: center center;
	background-repeat: repeat-x;
	background-color: #FFFFFF;
	letter-spacing: 1px;
	padding-top: 5px;
	padding-bottom: 5px;
}

.textareatext {
	/*white-space: pre;*/
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-indent: 0px;
}
/***********************************************/
/* Search styles                         */
/***********************************************/
#search{
	background-color: #fff;
	border: 1px solid #C1E0FA;
	margin-right: 0px;
	margin-top: 0px;
	margin-bottom: 5px;
	padding:0px;
	font-size: 11px;
	color: #336699;
	text-align: center;
}

/************** #misc styles **************/

.contacts {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 120%;
	color: #336699;
	padding-top: 5px;
	padding-bottom: 5px;
}

.contacts_smaller {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 110%;
	color: #336699;
	/*padding-top: 5px;
	padding-bottom: 5px;*/
	line-height:18px;
	text-align: justify;
}
#dropin {
	position:absolute;
	visibility:hidden;
	left:300px;
	top:100px;
	width:350px;
	height:auto;
	background-color:#663300;
	padding: 10px;
	border: medium groove #ECE9D8;
}

.welcome
{
	font-family: Georgia, "Times New Roman", Times, serif;
/*	font-weight: bold;
*/	color: #000066;
	padding-top: 15px;
	padding-right: 5px;
	float: right;
	font-size: 11px;
}


.errors {
	font-size: 100%;
	color: #FF0000;
	margin-right: 0px;
}

.errors_small {
	font-size: 90%;
	color: #FF0000;
}

.errorsbig {
	font-size: 120%;
	color: #FF0000;
	margin-right: 10px;
	font-weight: bold;
}

.greenletters {
	font-size: 100%;
	color: #339933;
	margin-right: 25px;
	font-weight: bold;
}


#quotebox{
	background: #FFF;
	margin-top: 10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #67B4F1;	
}


#quotebox p{
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 11px;
	/*font-weight: bold;*/
	color: #006699;
	padding-top: 0px;
	padding-right: 8px;
	padding-bottom: 0px;
	padding-left: 8px;
	line-height: 19px;
	/*font-style: italic;
	letter-spacing: 1px;*/
}

.quoteboxheading {
	color: #000066;
	display: block;
	font-weight: bold;
	background-color: #FFFFFF;
	padding-top: 3px;
	padding-right: 0;
	padding-bottom: 3px;
	padding-left: 3px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 11px;
	line-height: 25px;
	letter-spacing: 1px;
	background-image: url(http://liveconnections.in/images/button.gif);
	background-repeat: repeat;
	background-position: left center;
	height: 20px;
	}

.bizlist {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	list-style-position: outside;
	list-style-type: square;
}

.cvtext
{
	border: 1px double #336699;
	padding:5px;
}

.popuptext {
	font-size: 12px;
	color: #003366;
}

/***********************************************/
/* Side-bar Inside Items/Content Styles        */
/***********************************************/

.SideItem {
text-align: center;
	
}

.SideItem a, a:link, a:visited, a:active
{
	color: #336699;
	text-decoration: none;
	font-weight: normal;
}
.SideItem a:hover
{
	color: #336699;
	text-decoration: underline;
	font-weight: normal;
}

.SideItem ul {
	list-style-image: none;
	list-style-type: square;
	padding-left: 20px;
	text-align: left;
	
}

.SideItem h1 { /* sidebar Item headings*/
	background-color: #FFFFFF;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	letter-spacing: 1px;
	font-weight: bold;
	padding-top: 5px;
	padding-bottom: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #663300;
	text-align: center;
	width: 100%;
	background-image: url(http://liveconnections.in/images/button.gif);
	color: #000066;
	margin-top: 0px;
}

.SideItem h2{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 80%;
	color: #663300;
	font-weight: bold;
	padding-left: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
}



title {
	background-color: #FFFFCC;
	padding: 3px;
	border: 1px groove #000033;
}

pre {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	color: #3399CC;
	white-space: pre;
	overflow: hidden;
}

div#spamHide { display:none; }