﻿/* TwoColumnDivision.css
This css file should be included in every page 
where two columns are being used inside main
*/
/* ---------------------------------------------- */
/* Colors used on this site */
/* ---------------------------------------------- */
/*
#990000 = The red used in the "B" of BusinessBay
#999999 = The gray used in the "b" of Bay
#CCCC66 = Tan used in various places
#A43907 = LeftHeaderRed
#E3E3C1 = SubHeaderTan
#EFEFCC = ContentTan
#000066 = Dark Blue
#660000 = maroon 
/*
header,main, and footer are inside "container"
and positioned "absolute" to div-container. 
divisions inside each division are absolute to
that division

<----------------- 720 px ------------------->
---------------------------------------------- container  height 600px
||------------------------------------------||
||header                                    || header height 90px
||------------------------------------------||
||------------------------------------------||
||main                                      ||
||                                          ||
||                                          ||  
||                                          || main height 495px
||                                          ||
||                                          ||
||                                          ||
||------------------------------------------||
||------------------------------------------||
||footer                                    || footer height 15px
||------------------------------------------||
----------------------------------------------
*/
/* 2 columns inside main */


/* start main left*/

#div-mainleft{position:absolute;top:80px;left:10px;width:345px;height:400px;color:black;}/*border:solid 2px gray;*/
/* start right*/
#div-mainright{position:absolute;top:80px;left:365px;width:345px;height:400px;color:black;}/*border:solid 2px gray;*/




