
/*
 * CSS:Reset, by Limarc /Alexander Lobashev/
 * 
 * (c) 2008-2009 by Limarc, Lim-on Media
 * _link: http://www.free-lance.ru/users/Limarc
 *
 * _index: doc.style_reset.css
 * _revision: 1.13
 * 

 //  CSS Information:
     ------
     Colors:
         light orange: FF8000
          dark orange: D96C00
           dark beige: 4D4D40
            med beige: 80806B
          light beige: E5E5D8
          darker teal: 268080
            dark teal: 3DCCCC
           light teal: B3FFFF

 */

 /* `Default standart elements`
 ----------------------------------------------- */
 html, body, div, span, applet, object, iframe,
 h1, h2, h3, h4, h5, h6, p, blockquote, pre,
 a, abbr, acronym, address, big, cite, code,
 del, dfn, em, font, img, ins, kbd, q, s, samp,
 small, strike, strong, sub, sup, tt, var,
 dl, dt, dd, ol, ul, li,
 fieldset, form, label, legend,
 table, caption, tbody, tfoot, thead, tr, th, td 
 {
         margin: 0px;
         padding: 0px;
         border: 0px;
         outline: 0;
         font-weight: inherit;
         font-style: inherit;
         font-size: 100%;
         font-family: inherit;
         vertical-align: baseline;
         background: transparent;
 }

 :focus
 {
         outline: none;
 }

 body
 {
         line-height: 1px;
 }

 /* `table` style
 ----------------------------------------------- */
 table
 {
         border-collapse: separate;
         border-spacing: 0px;
 }

 caption, th, td
 {
         text-align: left;
         font-weight: normal;
 }
 
 /* > `form elements`
 ----------------------------------------------- */
 form
 {
         display: inline;
 }

 /* `element` of page style
 ----------------------------------------------- */
 ol, ul
 {
         list-style: none;
 }

 blockquote, q
 {
         quotes: none;
 }
 
 ins
 {
         font-style: italic;
	 text-decoration: none;
 }
 
 del
 {
         text-decoration: line-through;
 }
 
 strong
 {
         font-weight: bold;
 }
 
 sup, sub
 {
	 font-size: .7em;
         vertical-align: baseline;
	 line-height: 1;
         
         position: relative;
 }
 
 sup
 {
	 bottom: 1.4em;
 }
 
 sub
 {
	 top: .5em;
 }
 
 abbr, acronym
 {
         font-style: normal;
         
	 border-bottom: 1px dashed #000;
         cursor: help;
 } 