﻿/*stili per layout*/
a:hover, a:visited, a:active, a:focus {
	text-decoration: none;
}

body {
	background: url(images/gradiente_marrone.png) repeat-y #362726;
	height: 100%;
}

table td {
	color: #fff;
}

#maincontainer {
	height: 100%;
	width: 100%; /*Width of main container*/
	margin: 0 auto; /*Center container on page*/
}

#contentwrapper {
	float: left;
	width: 100%;
}

#contentcolumn {
	margin-left: 400px; /*Set left margin to LeftColumnWidth*/
}

#leftcolumn {
	float: left;
	width: 400px; /*Width of left column*/
	margin-left: -100%;
}

#logo {
	display: block;
	background: url(images/logo.png) left no-repeat #fff;
	height: 90px;
}

.header {
	background: url(images/gradiente_rosso.png) repeat-y #D9001A;
	height: 90px;
	margin-bottom: 20px;
}

	.header h1 {
		display: inline;
		margin: 0 50px;
		padding: 0;
		color: #fff;
		border-bottom: solid 24px #fff;
		line-height: 91px;
	}

.inner-content {
	margin: 20px 50px;
}

ul.menu {
	border-left: solid 10px #D9001A;
}

	ul.menu a {
		color: #fff;
	}

		ul.menu a:hover, ul.menu a:active, ul.menu a:focus {
			color: #362726;
		}

.modal-content,
.btn,
.pagination > li:first-child > a,
.pagination > li:first-child > span,
.pagination > li:last-child > a,
.pagination > li:last-child > span {
	border-radius: 0;
}


/*stili generici*/
i.circle {
	padding: 5px 7px;
	display: inline-block;
	border-radius: 30px;
	background: #fff;
	color: #000;
}

#loaderDiv {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1100;
	background-color: white;
	opacity: .6;
}

.fileUpload {
	position: relative;
	overflow: hidden;
	margin: 10px;
}

	.fileUpload input.upload {
		position: absolute;
		top: 0;
		right: 0;
		margin: 0;
		padding: 0;
		font-size: 20px;
		cursor: pointer;
		opacity: 0;
		filter: alpha(opacity=0);
		height: 50px;
	}

	.fileUpload i {
		margin-top: 7px;
	}

	.fileUpload.sized {
		min-width: 200px;
	}

.btn-circle {
	width: 30px;
	height: 30px;
	text-align: center;
	padding: 6px 0;
	font-size: 12px;
	line-height: 1.428571429;
	border-radius: 15px;
	border: none;
	background: #000;
	color: #fff;
}

	.btn-circle.btn-lg {
		width: 50px;
		height: 50px;
		padding: 10px 16px;
		font-size: 18px;
		line-height: 1.33;
		border-radius: 25px;
		border: none;
		background: #000;
		color: #fff;
	}

.iconSize {
	width: 150px;
	height: 150px;
}

.bigIconSize {
	width: 250px;
	height: 250px;
}

.modal-full {
	width: 99%;
	height: 99%;
	margin: 10px auto;
}

.ajax-loader {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -32px; /* -1 * image width / 2 */
	margin-top: -32px; /* -1 * image height / 2 */
	display: block;
}

.button-margin {
	margin-right: 20px;
}

.pagination > li > a,
.pagination > li > span {
	color: #362726;
}

	.pagination > li > a:hover,
	.pagination > li > span:hover,
	.pagination > li > a:focus,
	.pagination > li > span:focus {
		color: #362726;
	}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
	background-color: #928383;
	border-color: #928383;
}



.modal-content .modal-header {
	background-color: #A41D23;
	border-left: solid 10px #fff;
	color: #fff;
	border-bottom: none;
}
/*stili visualizzazione icone custom*/

ul.customIcons {
	list-style-type: none;
}

	ul.customIcons li {
		float: left;
		margin: 15px;
		position: relative;
	}

.imageContainer a {
	color: #fff;
}

.imageContainer .image {
	display: block;
	position: relative;
}

.imageContainer .overlay {
	display: none;
}

.imageContainer:hover .overlay {
	position: absolute;
	display: block;
	right: 30px;
	top: 0;
}

	.imageContainer:hover .overlay .icon {
		display: block;
		float: left;
		margin-left: 5px;
	}

.screenBackground {
	width: 1000px;
	background: #514545;
	padding: 0px 50px;
	overflow: auto;
}

.cupHolder {
	background: url('images/cupHolder.png') repeat-x bottom;
	margin-top: 50px;
}


/*stili per navigazione in fading*/
a:hover {
	text-decoration: none;
}

.view-container {
	position: relative;
}

.view-frame.ng-enter, .view-frame.ng-leave {
	background: white;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.view-frame.ng-enter {
	-webkit-animation: 0.5s fade-in;
	-moz-animation: 0.5s fade-in;
	-o-animation: 0.5s fade-in;
	animation: 0.5s fade-in;
	z-index: 100;
}

.view-frame.ng-leave {
	-webkit-animation: 0.5s fade-out;
	-moz-animation: 0.5s fade-out;
	-o-animation: 0.5s fade-out;
	animation: 0.5s fade-out;
	z-index: 99;
}

@keyframes fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-moz-keyframes fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-webkit-keyframes fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fade-out {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@-moz-keyframes fade-out {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@-webkit-keyframes fade-out {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.languageLink {
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 1;
	border: solid 1px #fff;
}

.username {
	position: absolute;
	right: 80px;
	top: 15px;
	z-index: 1;
	text-align:right;
	color: #fff;
	font-weight: bold;
}