/* -----------------------------------------------------------------------------
 * Style Sheet for SHRM @ SJSU Student Organization
 *
 * FILE: shrm.css
 * AUTH: Nathan E. Fairchild
 * GOAL: To control the majority of the look and feel of the SHRM @ SJSU site
 *       with CSS.
 * -------------------------------------------------------------------------- */

/* -------------------------- */
/* CSS for primary index page */
/* -------------------------- */

/* Give the overall font/font-size/margin/padding and height of the page body.
 * This should allow things to float down at the bottom of the page. */
html, body {
    font-family: Tahoma, Arial, Helvetica, sans-serif;
    font-size: 10pt;
    margin: 0px;
    padding: 0px;
    height: 100%;
}

/* Centers the overall content */
div.centered {
    width: 1000px;
    margin: 0 auto;
}

/* The "across the top" banner color */
div.header {
    background-color: #36C;
    background-image: url(bannerbackground.jpg);
    background-repeat: repeat-x;
    height: 98px;
}

/* Content block, holds header and contentIframe */
div.content {
    background-color: white;
    height: 100%;
    border: 0px solid red;
}

/* Content table controls layout, header top, contentIframe bottom */
div.content table {
    height: 100%;
}

/* Navigation div holds logo and content menu */
div.navigation {
    background-color: #FFCB05;
    position: absolute;
    width: 216px;
    height: 100%;
    z-index: 1;
    border-right: 3px solid #FFAA00;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Make logo marginless */
img.SHRMLogo,
img.HRMALogo {
    margin: 0px;
}

/* SHRM affiliate logo floats towards the bottom of the navigation div */
div.affiliate {
    position: absolute;
    bottom: 0;
    width: 220px;
    text-align: center;
    border: 0px solid black;
}

/* Controls for the affiliate image */
img.affiliate {
}

/* Menu font controls */
table.menu {
    font-family: Tahoma, Arial, Helvetica, sans-serif;
    font-size: 11pt;
    line-height: 20px;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Make anchors look like a consistently sized block */
table.menu a {
    display: block;
    width: 100% - 20px;
    padding-left: 20px;
    padding-top: 3px;
    padding-bottom: 3px;
    text-decoration: none;
    color: #36C;
}

/* Change menu item color on hover for rollover effect */
table.menu a:hover {
    background-color: #36C;
    color: #FFCB05;
}

/* Keep visited links the same color as*/
table.menu a:visited {
    text-decoration: none;
}

/* Turn horizontal rule into a menu-item divider */
hr {
    height: 1px;
    border-top: 1px solid #36C;
    border-bottom: 0px solid #36C;
    margin: -2px;
    margin: 2px 0px 2px 0px;
    padding: 0px;
}

/* Actual site content lives in here */
iframe.contentIFrame {
    margin: 0px;
    padding: 0px;
}


/* ------------------------------------------- */
/* CSS for imbedded HTML in the content iframe */
/* ------------------------------------------- */

/* This is the body style for all html displayed in the contentIFrame */
body.inset {
    background-color: white;
    padding: 10px;
    padding-top: 0px;
    padding-bottom: 20px;
    font-size: 14px;

    line-height: 17px;

    margin: 0px;
}

/* Using h4s to create a box solid-color box header */
h4.title {
    background-color: #3266cc;
    color: white;
    font-size: 14px;
    padding: 2px;
    padding-left: 5px;
    margin-top: 10px;
    margin-bottom: 0px;
}

/* Using a div to create a box for information */
div.infoSection {
    border: 1px solid #3266cc;
    margin-top: 0px;
    margin-bottom: 10px;
    padding: 2px;
}

/* Top of page banner/heading */
p.banner {
    padding: 0px;
    margin-top: 12px;
    margin-bottom: 0px;
    text-align: center;
    color: #006;
    font-family: Verdana;
    font-weight: bold;
    font-size: 13pt;
}

/* Bottom of page footer */
p.footer {
    text-align: center;
    font-family: Verdana;
    font-weight: bold;
    font-size: 12px;
}


dt {
    font-weight: bold;
}

dd {
    padding-bottom: 10px;
}

/* Adjusting top-level unnumbered lists to the left */
ul.lefty {
    padding-left: 0px;
    margin: 10px;
    list-style-type: none;
}

/* Markers for things to complete */
span.todo {
    color: red;
    padding-left: 5px;
    font-weight: bold;
}

/* --------------------------------- */
/* CSS for SHRM @ SJSU officers HTML */
/* --------------------------------- */

/* Defines the size of the space for the photo layout */
.staff_item {
    padding: 10px;
    border: 0px solid black;
    width: 200px;
    height: 200px;
    margin: 10px;
    color: #36C;
}

/* E-mail link under photo of officer */
.staff_item a {
    color: #066;
    background-color: #FFCB05;
    text-decoration: none;
}

/* Holds the slide frame for the title, photo, and name/e-mail address */
.info {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    text-align: center;
    background-image: url(slide.png);
}

/* Make sure the title is in black */
.info > b {
    color: black;
}

/* Holds the officer's picture and defines the size */
div.photo {
    height: 125px;
    width:  200px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}


/* -------------------------------------------------------- */
/* Extra styles for inherited HTML - backward compatibility */
/* -------------------------------------------------------- */

.style1 {
    font-family: Verdana;
    font-weight: bold;
    color: #333333;
}
.style2 {
    font-family: Verdana;
}
.style3 {
    font-size: 16pt;
}
.style4 {
    color: #006;
    font-weight: bold;
}
.style5 {
    font-size: 12px;
}
ul.style5 {
    list-style-type: circle;
    font-weight: bold;
}
.style6 {
    font-size: 16px;
}

