/**
 * undo_default_styling.css
 * Undo some of the default styling of common (X)HTML browsers.
 *
 * This file contains style-rules to undo default styling of common
 * XHTML browsers.
 * Overriding styling-rules and default classes should be specified in
 * stand-alone css documents or inline style-rules.
 * Original stylesheet created by Tantek Celik <http://tantek.com>
 *
 * @author K. Hanssen <kelly@ffwd.nl>
 * @version 1.0
 * @copyright (c) 2007 Future Forward Brand Newmedia
 */
 
/**
 * remove link underlines by default.
 */
:link, :visited
{
        text-decoration: none;
}

/**
 * remove list-markers by default.
 */
ul, ol
{
        list-style: none;
}

/**
 * avoid browser default inconsistent heading/pre/code font-sizes.
 */
h1, h2, h3, h4, h5, h6, pre, code
{
        font-size: 1em;
		font-weight: normal;
}

/**
 * remove the inconsistent default padding or margin.
 */
ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, body, html, p, blockquote,
fieldset, input, hr, td, th
{
        margin: 0;
        padding: 0;
}

/**
 * remove (blue)image borders.
 */
a img, :link img, :visited img
{
        border: none;
}

/**
 * de-italicize address
 */
address
{
        font-style: normal;
}

/**
 * remove bold font and center aligning of text
 */
th
{
	font-weight: normal;
	text-align: left;
}
table.newsblock
{
	border-collapse: separate;
	border-spacing: 0px;
	border-style: solid;
	border-color: #BBCC0C;
	border-width: 1px;
	}