/* CSS Document */

/* This controls the entire body background outside all the major tables such as entry and comment pallettes.  It can
be used to set the core appearance of your blog. */
body {
	background-color:#ffffff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

/* Controls the appearance of Battle Blog's masthead.  This is a major area of customization. */
td.BannerLogoCell {
	background-color:#ffffff;
	border-color:#000000;
	border-style:solid;
	border-width:1px;
	padding: 15px;
	height:30px;
	font-size:24px;
	color:#FF0000;
}

/* Controls color of HREF links in the entry and comment body boxes (such as "Make Comment", "Promote", "Demote", etc. 
Set color to #FFFFFF to exemplify.  */
a.ViewControlLink {
	color:#000000;
	text-decoration:underline;
}

/* Controls all NON-hyperlinked text as it appears above such controls as "Make Comment", etc. 
Set color to #FFFFFF to exemplify. */
.EntryControlText {
	font-size:9px;
	color:#000000;
	margin-left:0px;
}

/* Controls the appearance of the left sidebar.  Set background-color to #000000 to exemplify. */
td.LeftBar {
	padding:10px;
	background-color:#ffffff;
	border-color:#000000;
	border-style:solid;
	border-width:1px;
}

/*  Controls appearance of the header bars in the left sidebar.  The header bars carry module titles like
"Top User Comments", "Latest User Comments", etc.  Set color to #000000 to exemplify.  */
td.statbar {
	padding:1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #ffffff;
	font-weight: bold;
	background-color: #FF0000;
	text-align:center;
}

/*  This controls the appearance of header bars that are seen when one drills down to comments.
The comments section, and pages like it, are separated in sections by these header bars.  
Examples of header bars include such items as "X Comments so far, scroll down to view",
"Make new comment", etc.  But there are other headers similar to these such as those that
appear on the voting confirmation pages.  */
td.IntroBar {
	padding:10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #ffffff;
	font-weight: bold;
	background-color: #FF0000;
	text-align:left;
}

/* Controls hyperlink and hover appearance in the left side bar.  For example, when Battle Blog lists the
latest comment posters, these names are hyperlinked to the actual comments.  This section controls the appearance
of those hyperlinks. */
a.statlink {
	color:#0000FF;
}

a.statlink:hover {
	color:#FF0000;
}

/* The sorting control is actually contained within a table.  This table appearance can be customized here.  */
table.ViewControlTable {
	background-color:#ffffff;
	text-align:left;
}

/* This controls the appearance of the sorting control at a cell level. */
td.ViewControlCell {
	border-color:#000000;
	border-style:solid;
	border-width:0px;
	background-color:#ffffff;
	text-align:left;
}

/* Each Battle Blog entry includes a date bar at the top.  This section can be used to customize the appearance of that date bar. */
td.DateCell {
	padding-left:10px;
	border-color:#000000;
	border-style:dotted;
	border-width:1px;
	background-color:#FFFFFF;
	color:#000000;
}

/* Style for actual entry body */
.EntryText {
	color: #000000;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:13px;
	margin-left:0px;
	margin-right:50px;
}

/* Allows for additional formatting for each PARAGRAPH in an entry */
.EntryParagraph {
	margin-top:0px;
}

/* Controls link color (static and hover) in each entry */
a.EntryLink {
	color:#000000;
}

a.EntryLink:hover {
	color: #FF0000;
}

/* As name implies, style for titles to each entry */
.EntryTitleText {
	color:#FF0000;
	font-weight: bold;  
	font-size:16px;
}

/* All the so-called "white boxes" of information (including confirmations) following
such actions as successful comments posts, voting transactions, etc.  */
table.WhiteBox {
	border-style: solid;
	border-width: 1px;
	border-color: black;
	background-color:#FFFFFF;
}

/*  This adds a little padding to the so-called "white boxes" of infomration.  Best leave this alone. */
td.WhiteBoxReach {
	padding-top:20px;
	padding-bottom:20px;
}

/*  This adds a little padding to the so-called "white boxes" of infomration.  Best leave this alone. */
td.WhiteBoxPush {
	padding-left:10px;
	padding-right:10px;
}

/*  There is a table that encompasses all of the Google ad box, sorting controls, and all the entries.  This
section controls its appearance. */ 
td.BodyPalette {
	padding:0px;
	border-color:#000000;
	border-style:solid;
	border-width:0px;
	background-color:#FFFFFF;
}

/*  There is a table that encompasses all of the comments.  This section controls its appearance. */ 
td.CommentPalette {
	border-color:#000000;
	border-style:solid;
	border-width:0px;
	background-color:#ffffff;
}

/*  While there is a table that encompasses all entries, each entry itself is a cell of that table.  This
section can therefore be used to customized the space around each  specific entry, which includes the comment
and voting controls.  Set border-style to SOLID to see this exemplified.  */
td.EntryCell {
	text-align:left;
	color: #000000;
	padding:5px;
	border-color:#000000;
	border-style:none;
	border-width:1px;
	background-color:#FFFFFF;
	font-size:15px;
}

/*  This is currently unused.  Battle Blog will eventually have a 3 column option.  This will be used to 
configure the right column. */
td.RightBar {
	border-color:#000000;
	border-style:solid;
	border-width:0px;
}

/*  Controls look of the comment composition box */
.CommentCompositionBox {
	padding:20px;
	border-style:solid; 
	border-color:black; 
	border-width:1px;
}

/* If LinkBar value is set to 1 in config, this is used to configure its appearance. */
.LinkBarStyle {
	padding:3px;
}

/* Used as the quoting style within Battle Blog entries */
blockquote {
	background-color:#CCCCCC;
	border-style:solid;
	border-width:0px;
	border-left-width:2px;
	margin-left:60px;
	margin-right:170px;
	padding-left:10px;
	padding-top:5px;
	padding-right:10px;
	padding-bottom:10px;
}

/* This as an optional style that can be used to customize the border of images used in Battle Blog entries.
It can be called on the fly using the STYLE= parameter in an IMG tag */
img.ImageBorder {
	border-color:#000000;
	border-style:solid;
	border-width:1px;
}