/*Basic Layout - Used For All Pages*/
BODY
	{
	padding:			0px;
	margin:			0px;
	border-width:		0px;
	font-family:		Century Schoolbook, Arial, Verdana, serif;
	font-size:			10pt;
	color:			black;
	}
P
	{
	font-family:		Century Schoolbook, Arial, Verdana, serif;
	font-size:			10pt;
	color:			black;
	text-align:			justify;
	}
H1
	{
	font-family:		Century Schoolbook, Arial, Verdana, serif;
	font-size:			18pt;
	color:			black;
	text-align:			center;
	font-weight:		bold;
	}
H2
	{
	font-family:		Century Schoolbook, Arial, Verdana, serif;
	font-size:			14pt;
	color:			black;
	text-align:			left;
	font-weight:		bold;
	}
H3
	{
	font-family:		Century Schoolbook, Arial, Verdana, serif;
	font-size:			12pt;
	color:			black;
	text-align:			left;
	font-style:			italic;
	}
A:link
	{
	font-family:		Century Schoolbook, Arial, Verdana, serif;
	color:			red;
	background:			transparent;
	text-decoration:		none;
	}
A:hover
	{
	font-family:		Century Schoolbook, Arial, Verdana, serif;
	color:			red;
	font-weight:		bold;
	background:			transparent;
	text-decoration:		underline;
	}
A:active
	{
	font-family:		Century Schoolbook, Arial, Verdana, serif;
	color:			red;
	background:			transparent;
	text-decoration:		none;
	}
A:visited
	{
	font-family:		Century Schoolbook, Arial, Verdana, serif;
	color:			red;
	background:			transparent;
	text-decoration:		none;
	}



/*Main Box*/
.main
	{
	border-width:		2px;
	border-color:		black;
	border-style:		solid;
	background:			white;
	margin-top:			15px;
	margin-bottom:		15px;
	margin-left:		15px;
	margin-right:		5px;
	padding:			5px;
	}



/*Technique Of The Day Box*/
.techbox
	{
	border-width:		3px;
	border-color:		black;
	border-style:		solid;
	background:			red;
	margin-top:			-10px;
	margin-right:		5px;
	float:			right;
	clear:			right;
	width:			400px;
	padding:			10px;
	}



/*Overused Pokémon Of The Day Box*/
.overusedbox
	{
	border-width:		2px;
	border-color:		red;
	border-style:		solid;
	background:			black;
	margin-left:		-10px;
	margin-right:		5px;
	padding:			10px;
	}


/*Main Box Elements*/
H1.title
	{
	text-align:			left;
	line-height:		2em;
	}
H2.daypokemon
	{
	line-height:		1.5em;
	vertical-align:		top;
	}
H2.dayteam
	{
	line-height:		1.5em;
	vertical-align:		top;
	}
H3.authors
	{
	padding:			10px;
	font-size:			8pt;
	text-indent:		-10px;
	}



/*Technique Of The Day Box Elements*/
H1.daytech
	{
	line-height:		1.5em;
	text-decoration:		underline;
	font-size:			12pt;
	vertical-align:		top;
	}
A:link.tech
	{
	color:			white;
	}
A:hover.tech
	{
	color:			white;
	}
A:active.tech
	{
	color:			white;
	}
A:visited.tech
	{
	color:			white;
	}



/*Overused Pokémon Of The Day Box Elements*/
H1.overused
	{
	line-height:		1.2em;
	color:			white;
	text-align:			left;
	vertical-align:		top;
	text-decoration:		underline;
	font-size:			12pt;
	}
P.overusedpoke
	{
	color:			white;
	}


/*NOTES FOR ISSUE WRITERS*/
/*Read carefully each tag class provided here. Each of the three boxes should be maked with a*/
/*DIV tag, classed accordingly to the box you're in. The Main Box will include both the Tech-*/
/*nique Of The Day Box (placed by default in the upper-right corner) and the Overused Pokémon*/
/*Of The Day Box (generally placed in the bottom), section-wise. Content-wise, the Main Box  */
/*contains the Pokémon Of The Day (placed below the Issue's title and author listing) and, if*/
/*applicable, the Team Of The Day (placed below the Overused Pokémon Of The Day. I've inden- */
/*tified the classes to be rather obvious, and you shouldn't have trouble understanding what */
/*is used for what. I recommend that you use no other formatting.                            */
/*                                                                                           */
/* - Marcus Majarra                                                                          */