/* 
Style Sheet for Southeastern Wheelchair Sports Association (SEWSA)

NOTE: CSS has no "tables". However, when you see terms such as padding and margins their meanings are similar to those cell elements in tables.
*/

/* This is the basic style for the body of the page. It defaults all margins to 0, defaults the fonts to sans-serif, trying verdana first, arial second, helvetica third, and if none are found, it will default to the browser's default sans-serif font. */

body {margin:0; font-family:Verdana, Arial, Helvetica, sans-serif}

/* This styles the tags labeled as header 1 tags (<h1>). */h1 {
/* This aligns the text to the center. */text-align: center;
/* This sets the bottom margin to have some space below it so it doesn't run into the main text or the header 2 sections of the page. */
margin-bottom: 2%;
/* This sets the padding above and below of the h1 text so it doesn't run all the way to the margin. */
padding-bottom: .3em;
padding-top: .3em;

/* This sets the font size for everything in the HTML that is labeled as header 1. */
font-size: 1.1em;
/* This sets the left margin to .3% it pulls up all the way to the left of the edge. */
margin-left: .3%;
/* This sets the right margin to .3% so it pulls up all the way to the right of the edge. */
margin-right: .3%;
/* This sets the spacing between letter to be a little wider than normal for a different visual effect. */
letter-spacing: .3em;
/* This sets the font to be bold. */
font-weight: bold;
}

/* This styles all of the paragraph (<p>), unordered and ordered lists (<ul> and <ol>), and any tables contained in the main text section of the HTML code. */

p, ul, ol, li {
/* This sets the top margin to zero so it pulls up all the way to the bottom of the previous sections. NOTE: Sections above these may already have bottom margins set, so setting the top margin here would only expand this space. */
margin-top: 0;
/* This sets the bottom margin to these sections to .5em. As noted above, adding a top margin to this element would add to the bottom margin of, say, an unordered list if one list was above the other. */
margin-bottom: .5em;}


/* This styles all headings of level 3. */h3 {
/* This sets the font size of this element. */font-size: 1.2em;
/* This sets the bottom margin of this heading level to .3em. */margin-bottom: .3em;
/* This sets the font style to be sans-serif (starting with verdana and moving toward the browser's default if none of the specified ones are found). */
font-family: verdana, arial, helvetica, sans-serif;
}

/* This styles all headings of level 4. */h4 {
/* This sets the font size of this element. */font-size: 1em;
/* This sets the bottom margin of this heading level to 1.2em. */margin-bottom: 1.2em;
/* This sets the font style to be sans-serif (starting with verdana and moving toward the browser's default if none of the specified ones are found). */
font-family: verdana, arial, helvetica, sans-serif;
}

/* This styles all headings of level 5. */h5 {
/* This sets the font size of this element. */font-size: 1.5em;
/* This sets the line height of this element. */line-height: 1.4em;
/* This sets the bottom margin of this heading level to .3em. */margin-bottom: .3em;
/* This sets the font style to be sans-serif (starting with verdana and moving toward the browser's default if none of the specified ones are found). */
font-family: verdana, arial, helvetica, sans-serif;
}

/* This styles all headings of level 6. */h6 {
/* This sets the font size of this element. */font-size: 1.2em;
/* This sets the line height of this element. */line-height: 1.1em;
/* This sets the bottom margin of this heading level to .3em. */margin-bottom: .3em;
/* This sets the font style to be sans-serif (starting with verdana and moving toward the browser's default if none of the specified ones are found). */
font-family: verdana, arial, helvetica, sans-serif;
}

/* This styles all headings of level 7. */h7 {
/* This sets the font size of this element. */font-size: .8em;
/* This sets the line height of this element. */line-height: .8em;
/* This sets the bottom margin of this heading level to .3em. */margin-bottom: .3em;
/* This sets the font style to be sans-serif (starting with verdana and moving toward the browser's default if none of the specified ones are found). */
font-family: verdana, arial, helvetica, sans-serif;
}


