/*GENERAL DECLARATIONS*/
* {
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.8em;
    color: #333;
    background-color: #e6e6e6;
    line-height: 150%;
}
input, select, textarea {
    font-family: Arial, Helvetica, sans-serif;
    vertical-align: middle;
    font-size: 1.0em;
}
select {
    height: 20px;
}
option {
    padding-right: 10px;
}
a,
a:link,
a:active,
a:visited {
    cursor: pointer;
    text-decoration: none;
    color: #333;
}
a:hover {
    color: #f90;
}
img {
    border: 0;
}
table {
    border-collapse: collapse;
}
th, td {
    vertical-align: top;
    text-align: left;
}
h1, h2, h3, p {
    margin-bottom: 1em;
}
h1 {
    font-size: 1.5em;
    line-height: 150%;
}
h2,
h3 {
    font-size: 1.2em;
    line-height: 120%;
}
ul, ol {
    padding-left: 20px;
    margin: 0;
}
ul li {
    list-style-type: square;
}

/*XLIST*/
ul.x_list {
    margin: 0;
    padding: 0;
}
ul.x_list li {
    float: left;
    display: block;
    list-style-type: none;
}
ul.x_list li a,
ul.x_list li a:link,
ul.x_list li a:visited,
ul.x_list li a:active {
    float: left;
    display: block;
}
ul.x_list li a:hover {
}

/*GENERAL CLASSES*/
.left {
    text-align: left;
}
.center {
    text-align: center;
}
.right {
    text-align: right;
}
.none {
    display: none;
}
.breaker {
    clear: both;
}
.icon {
    vertical-align: middle;
    margin-right: 5px;
}
.top {
    vertical-align: top;
}
.middle {
    vertical-align: middle;
}
.bottom {
    vertical-align: bottom;
}
.removed {
    text-decoration: line-through;
    color: #ccc;
}
.nowrap {
    white-space: nowrap;
}
.filler {
    width: 100%;
}
.msg_normal,
.msg_success,
.msg_error,
.msg_warning {
    padding: 5px 10px;
    margin-bottom: 1em;
    font-weight: bold;
    color: #fff;
}
.msg_normal {
    background-color: #ccc;
}
.msg_success {
    background-color: #080;
}
.msg_error {
    background-color: #c00;
}
.msg_warning {
    background-color: #f90;
}
.hide {
    display: none;
}