/* 
    Document   : mp-base
    Created on : Feb 10, 2011, 11:42:19 AM
    Author     : jkeller
    Description:
        This is the base stylesheet for magnet portal.  It will
        handle all base html tags, and globally used classes...nothing more.

        For specific classes or ids that are styled for one
        or two items, see mp-specific.css
*/
body {
    font-family: "Trebuchet MS", verdana, arial, sans-serif;
    font-size: 13px;
    color: #222;
}

h1 {
	font-size: 19px;
	font-weight: 900;
	margin-bottom: 5px;
}

h2 {
	font-size: 17px;
	font-weight: 900;
	margin-bottom: 5px;
}

h3 {
	font-size: 15px;
	font-weight: 900;
	margin-bottom: 5px;
}

a {
    text-decoration: none;
    color: #102C4A;
}

a:hover {
    text-decoration: underline;
}

a img {
    border: 0;
}

table {
    border: 0;
    padding: 0px;
}

textarea {
    font-weight: 700;
    width: 100%;
}

ol {
    list-style: decimal;
    margin-left: 0em;
}

p {
    margin: 0.7em 0;
}

input, textarea, select {
    background: #FFFFFF;
    border: 1px solid #AAAAAA;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: 12px;
    padding: 3px;
}

.unselectable {
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.clear{
	clear: both;
}

.nolink{
	cursor: default!important;
}