/* style2.css - New L.A.con IV style sheet, under development */

body {
	font-family: Arial, Helvetica, Swiss, Univers, "Gill Sans", "Tahoma", "Verdana", sans-serif;
	background-color: #FFFFFF;
}

/* div class="log" is for temporarily marking the changes, which will be folded into "what's new" when the page goes live. */

.log, #log {
	font-style: italic; font-family: 'Goudy Old Style', 'Times New Roman', 'Times Roman', serif; 
	float: right;
	width: 255;
}

H2              {font-family: 'Goudy Old Style Extrabold', 'Times New Roman', 'Times Roman', serif; font-weight: bold;}
H3              {font-style: italic;}
.notitalic	{font-style: normal;}

/* "text-decoration: none" would mean that links aren't underlined. */
a {
	color: black;
	font-weight: bold;
}

a:link {
	color: blue;
}

a:visited {
	color: #880088;
}

a:hover, a:active {
	text-decoration: underline;
	color: red;
}

/* id="homecorner" is the top left portion where we put our home page link. */

#homecorner {
	position: absolute;
	top: 10px;
	float: left;
	width: 200px;
}

/*
	margin-left: 125px;
	text-align: center;
*/

/* id="banner" is the top portion where the H2 & H1 headlines go, for the title of the page. */
/* (bannerbig is just a larger version for test purposes -- not used on the site.) */
/*	margin-left: 210px;*/
/*	height: 120px;*/

#banner {
	padding-bottom: 5px;
	border-bottom: 6px solid #aa0099;
	background: #ffccff;
}

#bannerbig {
}

/*	left: 10px;*/

/* id="leftside" refers to the major-page navigation block on the left side of the window */ 
/*	width: 120x;*/
#leftside {
	float: left;
	padding: 0px;
	width: 22%;
	margin: 0px;
	font-size: 12px;
	left: 10px;
	top: 60px;
	margin-top: 10px;
}

/*	position: fixed;*/

#leftside ul {
	list-style-type: none;
	background: #006699;
	padding: 0px;
	margin: 0px;
	color: white;
	font-weight: bold;
}

/*
	margin-left: 5px;
	margin-right: 5px;
*/

/* 28-mar-2006 -  padding changed from 2px to 1px */

/*	margin-left: 20px;
	margin-right: 20px;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 2px;
*/
.pix {
	display: block;
}

#leftside ul li {
	display: block;
	padding: 1px 5px 2px 5px;
	font-size: 1em;
	border-top: 2px solid #FFFFFF;
}
/*	border-top: 2px solid #FFFFAA;*/

#leftside ul li.me {
	background: #FF0000;
	display: block;
	padding: 1px 5px 2px 5px;
	font-size: 1em;
	border-top: 2px solid #FFFFFF;
}
/*	border-top: 2px solid #FFFFAA;*/

#leftside ul li.first {
	border-top: none;
}

/*
	display: block;
	margin: 0px;
*/

#leftside ul li a {
	font-weight: bold;
	color: white;
	text-decoration: none;
}

#leftside ul li a:hover {
	text-decoration: underline;
	color: yellow;
}


/* div id=alertbox (sub-category) list on the right hand side */
/* notes: padding refers to inside the shaded area; margin, outside the box. */
/*	background-color: #FFDDFF;
*/
#alertbox {
	font-size: 12px;
	float: right;
	padding-left: 10px;
	margin-left: 15px;
	padding-right: 10px;
	width: 25%;
}
/*	
	padding-bottom: 10px;
	margin-bottom: 15px;
*/

/* "sidebar" refers to the subcategory list sometimes found on the leftside category pages. */
/* we generally put this in the HTML before the "main" section. */
/* id="sidebar" and class="feature" use the same color scheme (dark bold links), see below under .feature . */

/* div id=sidebar (sub-category) list on the right hand side */
/* notes: padding refers to inside the shaded area; margin, outside the box. */
#sidebar {
	background-color: #DDDDFF;
	font-size: 12px;
	float: right;
	padding-left: 10px;
	margin-left: 15px;
	padding-right: 10px;
	width: 25%;
	padding-top: 5px;
	padding-bottom: 10px;
	margin-top: 10px;
	margin-bottom: 15px;
}

#sidebar.thin {
	background-color: #DDDDFF;
	font-size: 12px;
	float: right;
	padding-left: 10px;
	margin-left: 15px;
	padding-right: 10px;
	width: 20%;
	padding-top: 5px;
	padding-bottom: 10px;
	margin-top: 10px;
	margin-bottom: 15px;
}

#sidebar big {
	font-size: 15px;
}

/* id="main" = main portion of a minor or leftside category page */
/*	margin-left: 130px; */

#main {
	margin-right: 20%; 
	margin-left: 25%;
	margin-top: 10px;
	padding-right: 10px;
}

#main big {
	font-size: 20px;
}

#maintop {margin-left: 210px; margin-right: 0px}


/* <div id="main" class="wide"> is for stuff that needs to take more of the width of the screen */

#main.wide  {
	margin-right: 10px; 
}

/* <div id="main"><div class="wide"> has to compensate for #main's large right margin; and the calculation is approximate. */

#main .wide {
	margin-right: -30%; 
}

#main.wide dd, #main .wide dd, #main .pack dd {
	font-size: 80%;
}

/* class="feature" makes a highlight box for us */

.feature {
	background-color: #DDDDFF;
	font-size: 15px;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.feature ul,#sidebar ul {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}

.feature a, #sidebar a {
	font-weight: bold;
}

.feature a:link, #sidebar a:link {
	color: #000044;	
}

#sidebar a:hover, .feature a:hover, #sidebar a:active, .feature a:active, #sidebar a:visited, .feature a:visited {
	color: #880088;
}

dt {
	padding-top: 5px;
}


.hide  {
	display: none;
}

