/*Делаем чтобы макет прижимался вплотную, т.е. убираем любые возможные оступы*/
body,html{
margin:0px;
padding:0px;
}
/*Стиль общей таблицы. Если нужен резиновый макет, нужно ширину задать 100% и убрать рамку, т.к. с ней будет некрасиво*/
#container {
width:800px;
height:100%;
border:1px solid gray;
margin:0 auto;
}
/*Делаем нужное выравнивание в ячейках таблицы*/
#container  td{
vertical-align:top
}
/*Стиль шапки сайта*/
#header {
background:url(/img/1.JPG);
border-bottom:1px solid black;
height:180px;
}



/*  Стили для внутренней таблицы */

#maket {
height:100%;
width:100%;
}
/*Стили левой колонки(там где обычно меню)*/
#left_column{
width:180px;
background-color:#FEC08F;
}
#left_column a:link {
color: blue ;
} 
#left_column a:visited {
color:gray;
}
#left_column a:hover { 
color:red ; 
text-decoration:none;
}
#left_column a:active {
color:green; 
text-decoration:none;
}
/*Стили  колонки с основным содержанием*/
#main_column {
padding:10px;
font-size:x-large;
}
/*  Конец стилей для внутренней таблицы        */

/*стиль подвала сайта*/
#footer{
background-color:#999999;
border-top:1px solid black;
height:15px; 
}