/*
   This defines the new user interface for ZendTo version 4 and above.
   Please do not edit this file, but instead over-ride the definitions
   in the local.css file.
*/

body {
	font-family: "Helvetica Neue", Helvetica, Verdana, Arial, sans-serif;
	background-repeat: repeat;
	background-image: url(../images/swish/background.png);
	background-color: #cbcccd;
	font-size: 10pt;
	margin:0;
}

a {
	color: #67709c;
	text-decoration: none;
}

h4 {
	font-size:12pt;
}

label {
	font-weight: bold;
}

#logo {
	height: 60px;
	float:right;
	padding-left:30px;
	padding-right:30px;
	line-height: 60px;
	text-decoration: none;
}

.content a {
	font-weight: bold;
}

.content {
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
	margin-top:30px;
}

#container {
	clear: both;
	background: white;
	border-radius: 15px;
	-moz-border-radius: 15px;
	padding-top:20px;
	padding-left:20px;
	padding-right:20px;
	padding-bottom:30px;
	min-height: 250px;
	-moz-box-shadow: 0px 1px 5px #7f7e7e;
	box-shadow:0px 1px 5px #7f7e7e;
	color: #162637;
}

.round {
	border-radius: 10px;
	-moz-border-radius: 10px;
}

#topMenu {
	float:left;
	height:60px;
	padding-right:30px;
	font-size: 14pt;
}

#topMenu ul, #topMenu li {
	display: block;
}

#topMenu ul {
	height:60px;
	margin:0;
	margin-left:20px;
	padding-left:0px;
}

#topMenu li {
	float:left;
	width: 100px;
	height:60px;
	text-align: center;
	line-height:60px;
}

#topMenu li.selected {
	background-repeat: no-repeat;	
	background-image: url(../images/swish/selected_mask.png);	
}

#topMenu li a {
	color: #4f4e4e;
	display:block;
	height:60px;
	width:100px;
	font-weight: bold;
	text-decoration: none;
	text-shadow: #ececec 1px 1px 0;
}

#loginForm {
	padding:5px;
	display:block;
	border-color: #9eadba;
	border-style: solid;
	border-width: 1px;
	border-top: 0px;
	width:560px;
	height: 37px;
	float:left;
	position: absolute;
	margin-right: 10px;
	top:90px;
	background: #fcffe7;
	border-radius: 0px 0px 5px 5px;
	-moz-border-radius: 0px 0px 5px 5px;
	clear: both;
}

#loginForm input[type="text"], #loginForm input[type="password"]{
	border-radius: 5px;
	-moz-border-radius: 5px;
	border:1px solid #465773;
	height:20px !important;
	width:120px !important;
	margin-bottom:5px;
	margin-right:10px;
	float:left;
}

input[type="file"] {
	margin-right:5px;
	
}

#loginForm label {
	height: 32px;
	line-height:32px;
	display:block;
	margin-bottom:5px;
	float:left;
	margin-right:10px;
}

#loginForm input[type="submit"]{
	float:left;
	margin-right:0px;
	text-align: center;
}

#progressouter {
    width:100%;
    height:30px;
    background: #e4dfdf;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-box-shadow: inset 0 2px 5px #b8b4b4;
    box-shadow: inset 0 2px 5px #b8b4b4;
    -moz-box-shadow: inset 0 2px 5px #b8b4b4;
    clear: both;
}

#progressouter #progressinner {
    height:30px;
    background: #0072cf;
    -moz-border-radius: 15px 0px 0px 15px;
    -webkit-border-radius: 15px 0px 0px 15px;
    border-radius: 15px 0px 0px 15px;
    -webkit-box-shadow: inset 0 -3px 5px #004c8a;
    box-shadow: inset 0 -3px 5px #004c8a;
    -moz-box-shadow: inset 0 -3px 5px #004c8a;
}

#uploadDialog {
	background-color: #fafafa;
	width:400px;
	border: 1px solid #a1b6c3;
	border-radius: 5px;
	margin-right:auto;
	margin-left:auto;
	text-align: center;
	position: absolute;
	
	-moz-box-shadow: 0px 1px 5px #7f7e7e;
	box-shadow:0px 1px 20px #7f7e7e;
	display: none;
}

#uploadDialog #progressContainer {
	padding-bottom:20px;
}

#uploadDialog h1 {
	margin-top:0;
	display:block;
	background: #eff3f7;
	border-bottom: 1px solid #d0e1ea;
	padding-top: 10px;
	padding-bottom:10px;
}

#percentText {
	font-size: 12pt;
	font-weight: bold;
	color: #293753;
	margin-top:10px;
	visibility:hidden;
	width:100%;
	text-align: center;
}

.homeButtons a.UD_textbutton, a.UD_textbutton_admin {
	width:150px;
}

