/* FTP FORM */

.ftp-nav {
	display: block;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	margin-top: 10px;
	margin-bottom: 20px;
	overflow: auto;
	zoom: 1;
}

.ftp-nav:before,
.ftp-nav:after {
	content: '';
	display: table;
}

.ftp-nav:after { clear: both; }

.ftp-nav h2 {
	float: left;
	font-size: 1rem;
	color: #1d1d1b;
	font-weight: bold;
	margin: 0;
	padding: 0;
	line-height: 50px;
	text-transform: uppercase;
}

.ftp-nav .logout {
	float: right;
	line-height: 50px;
}

.ftp-nav h2 .lighter {
	margin-left: 10px;
	font-weight: 300;
}

#login-error p {
	margin-bottom: 10px;
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	color: #db3e3e;
}

#login-form {
	margin-bottom: 40px;
}

#login-form label {
	display: block;
	font-size: 16px;
	line-height: 24px;
	color: #999;
}

#login-form input[type="text"],
#login-form input[type="password"] {
	display: block;
	width: 100%;
	padding: 7px 10px;
	font: inherit;
	font-size: 16px;
	line-height: 20px;
	border: 1px solid #e5e5e5;
	outline: 0;
}

#login-form input[type="text"]:hover,
#login-form input[type="password"]:hover {
	border-color: #ccc;
}

#login-form input[type="text"]:focus,
#login-form input[type="password"]:focus {
	border-color: #bbb;
}

#login-form input[type="submit"] {
	display: block;
	height: 36px;
	margin-top: 24px;
	padding: 0 20px;
	font: inherit;
	font-size: 16px;
	font-weight: 300;
	line-height: 36px;
	color: white;
	border: 0;
	background: #444;
	cursor: pointer;
}

#login-form input[type="submit"]:hover,
#login-form input[type="submit"]:focus {
	background: #555;
	outline: 0;
}

#login-form input[type="submit"]:active {
	background: #333;
}

.ftp-files {
	margin: 20px 0;
}

.ftp-file {
	float: left;
	width: 32%;
	margin-right: 2%;
	font-weight: 300;
	list-style: none;
}

.ftp-file:nth-child(3n),
.ftp-file.row-last {
	margin-right: 0;
}

.ftp-file:after {
	content: '-';
	display: block;
	margin: 10px 0;
	font-weight: normal;
}

.ftp-file a {
	display: block;
	margin-bottom: 8px;
	font-size: 18px;
	font-weight: 400;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}