﻿#imageSlideshowHolder
{
  /* This is a CSS hack in order to get a nice look in IE 5.5 and lower  		  In these versions of Internet Explorer, we need to add borders and padding to the width. In this example, we have a 3 pixel 		  border on all sides. This means that the width in IE5.5 should be 606 pixels(600 + border 3px on the left + border 3 px on the right). Height 		  should be set to 456 pixels(450 + 3 +3). IE 5.5 will ignore the width attributes below the first line. These will be applied to other browsers. 		  */ /* CSS HACK */
  width: 606px; /* IE 5.x */
  width: /* */ /**/ 600px; /* Other browsers */
  width: /**/ 600px; /* CSS HACK */
  height: 120px; /* IE 5.x */
  height: /* */ /**/ 114px; /* Other browsers */
  height: /**/ 114px; /*   		left: 180px; 		  background-color:#000; 		  border:0px solid #317082; 		  */
  position: relative; /* Never change this value */
}
.imageInGallery
{
  width: 600px;
  height: 114px; /* background-color:#000; */ /* Never change these 3 value */
  left: 0px;
  top: 0px;
  position: absolute;
}
#imageSlideshowHolder img
{
  /* position:absolute; */
}

/* Start layout CSS */
.tableWidget_headerCell, .tableWigdet_headerCellOver, .tableWigdet_headerCellDown
{
  /* General rules for both standard column header and mouse on header of sortable columns */
  cursor: pointer;
  border-bottom: 3px solid #C5C2B2;
  border-right: 1px solid #ACA899;
  border-left: 1px solid #FFF;
  background-color: #ECE9D8;
}

.tableWidget_headerCell
{
  /* Standard column header */
  border-top: 2px solid #ECE9D8;
}

.tableWigdet_headerCellOver
{
  /* Rollover on sortable column header */
  border-top: 2px solid #FFC83C;
}
.tableWidget tbody .tableWidget_dataRollOver
{
  /* Rollover style on mouse over (Data) */
  background-color: #FFF; /* No mouseover color in this example - specify another color if you want this */
}

.tableWigdet_headerCellDown
{
  border-top: 2px solid #FFC83C;
  background-color: #DBD8C5;
  border-left: 1px solid #ACA899;
  border-right: 1px solid #FFF;
}
.tableWidget td
{
  margin: 0px;
  padding: 2px;
  border-bottom: 1px solid #EAE9E1; /* Border bottom of table data cells */
}
.tableWidget tbody
{
  background-color: #FFF;
}
.tableWidget
{
  /*  font-family:arial; */
  font-size: xx-small;
  width: 200px;
}

/* End layout CSS */

div.widget_tableDiv
{
  border: 1px solid #ACA899; /* Border around entire widget */
  height: 400px;
  overflow: auto;
  overflow-y: auto;
  overflow: -moz-scrollbars-vertical;
  width: 200px;
}

html > body div.widget_tableDiv
{
  overflow: hidden;
  width: 200px;
}

.tableWidget thead
{
  position: relative;
}
.tableWidget thead tr
{
  position: relative;
  top: 0px;
  bottom: 0px;
}

.tableWidget .scrollingContent
{
  overflow-y: auto;
  overflow: -moz-scrollbars-vertical;
  width: 100%;
}

