/*
	category: CSS
	name: Insert Base CSS
	toolTip: Insert Base CSS
*/

* {
	padding: 0px;
	margin: 0px;
}

table, fieldset, img  {
	border: none;
}

table {
    border-spacing: 0px;
    border-collapse: collapse;
}

ul, ol {
	list-style: none;
}

.topit, .topthem * {
	vertical-align: top;
}

.middleit, .middlethem * {
	vertical-align: middle;
}

.bottomit, .bottomthem * {
	vertical-align: top;
}

.centerit {
	text-align: center;
}

.justifyit {
	text-align: justify;
}

.leftit {
	text-align: left;
}

.rightit {
	text-align: right;
}

.underlineit {
	text-decoration: underline;
}

.boldit {
	font-weight: bold;
}

.italicit {
	font-style: italic;
	overflow: hidden;
}

.blockit {
	display: block;
}

.inlineit {
	display: inline;
}

.removeit {
	display: none;
}

.showit {
	visibility: visible;
}

.hideit {
	visibility: hidden;
}

.nowrap {
	white-space: nowrap;
}

.error {
	color: #ff0000;
}

html.verticalscroll { /*mimic IE in FF, Safari, Opera, Netscape*/
	min-height: 100%;
	margin-bottom: 1px;
}

input.linkbutton {
	color: #0000ff;
	background-color: transparent;
	border: #000000 none 0px;
	cursor: pointer;
	cursor: hand;
}

div.clear {
    clear: both;
    height: 0px;
	font-size: 0px;
    overflow: hidden;
}