﻿ /* Used with Ellipsis class to force overflow-text to be hidden */
table.FixedLayout {
  table-layout: fixed;
}

 /* Cut-Off overflowing text and add ellipsis (...) 
    If applied to TD/TH, you must also apply the 
    FixedLayout class to the corresponding table 
    Source: http://www.blakems.com/archives/000077.html
*/
.Ellipsis {
  text-overflow: ellipsis;
  overflow:hidden;
	white-space:nowrap;
}

 /* Text will not be line-broken by browser */
.NoWrap {
  white-space: nowrap;
}

 /* Used for cells which don't contain text (contain form-elements 
    only) and don't need so much left-/right-padding
    >>> NOT WORKING - please check and fix
*/
td.NonText {
  padding-left: 2px;
  padding-right: 2px;
  margin: 0px;
}

#WZOnSubmitWaitMessage {
  text-align: center;
  vertical-align: middle;
  padding: 5px;
  display: none;
  position: absolute;
  z-index: 99;
  width: 350px;
  height: auto;
  overflow: visible;
  top: 300px;
  left: 300px;
	background-color: #e35b00;
  color: White;
  font-weight: bold;
  border: 2px solid black;
  filter: alpha(opacity=95);
}

div.LivePersonChatFeature {
  /*
  border: 2px groove;
  background-color: #ff0000;
  background-image: url("https://server.iad.liveperson.net/hc/18824717/?cmd=repstate&site=18824717&channel=web&&ver=1&category=en;woman;6");
  background-repeat: no-repeat;
  background-position: center;
*/
}

/*
This class resulted form the wishes of ticket# 2101
The links should be allways highlighted and bold.
*/
a.AlwaysHighlight:link, a.AlwaysHighlight:visited {
  font-weight:bold;
  color: #e35b00;
}
a.AlwaysHighlight:hover {
  text-decoration: underline;
}
/*
This class resulted from the need to position elements 
(Buttons) on the right side...
*/
div.AlignContentRight {
  text-align:right;  
}
span.Faint {
  color: Silver;
}
td.Faint, td span.Faint {
  /*background-color: #f2f2f2;*/
  color: Gray;
}
th.Faint, th span.Faint
{
	/*background-color: #cecece;*/
  color: Gray;
}