﻿/* Mail list table */
.mail-list
{
	border-collapse: collapse;
	width: 100%;
	white-space: nowrap;
	background-color: #E8EEF7;
}

.mail-list td
{
	border-bottom: 1px solid #CCCCCC;
	empty-cells: show;
	height: 3.25ex;
	overflow: hidden;
	padding: 2px 6px 0 3px;
	vertical-align: middle;
	cursor: pointer;
}

/* Unreaded row */
.mail-list .unreaded {background-color: white;}

/* Checker column */
.mail-list .checker-col{width: 20px;}

/* Marker column */
.mail-list .marker-col{width: 20px;}

/* From column */
.mail-list .from-col{width: 27ex;}
.mail-list .unreaded .from {font-weight: bold;}

/* Subject column */
.mail-list .subject-col{}
.mail-list .unreaded .subject span {font-weight: bold;}

/* Attach column */
.mail-list .subject-col{width: 25px;}

/* Date column */
.mail-list .date-col{width: 10ex;}
.mail-list .unreaded .date span {font-weight: bold;}

/* Mail marker */
.marker i
{
	display: inline-block;
	width: 14px; height: 14px;
	background: url(../images/markers.png) no-repeat;
	zoom: 1; /* обычный layout fix для ИЕ6 */
	*display: inline; /* для ИЕ 6, 7 */
}
.marker .mark-0 {background-position: -90px 0;}
.marker .mark-1 {background-position: -75px 0;}
.marker .mark-2 {background-position: -60px 0;}
.marker .mark-3 {background-position: -45px 0;}
.marker .mark-4 {background-position: -30px 0;}
.marker .mark-5 {background-position: -15px 0;}
.marker .mark-6 {background-position: 0 0;}
.marker .mark-7 {background-position: 0 -15px;}
.marker .mark-8 {background-position: -15px -15px;}
.marker .mark-9 {background-position: -30px -15px;}
.marker .mark-10 {background-position: -45px -15px;}
.marker .mark-11 {background-position: -60px -15px;}
.marker .mark-12 {background-position: -75px -15px;}

