<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Message boxes */

div.msgBlackBox {
  position:fixed;
  background-color: rgba(0,0,0,0.7);
  width:350px;
  padding:10px;
  border-radius: 25px;
  margin: auto;
  z-index: 20;

  margin-left:-175px;
  left:50%;

  margin-top:-125px;
  top:50%;

  box-shadow: 0 0 45px #000; 
}

div.msgBlackBoxGlyph {
  margin:auto;
  width: 128px;
  height: 128px;
}

div.msgBlackBoxText {
  color:#FFF;
  font-size:16pt;
  text-align: center;
  font-family: 'Roboto Condensed', sans-serif;
}

div.msgBlackBoxInput {
  text-align: center;
  padding:6px;
}

div.msgBlackBoxInput&gt;input {
  text-align: center;
  font-size:16pt;
  width:60px;
  padding:3px;
}

div.msgBlackBoxNavigation {
  margin-top:5px;
  margin-bottom:5px;
  text-align: center;
}

/* Message box icons */

div.msgGlyphCheck {
  background: url("../img/icons/msgbox/check.png") no-repeat;
}

div.msgGlyphError {
  background: url("../img/icons/msgbox/error.png") no-repeat;
}

div.msgGlyphInfo {
  background: url("../img/icons/msgbox/info.png") no-repeat;
}

div.msgGlyphQuestion {
  background: url("../img/icons/msgbox/question.png") no-repeat;
}

div.msgGlyphSave {
  background: url("../img/icons/msgbox/save.png") no-repeat;
}

div.msgGlyphStar {
  background: url("../img/icons/msgbox/star.png") no-repeat;
}

div.msgGlyphUser {
  background: url("../img/icons/msgbox/user.png") no-repeat;
}

/* Input buttons */
a.msgButton {
	display: inline-block;
	zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */
	*display: inline;
	vertical-align: baseline;
	margin: 0 2px;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font: 14px/100%;
	padding: .4em 1em .4em;
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
	-webkit-border-radius: .5em; 
	-moz-border-radius: .5em;
	border-radius: .5em;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
}

a.msgButton:hover {
	text-decoration: none;
}

a.msgButton:active {
	position: relative;
	top: 1px;
}

a.msgButtonWhite {
  color: #606060;
  border: solid 1px #b7b7b7;
  background: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
  background: -moz-linear-gradient(top,  #fff,  #ededed);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed');
}

a.msgButtonWhite:hover {
  background: #ededed;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dcdcdc));
  background: -moz-linear-gradient(top,  #fff,  #dcdcdc);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dcdcdc');
}

a.msgButtonWhite:active {
  color: #999;
  background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));
  background: -moz-linear-gradient(top,  #ededed,  #fff);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#ffffff');
}

span.msgButtonText {
  font-size:14pt;
}</pre></body></html>