@charset "utf-8"; /* CSS Document */ /* Basic styling */ /* This is a comment line. Note how we start and end a comment and how comments can organize style sections that make it easier to locate specific style rules. */ /* Heading Styling */ h1, h2, h3, h4, h5, h6 { margin-bottom: 4px; font-family:Arial, Helvetica, sans-serif; } h1 { color:#336699; font-size: 210%; } h2 { font-size: 174%; } h3 { font-size: 153.9%; } h4 { font-size: 138.5%; } h5 { font-size: 120%; } /* Text Styling */ p { line-height: 1.2em; margin-bottom: 15px; } /* List Styling */ ul, ol { font-size: 100%; } ul li, ol li { padding:0; margin-bottom:15px; } /* Table Styling */ table,th,td { border:1px; border-style:solid; border-color:#999999; margin: 2px; } th { background-color: #D8E9F3; font-size:110%; } /* Image Styling */ .align-right { float:right; margin: 0 0 10px 10px; } .align-left { float:left; margin: 0 10px 10px 0; }