/*
 * main.css
 *
 * Main CSS file for CMS
 *
 */


/*	--------
 *	DEFAULTS
 *	--------
 */

body, html {
	border: 0px none;
	margin: 0px;
	padding: 0px;
	font-family: arial, helvetica, sans-serif;
	font-size: small !important;
	_font-size: x-small !important;		/* MSIE */
}

body {
	background-color: #FFFFFF;
}

p, img, table, tr, th, td, h1, h2, h3, h4, h5 {
	border: 0px none;
	margin: 0px;
	padding: 0px;
}

table {
	border-collapse: collapse;
	border-spacing: 0px;
}

td, th {
	font-size: small;
	_font-size: x-small;
}

input {
	margin-left: 2px;
}


/*	------
 *	LAYOUT
 *	------
 */

#body_inside {
	text-align: center;	/* MSIE */
	min-height: 100%;
}

#page_header {
	background-color: white;
}

#page_footer {
}

#page_wrap {
	width: 800px;
	margin: 0px auto 0px auto;
	text-align: left;
	height: 100%;
}


#page_inside {
	width: 800px;
	background-color: black;
}
#page_inside2 {
	width: 798px;		/* makes black 1px line on left and right */
	margin-left: 1px;	/* makes black 1px line on left and right */
	background-color: white;
}

#main_panel_wrap {
	padding: 5px 0px 5px 0px;
	color: black;
}

#main_panel_inside {
	padding-left: 5px;
	padding-right: 5px;
	color: black;
	_height: 450px;		/* Bad MSIE */
	min-height: 450px;	/* good browsers */
}

#main_panel_header {
	background-color: #dddddd;
}

#main_panel_footer {
	background-color: black;
	text-align: center;
}


/*	------------------
 *	LOCAL DECLARATIONS
 *	------------------
 */


#main_menu a {
	color: #8B2323;
	text-decoration: none;
	font-weight: bold;
}

#left_panel_inside img, #right_panel_inside img {
	margin-top: 3px;
	margin-bottom: 3px;
}

#shopping_cart {
	width: 45em;
	margin: auto;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 5px;
	border: 1px solid #333333;
	background-color: #EEEEEE;
	text-align: center;
}

#shopping_cart .sc_header1 {
	color: #994444;
	font-weight: bold;
}

#shopping_cart td {
	padding: 5px;
	padding-left: 10px;
}


#shopping_cart .bor_left {
	border-left: 2px solid #F6F6F6;
}
#shopping_cart .bor_bottom {
	border-bottom: 2px solid #F6F6F6;
}
#shopping_cart .bor_top {
	border-top: 2px solid #F6F6F6;
}

#shopping_cart .price {
	text-align: right;
}

#shopping_cart table {
	border: 2px solid #F6F6F6;
	text-align: left;
}

#account_register {
	width: 40em;
	margin: auto;
	margin-top: 10px;
	margin-bottom: 10pxa
	padding: 10px;
	border: 1px outset #333333;
	background-color: #EEEEEE;	
}

#account_profile {
	width: 35em;
	margin: auto;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 10px;
	border: 1px inset #333333;
	background-color: #EEEEEE;	
}

#account_order {
	width: 45em;
	margin: auto;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 5px;
	border: 1px solid #333333;
	background-color: #EEEEEE;
	text-align: left;
}

#account_order table {
	border: 2px solid #F6F6F6;
	text-align: left;
}

#account_order td {
	padding: 5px;
	padding-left: 10px;
}

#account_order .bor_bottom {
	border-bottom: 2px solid #F6F6F6;
}

#account_order .bor_left {
	border-left: 2px solid #F6F6F6;
}

/* DIRECTORY FROM LVN.NET */
.info {
        font-family: Arial;
        font-size:12px;
        background: url("/images/business-directory-background.jpg");
        border-style: solid;
	border-color: #000000;
        border-width: 1px 1px 1px 1px;
}


.link_print {
	text-decoration: underline;
}
.link_print:hover {
	color: blue;
	cursor: pointer;
}



/*	--------------
 *	PRINT SETTINGS
 *	--------------
 */

h1,h2,h3,h4,h5,h6 {
	page-break-after: avoid;
}

@page {
	margin: 1in;
}

@media print {
	* {
		background-color: white !important;
		background-image: none !important;
		color: black !important;
	}
	div, p, table, tr, th, td, h1, h2, h3, h4, h5 {
		font-family: times;
		padding: 2px;
		margin: 2px;
	}
	div#page_header {
		display: none;
	}
	div#main_menu {
		display: none;
	}
	div#left_panel_wrap {
		display: none;
	}
	div#right_panel_wrap {
		display: none;
	}
	div#page_footer {
		display: none;
	}
	div#pager {
		display: none;
	}
	div#main_panel_wrap {
		position: static;
		margin: 2px;
		padding: 2px;
	}
	[href]:after {
		content: " [" attr(href) "] ";
	}
}

