| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 
 | #putCenter {
   width: 620px;
   margin-left: auto;
   margin-right: auto;
}
#divLeftShadow {
   width: 10px;
   float: left;
   background-image: url(images/left.jpg);
   background-repeat: repeat-y;
 height: 575px;
}
#divRightShadow {
   float:right;
 height: 575px;
   width: 10px;
   background-image: url(images/right.jpg);
   background-repeat: repeat-y;
}
#divBgTop {
   background-image: url(images/top.jpg);
   background-repeat: repeat-x;
   border: 1px solid red;
}
#divBgBottom {
   background-image: url(images/bottom.jpg);
   background-repeat: repeat-x;
}
#divHead {
   margin: 0 10px 0 10px;
 padding: 10px;
   background-color: white;
}
#divMenu {
 background: #A3C6E5;
 text-align: center;
}
#noMarge {
   margin: 0;
   padding: 0;
}
#divContent {
   background: white;
   padding: 10px;
}
#headTitle {
 color: orange;
 font-size: 13px;
 font-weight: 800;
} |