﻿/* @group CSS RESET */

* {
	margin: 0;
	padding: 0;
}

body {
	font-size: 100%;
	font-weight: normal;
	line-height: 100%;
}

table, tr, td {
	border-collapse: collapse;
}

tr {
	vertical-align: top;
}

a {
	outline: none;
}

img {
	border: none;
	outline:none;
}

ul {
	list-style: none;
	list-style-position: outside;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: bold;
	font-size: 100%;/*go up from here*/
}

hr {
	visibility: hidden;
}
/* @end */

/* @group GAIN LAYOUT and PNG fix */

/*if you don't want to add the following individually to the selectors*/
.gainlayout {
	_height: 0;/*IE6 - I actually think it should be set to 1%*/
	min-height: 0;/*IE7 can also be min-width*/
	position: relative;/*another IE6 solution*/
}

/*
PNG fix: either as conditional statement in the header
or else call it here in the stylesheet:

img, div, td, TD { 
	behavior: url(iepngfix.htc); 
}
*/

/* @end */

/* @group BASICS
 */

.left {
	float: left;
}

.right {
	float: right;
}

.leftalign {
	text-align: left;
}

.rightalign {
	text-align: right;
}

.centeralign {
	text-align:center;
}
.justify {
	text-align: justify;
}

.clear, .clearboth {
	clear: both;
	display: block;
	width: 100%;
}

.normalweight {
	font-weight: normal!important;
}

.bullet {
	list-style-position: outside;
	list-style-type: disc;
	margin-left: 20px;
}

.nopadding {
	padding: 0;
}

/* @end */