/*
	basic.css
	----------
	defines basic rules for HTML tags
*/

body {
    background: #FFF;
    color: #3d3d3d;
    font: 65.7% / 1em Arial, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

a:link, a:visited, a:hover, a:active {
    color: #3d3d3d;
    text-decoration: underline;
}

img, a img {
    border: none;
}

p {
    margin-top: 0;
}

ol, ul {
    margin-top: 0;
    margin-bottom: 1em;
}

ol {
    padding-left: 20px;
}

blockquote {
    margin: 1em 0 1em 20px;
}

pre, code, tt {
    font-size: medium;
}

* html code,
    * html pre,
    * html tt {
    font-size: small;
}

*:first-child+html code,
    *:first-child+html pre,
    *:first-child+html tt {
    font-size: small;
}

form {
    margin: 0;
    padding: 0;
}

input, select {
    vertical-align: middle;
}

.ClearFix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/**/
span.hlt {
    color: #81C856;
    font-weight: bold;
}

.bindError {
    color: red;
    font-weight: bold;
    font-size: 1.1em;
}

/* resetting font-size here to prevent select boxes from being too small */
select, button {
    font-size: 100%;
}

.clear {
    clear: both;
    background: #fff;
}

