/*** RESET ***/
/* v1.0 | 20080212 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
/* remember to define focus styles! */
:focus {
    outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
    text-decoration: none;
}
del {
    text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
    border-collapse: collapse;
    border-spacing: 0;
}


/*** BC MAIN ELEMENTS ***/

body {
    background: #fff url('./assets/images/bc_background_main.jpg') no-repeat left top;
    font-family: verdana, arial, helvetica, sans;
    font-size: 80%;
    color: #655;
    line-height: 150%;
    height: 100%;
}

h1,
h2,
h3 {
    font-family: "Trebuchet MS", helvetica, charcoal;
    font-variant: small-caps;
    font-weight: normal;
}

h1 {
    text-align: right;
    font-size: 22px;
    background: url('./assets/images/bc_background_h1.png') no-repeat right bottom;
    padding: 0 20px 6px 0;
    color: #c17;
}

h2 {
    color: #579;
    font-size: 20px;
    margin-top: 25px;
    font-weight: bold;
}

h3 {
    color: #579;
    font-size: 18px;
    margin-top: 25px;
}

a {
    color: #975;
    text-decoration: none;
}

a:hover,
a:visited:hover {
    text-decoration: underline;
}

p {
   margin: 10px 0;
}

ul {
    list-style-type: square;
    list-style-position: outside;
    margin-left: 20px;
    line-height: 120%;
}

li {
    margin: 10px 0;
}

hr {
    background: none;
    border: none;
    height: 1px;
    border-top: 1px solid #ddd;
}

/*** BC DIV IDs ***/

#container {
    width: 950px;
    min-width: 950px;
    height: 100%;
}

#left-block {
    width: 350px;
    float: left;
}

#right-block {
    width: 600px;
    float: left;
    position: static;
}

#nav {
    text-align: right;
    padding: 45px 20px 100px 50px;
    font-size: 10px;
    text-transform: uppercase;
}

#nav ul {
    list-style-type: none;
    display: inline;
}

#nav li {
    display: inline;
}

#nav li a,
#nav li a:visited {
    color: #c17;
    padding: 0 12px 2px 8px;
    background: url('./assets/images/bc_background_nav_link.png') no-repeat left bottom;
    text-decoration: none;
}

#nav li a:hover,
#nav li a:visited:hover {
    text-decoration: underline;
}

#content {
    padding: 50px 10px 10px 30px;
    min-height: 400px;
    background: url('./assets/images/bc_background_content.png') no-repeat right bottom;
}

#footer {
    padding: 30px 0 0 30px;
    color: #c17;
    font-size: 10px;
    background: url('./assets/images/bc_background_footer.png') no-repeat right top;
}


/*** BC COMMON CLASSES ***/

.clear {
    clear: both;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.image-right {
    float: right;
    margin: 30px;
}

.image-left {
    float: left;
    margin: 30px;
}

.margin-right {
    margin-right: 40px;
}

.margin-left {
    margin-left: 40px;
}

.float-right {
    float: right;
}

.float-left {
    float: left;
}

width-40 {
    width: 40%;
}

p.failure {
    background: #fdd;
    border-top: 1px solid #b99;
    border-bottom: 1px solid #b99;
    padding: 4px;
}

p.success {
    background: #dfd;
    border-top: 1px solid #9b9;
    border-bottom: 1px solid #9b9;
    padding: 4px;
}

.errors {
    color: #C43554;
}

ul.ul-checklist {
    margin: 20px 50px; 
    list-style-image: url('./assets/images/fugue_icons/tick.png');
}







/*** FORMS ***/

fieldset {
    padding: 10px;
    line-height: 120%;
    border-top: 1px solid #69a;
    margin: 10px 0 10px 0;
}

legend {
    color: #fff;
    background: #69a;
    padding: 1px 4px;
    margin: 10px 0 10px 0;
}

label,
input,
select,
textarea {
    display: block;
    margin-bottom: 10px;
}

label {
    color: #555;
}


/*** TABLES ***/

table {
    width: 100%;
    margin: 20px 0;
}

thead {
    color: #fff;
    background: #69a;
    border-bottom: 1px solid #589;
}

th {
    text-align: left;
    padding: 4px;
    color: #fff;
    background: #69a;
    border-bottom: 1px solid #589;
}

tr.odd_row,
tr.odd_row td {
    background: #fff;
    border-bottom: 1px solid #e7e7e7;
}

tr.even_row,
tr.even_row td {
    background: #eee;
    border-bottom: 1px solid #e7e7e7;
}

td {
    padding: 4px;
}

