/**
 **************************************************
 * base.css
 * Styles for base HTML tags
 * TJ Eastmond <teastmond@efashionsolutions.com>
 **************************************************
 */

* {
	font-family: arial,helvetica,sans-serif;
}

body {
	background:rgb(198,198,198);
	color: #191919;
	font-size:14px;
}

a {
	color:#191919;
	font-weight: bold;
	text-decoration: none;
}

a:hover {
	color:#7E7E7E;
	cursor: pointer;
}

p {
	padding:0 0 20px;
}

.clear {
	clear: both;
}

.textRight{
	text-align:right;
}

.noMargins {
	margin:0px;
}

a.btn,
input.btn,
input.input-submit {
 	background: #191919;
 	color: #FFF;
 	cursor: pointer;
 	padding: 3px;
 	position: relative;
 	text-decoration: none;
}


