@charset "utf-8";
/* CSS Document */

01	/*======================
02	HEADINGS
03	========================*/
04	h1{ }
05	h2{ }
06	h3{ }
07	h4{ }
08	h5{ }
09	h6{ }
10	/*======================
11	LINKS
12	========================*/
13	a
14	{
15	 
16	}
17	a:hover
18	{
19	 
20	}
21	a:visited
22	{
23	 
24	}
25	/*======================
26	PARAGRAPHS
27	========================*/
28	p
29	{
30	 
31	}
32	/*======================
33	STRONG/B EM/I
34	========================*/
35	strong, b
36	{
37	font-weight:700;
38	}
39	em, i
40	{
41	font-style:italic;
42	}
43	/*======================
44	UNORDERED LIST
45	========================*/
46	ul
47	{
48	list-style:disc;
49	margin-left:30px;
50	}
51	ul li
52	{
53	 
54	}
55	/*======================
56	ORDERED LIST
57	========================*/
58	ol
59	{
60	list-style:decimal;
61	margin-left:35px;
62	}
63	ol li
64	{
65	 
66	}
67	/*======================
68	DEFINITION LIST
69	========================*/
70	dl{ }
71	dt{ font-weight:700; text-decoration:none; margin-top:10px; font-size:14px; border:0;   }
72	dd{ margin-left:18px; }
73	/*======================
74	MISC
75	========================*/
76	blockquote{ }
77	 
78	abbr{ }
79	 
80	acronym{ }
81	 
82	sub{ font-size:10px; line-height:1.5; vertical-align:bottom; }
83	 
84	sup{ font-size:10px; line-height:1.5; vertical-align:top; }
85	 
86	code{ }
87	 
88	small{ font-size:11px }
