/* body */

body { /* the selector 'body' is a type selector, e.g.   <body> ... </body> */
    padding: 0;
    background: #ccc;
    margin: 0;
    font-size: small;
    font-size: 10px;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size:76%;
    color:#444;
}

.normal-background {
     background: #ccc;
}

.no-contrast-background {
    background: #eee;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-family: "Lucida Grande", sans-serif;
    font-weight: normal;
}

/* main div id */

#main {
    background-color: white;
    margin: 0 auto;
}

.fixed-width {
    width: 740px;
}

/* header div id */

#header {
    width: 100%;
    height: 120px; 
    margin: 0 auto;
    background: #eee;
}

#header h1 {
    float: left;
    padding: 40px 0 0 10px;
    font-size: 4.3em;
}

.texai-font {
    font-family: Georgia, Times, Serif;
    font-variant: small-caps;
}

#header h2 {
    float: right;
    padding: 40px 10px 0 0;
    font-size: 1em;
}

#header h3 {
    float: left;
    padding: 53px 10px 0 0;
    font-size: 1em;
}

/* content div id */

#content {
    padding: 20px 15px;
    background-color: white;
    margin: 0 auto;
    font-size: 1.2em;
}

/* padded-content div id */

#padded-content {
}

.homepage-padded-content {
    height: 374px; 
}

.popup-link {
    height: 10px; 
    float: right; 
    font-size: .8em;
}

/* text columns */

#columns .column {
    position: relative;
    width: 46%;
    padding: 1%;
}

#columns .left {
    float: left;
}

#columns .right {
    float: right;
}

/* footer div id */

#footer {
    width: 100%;
    margin: 0 auto;
    background: #eee;
    color: #444;
    padding: 10px 0;
}

#footer p {
    margin: 0;
    padding: 0;
    text-align: center;
}

/* rounded corners */

.rounded-top {
    border-top-left-radius: 10px 10px;
    border-top-right-radius: 10px 10px;
}

.rounded-bottom {
    border-bottom-left-radius: 10px 10px;
    border-bottom-right-radius: 10px 10px;
}

/* links */

a:link { 
    color: #A0A0A0;
    text-decoration: none;
}
    a:visited { 
    color: #A0A0A0;
    text-decoration: none;
}
a:hover { 
    color: #000000;
    text-decoration: none;
}
a:active { 
    color: #A0A0A0;
    text-decoration: none;
}