a.UD_textbutton, a.UD_textbutton_admin, .UD_textbutton_admin, input[type="submit"], input[type="button"], button {
	float:left;
	margin-bottom:10px;
	border: 1px solid #1271a7;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	padding:5px;	
	text-decoration: none;
	margin-right:10px;
	color: white;
	
	background: #1f88c1; /* old browsers */
	background: -moz-linear-gradient(top, #41ace2 0%, #1f88c1 100%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#41ace2), color-stop(100%,#1f88c1)); /* webkit */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#41ace2', endColorstr='#1f88c1',GradientType=0 ); /* ie */
	
	box-shadow:1px 1px 0px #d2cac7;
	-moz-box-shadow: 1px 1px 1px #d2cac7;
	-webkit-box-shadow:1px 1px 2px #d2cac7;
	text-shadow: 0px -1px 1px #585858;
	font-size:11pt;
	font-weight: bold;
	background-clip: padding-box; /* JKF */
	background-origin: padding-box; /* JKF */
}

a.UD_textbutton:hover, input[type="submit"]:hover, input[type="button"]:hover, button:hover {
	background: #62c0f0; /* old browsers */
	background: -moz-linear-gradient(top, #62c0f0 0%, #2c9dda 100%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#62c0f0), color-stop(100%,#2c9dda)); /* webkit */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#62c0f0', endColorstr='#2c9dda',GradientType=0 ); /* ie */
}

input[type="submit"][disabled], input[type="button"][disabled], button[disabled], .greyButton{
	float:left;
	margin-bottom:50px;
	border: 1px solid #636363;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding:5px;	
	text-decoration: none;
	margin-right:10px;
	color: white;
	
	background: #b4b2b2; /* old browsers */
	background: -moz-linear-gradient(top, #b4b2b2 0%, #6f6f6f 100%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b4b2b2), color-stop(100%,#6f6f6f)); /* webkit */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b4b2b2', endColorstr='#6f6f6f',GradientType=0 ); /* ie */
	
	box-shadow:1px 1px 0px #333333;
	-moz-box-shadow: 1px 1px 1px #727070;
	-webkit-box-shadow:1px 1px 2px #5d5d5d;
	text-shadow: 0px 0px 2px #2a2a2a;
	font-size:11pt;
	font-weight: bold;
}

a.UD_textbutton, a.UD_textbutton_admin, .UD_textbutton_admin {
	text-align: center;
}

a.UD_textbutton_admin, .UD_textbutton_admin {
	background: #d64545; /* old browsers */
	background: -moz-linear-gradient(top, #d64545 0%, #b32222 100%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d64545), color-stop(100%,#b32222)); /* webkit */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d64545', endColorstr='#b32222',GradientType=0 ); /* ie */
	border:#9c0b09 1px solid;
}

a.UD_textbutton_admin:hover, .UD_textbutton_admin:hover {
	/* JKF changed d52626 to d50606 as it looks better */
	background: #d50606; /* old browsers */
	background: -moz-linear-gradient(top, #e84b4b 0%, #d50606 100%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e84b4b), color-stop(100%,#d50606)); /* webkit */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d50606', endColorstr='#e84b4b',GradientType=0 ); /* ie */
}

.emailButton {
	background: #3fb8e5;
	border-radius: 4px;
	-moz-border-radius: 4px;
	border: 1px solid #2692b8;
	padding:3px 5px 5px 5px;
	color: white;
	font-size: 10pt;
	text-shadow: 0px 0px 2px #2a2a2a;
	font-weight: bold;
	text-align: center;
	float:left;
	width: auto;
	margin-right:10px;
	cursor: default;
}

.emailButton a.remove {
	font-weight: bold;
	margin-left:10px;
	color: white;
	cursor: pointer;
}

.emailButton a.remove img {
	top: 4px;
	position: relative;
}

#emailHolder, #fromHolder, .infoBox {
	border-color: #2b3e89;
	border-width: 1px;
	border-style: solid;
	border-radius: 5px;
	padding:2px;
	width: 100%;
	float:left;
	min-height: 22px;
	clear:both;
}

#emailHolder {min-height:28px;}

#fromHolder {
	line-height: 24px;
	padding-left:5px;
}

#fromHolder #fromName {
	font-weight: bold;
}

#fromHolder #fromEmail {

}

#fromHolder #fromOrg {
	font-style: italic;
}

#fromHolder span {
	margin-right: 5px;
}

.UILabel {
	float:left;
	font-weight: bold;
	margin-right:10px;
	line-height:26px;
	width:50px;
	text-align: left;
}

input[type="text"], textarea, input[type="password"] {
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border:1px solid #465773;
	padding:6px;
	box-shadow: -1px -1px 20px #d3e0eb;

}

.fright {
	float:right;
}

.clear {
	clear:both;
}

.center {
	text-align: center;
	margin-top:10px;
}

.center button {
	float: none;
}

a img {
	border:0;
}

#emailHolder a#addRecipients {
	display: block;
	float:left;
	margin-top:7px;
	margin-left:10px;
	width:20px;
	height:16px;
}

#addNewRecipient {
	display: none;
}

#sendMultiple {
	display: none;
}

#commentsArea {
	margin:20px;
	text-align: center;
}

.row {
	background-color: #e3e3e3;
}

.rowalt {

}

thead {
	font-weight: bold;
	font-size: 12pt;
}

/* Specific customisation for ZendTo (i.e. change for something else) */
#logo {
	color:#a5abb0;
	font-size:40pt;
	line-height:40px;
	font-weight: bold;
	text-shadow: 1px 1px 0px #fbfbfb;
}

#logo a {
	color: #a5abb0;
}

#footer {
	color: #484848;
	margin-top: 15px;
	text-align: center;
}

#error {
	background-color: #ffe6b5;
	border-radius: 10px;
	-moz-border-radius: 10px;
	padding:10px;
}

#buttonHolder button {
	margin-bottom:10px;
}


/* Facebox overrides */

#facebox h1 {
	text-align: center;
}

#facebox .customHeader {
	position: absolute;
	height:22px;
	color: white;
	font-weight: bold;
}

#facebox .customHeader h1 {
	font-size: 12pt;
	margin:0;
	margin-top:4px;
	margin-left:10px;
}

/* other stuff */
#progress {
	visibility:hidden;
	width:450px;
	height:75px;
	padding:0px;
	margin: 5px 0px 0px 0px;
	border:2px solid #C01010;
	background:#FFF0F0;
	color:#C01010;
	text-align:justify;
}

#overallFileSize {
	text-align:center;
	margin-top:10px;
	font-size:12pt;
}

#facebox .popup .content {
	display:block;
}

