/*
-----------------------------------------
BT Tradespace - custom.css
-----------------------------------------*/

@import "base.css";
@import "typography.css";
@import "forms.css";
@import "content-areas.css";
@import "layout-areas.css";
@import "custom.css";
@import "lens.css";
 
/* CSS section order
--------------------------
 
a) base.css
	Basic page structure
	Accessibility styles
	Header
	Footer
	Tabs
	Buttons
	Spacing
	Lines
	Width
	Tables
	Themes
b) forms.css
c) content-areas.css
d) layout-areas.css
e) custom.css


/* General conventions
--------------------------

 1. HTML Elements are always declared:
    '*.theme1' or 'body.theme1' rather than '.theme1'

 2. COLOURS are always specified in lowercase 6 digit hexadecimal:
    #ff0000 rather than #f00, #F00, #FF0000, red, Red

 3. URLs are always quoted with quotation marks:
    url("../img/css/highlight-alpha.png") repeat-x top;

 4. COMMENTS are always included when equivalent styles exist in IE CSS files:
    *HAS STYLES IN IE7.css* or *HAS STYLES IN IE6.css*

 5. HEADINGS come in two varieties (see CSS for format):
      a) Section heading
      b) Sub-section heading 

 6. SPACING generally follows this pattern:
      - Each declaration occurs on its own line
      - No lines between rules
      - Section headings preceded with 4 lines, followed by 1 line
      - Sub-section headings preceded with 2 empty lines, followed by none
 
 7. Suggested rule order:

    a) Dimension
       width:
       height:
       margin:
       padding:

    b) Display method
       display:
       float:
       clear:
       overflow:

    c) Positioning
       position:
       top:
       left:
       right:
       bottom:
       z-index:

    d) Typography
       font-family:
       font-weight:
       line-height:
       text-decoration:
       color:
       list-style:

    e) Box effects
       border:
       border-radius
       background:
       box-shadow:
          -vendor specific attributes:

*/

