/* File: course.css -- style sheet for INFO I210 */

@import url(../../styles/site.css);
@import url(../../styles/lists.css);
@import url(../../styles/important.css);
@import url(../../styles/colors.css);


div.new-sidebar
{
    margin: 0.5em 20%; /* top and bottom, left and right */
    /* margin: 0.5em 22% 0.5em 18%; */ /* top, right, bottom, left */
    border: medium inset rgb(160, 160, 160);
    padding: 1em;
    /* (implied) width: 60%; */
    background-color: rgb(200, 212, 224); /* slightly bluish, bright gray */
}    

figure
{
    border: thin solid black;
    padding: 3px 6px;
}

/* old:
div.new-sidebar
{
    margin: 0.5em 1em; /* top and bottom, left and right * /
    border: medium inset rgb(160, 160, 160);
    padding: 1em;
    float: right;
    clear: right;
    width: 30%;
    background-color: rgb(200, 200, 200); /* bright gray * /
}
*/

/* borrowed from /home/gdweber/links/site.css, might want to promote to 
   all course styles */

/* suppress bullets in UN-ordered lists, and undo indentation */

div.nobullets ul > li
{
    list-style-type: none;
    text-indent: -2em;
}

/* but for ORDERED lists within unordered lists, it is necessary
   now to explicitly restore the defaults! */

div.nobullets ul ol > li
{
    list-style-type: decimal;
    text-indent: 0em;
}

/* And I might have to go further for ul ol ol's -- 
   list-style-type: lower-roman;
*/
