/* CSS Style Sheet for JavaScript Course Homepage */
/* Edith Harvey */

/* body main style */
body {
     font-family: Arial, Helvetica, sans-serif;
     font-size: 12px;
}

/* heading 1 style */
h1 {
     color: #0066cc; /* cool blue */
     text-align: center;
}

/* heading 5 style */
h5 {
     color: #0066cc; /* cool blue */
     font-style: italic;
     text-align: center;
}

/* unordered/bulleted list style */
ul.schedule li {
     color: #000000; /* black */
     list-style-position: outside;
     list-style-type: none;
}

ul.schedule li.assignment {
     list-style-type: circle;
}