/*
  ----------------------------------------------------------
  Hello.
  You're doing the right thing to learn more about CSS and
  xHTML - looking.
  That's the way I'm learning, and it's one of the best.
  But please don't copy wholesale.
  So, look: don't copy !
  ----------------------------------------------------------
  Copyright (c) 2000-2010
  The Rubycon Copyright (c) 2010
  http://www.therubycon.com/
  ----------------------------------------------------------
  defintion:		layout
  author:			Mark Jackson
  ----------------------------------------------------------
  site:           	Newton Projection Service
  designer:       	Mark Jackson
  creation:   		11 February 2010
  last modified:   	15 February 2010
  scheme:			*****
  layout:			columns
  background:		#333
  font-family:		Sans serif
  ----------------------------------------------------------
  takes the form   | pX | ngl | wX | ngr | sX |
  <div class="section aX bX">
  <div class="column wX pX sX ngl ngr">Content</div>
  </div>
  ----------------------------------------------------------
  1					Columns
  2					Gutters
  3					Widths
  ----------------------------------------------------------
  1 Columns
  ----------------------------------------------------------
 */
div.column {
    display:inline;
    float:left;
    margin-left:10px;
    margin-right:10px;
    border-top:0px solid red;  
    border-bottom:0px solid blue;   
}
/*
  ----------------------------------------------------------
  2 Gutters - or how to remove them for first and last children
  ----------------------------------------------------------
 */
.nlg { margin-left:0 !important; }
.nrg { margin-right:0 !important; }
/*
  ----------------------------------------------------------
  3 Column widths
  ----------------------------------------------------------
 */
.w1 {width:60px;}
.w2 {width:140px;}
.w3 {width:220px;}
.w4 {width:300px;}
.w5 {width:380px;}
.w6 {width:460px;}
.w7 {width:540px;}
.w8 {width:620px;}
.w9 {width:700px;}
.w10 {width:780px;}
.w11 {width:860px;}
.w12 {width:940px;}
