@charset "UTF-8";
/* CSS document */

/* This is a comment */

/* these are for tags*/
body{
    font-family:Arial, Helvetica, sans-serif;
    color: #333;  
    background-color:yellow;
}
p{ 
    color:#F60;
}
a{
    color:#6C9;
    text-decoration:none;
}

/*this is for an ID */
#wrapper{
    width:960px;
      
    /*TOP LEFT/RIGHT BOTTOM*/
    margin: 0 auto 0;
    
    position:relative;    
}
header{
    float:left;
    width:960px;
    height:140px;  
    background-color:#0CF;
}
Nav{
    float:left;
    width:960px;
    height:40px;
    background-color:#FF0;
}
article{
    float:left;
    width:330px;
    background-color:#666;
} 
article section{
    float:left;
    width:330px;
    margin:0 0 10px 0;
    background-color:#CCC;
} 

aside{
    float:left;
    width:330px;
    background-color:#C9C;    
}

#footer{
    clear:both;
    width:960px;
    height:100px;
    background-color:#FC9;
}

/* this is a CLASS! */
.LightBlue{
    color:#09F;
}    

 .textbox {
   border: 1px dashed red;
   padding:1%;
   background-color: white;
 }         