/*
    Description: 	CSS3 Tabs Left
    Author: 		Business Lab
    Version: 		1.0
*/
/*	--------------------------------------------------
	:: Body and Container
	-------------------------------------------------- */
	
    body{ 
	    background-image:url(../Images/BG.png); 
	    background-repeat:repeat;
    }
	
/*	--------------------------------------------------
	:: Tabs
	-------------------------------------------------- */
	
	.container{
        position:relative;
	    margin:30px auto;
	    width:960px;
	    border:none;
		height:auto;
		line-height:1;
	    padding:0;
    }
	
	.minimal-tabs{
        margin:0;
		padding:0;
    }
	
	.left{
        display:block;
		position:absolute;
		left:0;
    }
	
    .minimal-tabs > div.menu > input{
		position:relative;
        display:none;
	}

	.minimal-tabs > div.menu > label{ 
	    position:relative;
	    background-color:#434343;
        text-align:left;
		display:block;
		text-decoration:none;
		width:250px;
		cursor:pointer;
        font-style:normal; 
	    font-weight:normal; 
	    font-family:"PT Sans"; 
	    font-size:13px;
	    color:#fff;
		line-height:1;
		height:17px;
        padding:20px 0;
		-webkit-transition:background-color  0.4s linear;
		-moz-transition:background-color  0.4s linear;
		-o-transition:background-color  0.4s linear; 
		transition:background-color  0.4s linear; 
    }
	
	.minimal-tabs > div.menu > label:hover {
        background-color:#555;
    }

	.minimal-tabs > div.menu > label i{
		margin-left:25px;
    }
	
/*	--------------------------------------------------
	:: Sections
	-------------------------------------------------- */
	
	.minimal-tabs > div.menu > div.section-one,
    .minimal-tabs > div.menu > div.section-two,
    .minimal-tabs > div.menu > div.section-three,
    .minimal-tabs > div.menu > div.section-four,
    .minimal-tabs > div.menu > div.section-five,
    .minimal-tabs > div.menu > div.section-six,
    .minimal-tabs > div.menu > div.section-seven,
    .minimal-tabs > div.menu > div.section-eight,
    .minimal-tabs > div.menu > div.section-nine,
    .minimal-tabs > div.menu > div.section-ten,
	.minimal-tabs > div.menu > div.section-eleven	{
	    position:absolute;
	    width:680px;
		top:0;
		overflow:auto;
		opacity:0;
		left:100%;
		margin:0;
	    line-height:1;
		height:auto; /*	You can Put here the height for section if you want ( height:auto by default ) */
		padding:25px 10px;
		text-align:left;
	    background-color:#fff;
		border-left:5px solid #4abbed;
    }
	
/*	--------------------------------------------------
	:: Typography
	-------------------------------------------------- */
	
	.text-align-left{ text-align:left; }
	.text-align-center{ text-align:center; }
	.text-align-right{ text-align:right; }
	.text-align-justify{ text-align:justify; }

	.text-gray { color:#777; }
	.text-yellow { color:#ffb60f; }
    .text-red { color:#dc291e; }
    .text-blue { color:#4abbed; }
    .text-green { color:#66bc29; }
	.text-orange { color:#ff6418; }

	.highlight p, .highlight h4 { padding:0; text-align:justify; }
	.highlight-yellow { background-color:#ffb60f; color:#fff; margin:0; padding:2px 10px; }
	.highlight-red { background-color:#dc291e; color:#fff; margin:0; padding:2px 5px; }
	.highlight-blue { background-color:#4abbed; color:#fff; margin:0; padding:2px 5px; }
	.highlight-green { background-color:#66bc29; color:#fff; margin:0; padding:2px 5px; }
	.highlight-gray { background-color:#777; color:#fff; margin:0; padding:2px 5px; }
	.highlight-orange { background-color:#ff6418; color:#fff; margin:0; padding:2px 5px; }

	em { font-weight:normal; font-family:"PT Sans"; font-size:12px; color:#777; margin:0; padding:0; }
	p { font-weight:normal; font-family:"PT Sans"; font-size:12px; line-height:18px; color:#777; margin:0 0 17px 0; padding:0; }
	h1,h2,h3,h4,h5,h6 { font-weight:normal; font-family:"PT Sans"; color:#777; margin:0 0 20px 0; padding:0; }
    h1 { font-size:24px; }
    h2 { font-size:22px; }
    h3 { font-size:20px; }
    h4 { font-size:18px; }
    h5 { font-size:16px; }
    h6 { font-size:14px; }
	
/*	--------------------------------------------------
	:: ol & ul Lists
	-------------------------------------------------- */
	
    ol,ul{ margin:0; padding:0; list-style:none;  }
    ol li,ul li { width:100%; float:left; border:none; margin:0 0 12px 0;}
    ol li:hover, ul li:hover { border:none; }
    ol li a, ul li a { font-style:normal; font-weight:normal; font-family:"PT Sans"; font-size:12px; color:#777; line-height:0; padding:0; margin:0; }
    ol li a:hover, ul li a:hover { color:#555; }
	
/*	--------------------------------------------------
	:: Themes Label Blue
	-------------------------------------------------- */
	
    .minimal-tabs-blue > div.menu > input:checked + label {
        cursor:pointer;
        background-color:#4abbed;
		text-shadow:0 2px 1px #333;
    }
	
	.minimal-tabs-blue > div.menu > div.section-one,
    .minimal-tabs-blue > div.menu > div.section-two,
    .minimal-tabs-blue > div.menu > div.section-three,
    .minimal-tabs-blue > div.menu > div.section-four,
    .minimal-tabs-blue > div.menu > div.section-five,
    .minimal-tabs-blue > div.menu > div.section-six,
    .minimal-tabs-blue > div.menu > div.section-seven,
    .minimal-tabs-blue > div.menu > div.section-eight,
    .minimal-tabs-blue > div.menu > div.section-nine,
    .minimal-tabs-blue > div.menu > div.section-ten,
	.minimal-tabs-blue > div.menu > div.section-eleven{
	    border-left:5px solid #4abbed;
    }
	
/*	--------------------------------------------------
	:: Themes Label Green
	-------------------------------------------------- */	
	
	.minimal-tabs-green > div.menu > input:checked + label {
        cursor:pointer;
        background-color:#66bc29;
		text-shadow:0 2px 1px #333;
    }
	
	.minimal-tabs-green > div.menu > div.section-one,
    .minimal-tabs-green > div.menu > div.section-two,
    .minimal-tabs-green > div.menu > div.section-three,
    .minimal-tabs-green > div.menu > div.section-four,
    .minimal-tabs-green > div.menu > div.section-five,
    .minimal-tabs-green > div.menu > div.section-six,
    .minimal-tabs-green > div.menu > div.section-seven,
    .minimal-tabs-green > div.menu > div.section-eight,
    .minimal-tabs-green > div.menu > div.section-nine,
    .minimal-tabs-green > div.menu > div.section-ten,
	.minimal-tabs-green > div.menu > div.section-eleven{
	    border-left:5px solid #66bc29;
    }
	
/*	--------------------------------------------------
	:: Themes Label Red
	-------------------------------------------------- */
	
	.minimal-tabs-red > div.menu > input:checked + label {
        cursor:pointer;
        background-color:#dc291e;
		text-shadow:0 2px 1px #333;
    }
	
	.minimal-tabs-red > div.menu > div.section-one,
    .minimal-tabs-red > div.menu > div.section-two,
    .minimal-tabs-red > div.menu > div.section-three,
    .minimal-tabs-red > div.menu > div.section-four,
    .minimal-tabs-red > div.menu > div.section-five,
    .minimal-tabs-red > div.menu > div.section-six,
    .minimal-tabs-red > div.menu > div.section-seven,
    .minimal-tabs-red > div.menu > div.section-eight,
    .minimal-tabs-red > div.menu > div.section-nine,
    .minimal-tabs-red > div.menu > div.section-ten,
	.minimal-tabs-red > div.menu > div.section-eleven	{
	    border-left:5px solid #dc291e;
    }
	
/*	--------------------------------------------------
	:: Themes Label Yellow
	-------------------------------------------------- */
	
	.minimal-tabs-yellow > div.menu > input:checked + label {
        cursor:pointer;
        background-color:#ffb60f;
		text-shadow:0 2px 1px #333;
    }
	
	.minimal-tabs-yellow > div.menu > div.section-one,
    .minimal-tabs-yellow > div.menu > div.section-two,
    .minimal-tabs-yellow > div.menu > div.section-three,
    .minimal-tabs-yellow > div.menu > div.section-four,
    .minimal-tabs-yellow > div.menu > div.section-five,
    .minimal-tabs-yellow > div.menu > div.section-six,
    .minimal-tabs-yellow > div.menu > div.section-seven,
    .minimal-tabs-yellow > div.menu > div.section-eight,
    .minimal-tabs-yellow > div.menu > div.section-nine,
    .minimal-tabs-yellow > div.menu > div.section-ten,
	.minimal-tabs-yellow > div.menu > div.section-eleven {
	    border-left:5px solid #ffb60f;
    }
	
/*	--------------------------------------------------
	:: Themes Label Gray
	-------------------------------------------------- */
	
	.minimal-tabs-gray > div.menu > input:checked + label {
        cursor:pointer;
        background-color:#777;
		text-shadow:0 2px 1px #333;
    }
	
	.minimal-tabs-gray > div.menu > div.section-one,
    .minimal-tabs-gray > div.menu > div.section-two,
    .minimal-tabs-gray > div.menu > div.section-three,
    .minimal-tabs-gray > div.menu > div.section-four,
    .minimal-tabs-gray > div.menu > div.section-five,
    .minimal-tabs-gray > div.menu > div.section-six,
    .minimal-tabs-gray > div.menu > div.section-seven,
    .minimal-tabs-gray > div.menu > div.section-eight,
    .minimal-tabs-gray > div.menu > div.section-nine,
    .minimal-tabs-gray > div.menu > div.section-ten,
	.minimal-tabs-gray > div.menu > div.section-eleven {
	    border-left:5px solid #777;
    }
	
/*	--------------------------------------------------
	:: Themes Label Orange
	-------------------------------------------------- */
	
	.minimal-tabs-orange > div.menu > input:checked + label {
        cursor:pointer;
        background-color:#ff6418;
		text-shadow:0 2px 1px #333;
    }
	
	.minimal-tabs-orange > div.menu > div.section-one,
    .minimal-tabs-orange > div.menu > div.section-two,
    .minimal-tabs-orange > div.menu > div.section-three,
    .minimal-tabs-orange > div.menu > div.section-four,
    .minimal-tabs-orange > div.menu > div.section-five,
    .minimal-tabs-orange > div.menu > div.section-six,
    .minimal-tabs-orange > div.menu > div.section-seven,
    .minimal-tabs-orange > div.menu > div.section-eight,
    .minimal-tabs-orange > div.menu > div.section-nine,
    .minimal-tabs-orange > div.menu > div.section-ten,
	.minimal-tabs-orange > div.menu > div.section-eleven{
	    border-left:5px solid #ff6418;
    }
	
/*	--------------------------------------------------
	:: Multi-columns Inside Sections
	-------------------------------------------------- */
	
	.multi-column { border:none; outline:none; margin:0; padding:0; }
	.multi-column h4{ border-bottom:1px solid #ddd; padding:0 0 10px 0; margin:0 0 5px 0; }
	
    .column-one { float:left; width:660px; margin-left:10px; margin-right:10px; }
	.column-two { float:left; width:320px; margin-left:10px; margin-right:10px; }
	.column-three { float:left; width:206.66px; margin-left:10px; margin-right:10px; }
	.column-four { float:left; width:150px; margin-left:10px; margin-right:10px; }
	
/*	--------------------------------------------------
	:: Grid-Columns Inside Sections
	-------------------------------------------------- */
	
	.grid-column { border:none; outline:none; margin:0; padding:0; }
	.grid-column h4{ background-color:#eee; color:#bbb; font-size:14px; text-align:center; margin:0 0 25px 0; padding:10px 20px; }

    .grid-one { float:left; width:660px; margin-left:10px; margin-right:10px; }
	.grid-two { float:left; width:320px; margin-left:10px; margin-right:10px; }
	.grid-three { float:left; width:206.66px; margin-left:10px; margin-right:10px; }
	.grid-four { float:left; width:150px; margin-left:10px; margin-right:10px; }
	
/*	--------------------------------------------------
	:: Messages
	-------------------------------------------------- */
	
	.info-message { width:905px; padding:14px 0; background-color:#cceaf8; border-left:5px solid #4abbed; }
	.info-message p {font-size:14px; margin:0 0 0 10px; }
	.warning-message { width:905px; padding:14px 0; margin-top:9.5px; background-color:#fcf3a4; border-left:5px solid #ffb60f; }
	.warning-message p { font-size:14px; margin:0 0 0 10px; }
	.error-message { width:905px; padding:14px 0; margin-top:9.5px; background-color:#ffd7df; border-left:5px solid #dc291e; }
	.error-message p { font-size:14px; margin:0 0 0 10px; }
    .success-message { width:905px; padding:14px 0; margin-top:9.5px; background-color:#cbf3bb; border-left:5px solid #66bc29; }
    .success-message p{ font-size:14px; margin:0 0 0 10px; }	
	.download-message { width:905px; padding:14px 0; margin-top:9.5px; background-color:#ddd; border-left:5px solid #777; }
	.download-message p { font-size:14px; margin:0 0 0 10px; }
    .upload-message { width:905px; padding:14px 0; margin-top:9.5px; background-color:#fcc2a5; border-left:5px solid #ff6418; }
    .upload-message p{ font-size:14px; margin:0 0 0 10px; }	
	
/*	--------------------------------------------------
	:: InfoBox
	-------------------------------------------------- */
	
	.infobox-info { width:246.6px; padding:0 20px; margin-bottom:20px; background-color:#cceaf8; border-top:5px solid #4abbed; }
	.infobox-info h4{ border-bottom:1px solid #4abbed; padding:15px 0; }
	.infobox-info p { font-size:14px; margin:0 0 5px 0; padding:5px 0; }
	.infobox-warning { width:246.6px; padding:0 20px; margin-bottom:20px; background-color:#fcf3a4; border-top:5px solid #ffb60f; }
	.infobox-warning h4{ border-bottom:1px solid #ffb60f; padding:15px 0; }
	.infobox-warning p { font-size:14px; margin:0 0 5px 0; padding:5px 0; }
	.infobox-download { width:246.6px; padding:0 20px; margin-bottom:20px; background-color:#ddd; border-top:5px solid #777; }
	.infobox-download h4{ border-bottom:1px solid #777; padding:15px 0; }
	.infobox-download p { font-size:14px; margin:0 0 5px 0; padding:5px 0; }
	
	.infobox-error { width:246.6px; padding:0 20px; margin-bottom:20px; background-color:#ffd7df; border-top:5px solid #dc291e; }
	.infobox-error h4{ border-bottom:1px solid #dc291e; padding:15px 0; }
	.infobox-error p { font-size:14px; margin:0 0 5px 0; padding:5px 0; }
    .infobox-success { width:246.6px; padding:0 20px; margin-bottom:20px; background-color:#cbf3bb; border-top:5px solid #66bc29; }
	.infobox-success h4{ border-bottom:1px solid #66bc29; padding:15px 0; }
    .infobox-success p { font-size:14px; margin:0 0 5px 0; padding:5px 0; }	
	.infobox-upload { width:246.6px; padding:0 20px; margin-bottom:20px; background-color:#fcc2a5; border-top:5px solid #ff6418; }
	.infobox-upload h4{ border-bottom:1px solid #ff6418; padding:15px 0; }
    .infobox-upload p { font-size:14px; margin:0 0 5px 0; padding:5px 0; }
	
/*	--------------------------------------------------
	:: Progress Bars
	-------------------------------------------------- */	

    .progress { height:47px; padding:0; margin:0 0 9.5px 12.5px; overflow:hidden; background-color:#ddd; }
    .progress div { height:100%; }
	.progress p { font-size:14px; color:#fff; padding:14px 20px; }
    .striped div {
        background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
        background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        -webkit-animation: progress-bar 3s linear infinite;
	       -moz-animation: progress-bar 3s linear infinite;  
             -o-animation: progress-bar 3s linear infinite;  
	            animation: progress-bar 3s linear infinite;  
                                -webkit-background-size: 50px 50px;
                                   -moz-background-size: 50px 50px;
                                     -o-background-size: 50px 50px;
                                        background-size: 50px 50px;
    }
    .blue div{ 
        width:75%; 
        background-color: #4abbed;
        background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
        background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    }
	.green div{ 
        width:90%; 
        background-color: #66bc29;
        background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
        background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    }
	.red div{ 
        width:65%; 
        background-color: #dc291e;
        background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
        background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    }
	.yellow div{ 
        width:80%; 
        background-color: #ffb60f;
        background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
        background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    }
	.gray div{ 
        width:50%; 
        background-color: #777;
        background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
        background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    }
	.orange div{ 
        width:60%; 
        background-color: #ff6418;
        background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
        background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    }

/*	--------------------------------------------------
	:: Buttons
	-------------------------------------------------- */
	
	.button {
	    border:none;
        display:block;
	    color:#fff;
		margin:0 0 15px 0;
	    padding:6px 10px;
	    text-decoration:none;
	    font-size:14px;
		font-weight:bormal;
		cursor:pointer;
	    border-radius:2px;
	    -moz-border-radius:2px;
	    -webkit-border-radius:2px;
    }
	
	.button-blue {
	    background-color: #4abbed;
	    background-image: linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	    background-image: -o-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	    background-image: -moz-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	    background-image: -webkit-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	    background-image: -ms-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	}
	
	.button-green {
	    background-color: #66bc29;
	    background-image: linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	    background-image: -o-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	    background-image: -moz-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	    background-image: -webkit-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	    background-image: -ms-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	}
	
	.button-red {
	    background-color: #dc291e;
	    background-image: linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	    background-image: -o-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	    background-image: -moz-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	    background-image: -webkit-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	    background-image: -ms-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	}
	
	.button-orange {
	    background-color: #ff6418;
	    background-image: linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	    background-image: -o-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	    background-image: -moz-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	    background-image: -webkit-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	    background-image: -ms-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	}
	
	.button-yellow {
	    background-color: #ffb60f;
	    background-image: linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	    background-image: -o-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	    background-image: -moz-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	    background-image: -webkit-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	    background-image: -ms-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	}
	
	.button-gray {
	    background-color: #777;
	    background-image: linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	    background-image: -o-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	    background-image: -moz-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	    background-image: -webkit-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	    background-image: -ms-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.16) 0%);
	}
	
/*	--------------------------------------------------
	:: Forms
	-------------------------------------------------- */
	
	.form textarea,
    .form input[type="text"],
	.form input[type="password"],
    .form input[type="datetime"],
    .form input[type="date"],
    .form input[type="month"],
    .form input[type="time"],
    .form input[type="week"],
    .form input[type="number"],
    .form input[type="email"],
    .form input[type="url"],
    .form input[type="search"] {
	    border:1px solid #ccc; 
		width:100%;
		padding:9.5px;
		margin-bottom:10px;
		display:block;
	    outline:none;		
	    font-family:"PT Sans"; 
	    font-size:14px; 
	    color:#999; 
	    background:#fff; 
		font-style:normal;  
	    font-weight:normal;
	}
	
	.form textarea:focus,
    .form input[type="text"]:focus,
	.form input[type="password"]:focus,
    .form input[type="datetime"]:focus,
    .form input[type="date"]:focus,
    .form input[type="month"]:focus,
    .form input[type="time"]:focus,
    .form input[type="week"]:focus,
    .form input[type="number"]:focus,
    .form input[type="email"]:focus,
    .form input[type="url"]:focus,
    .form input[type="search"]:focus {  
		border:1px solid #bbb;
		color:#777;
	}
	
    .form input[type="button"],
	.form button[type="submit"],
	.form button[type="reset"],
    .form input[type="radio"],
    .form input[type="checkbox"] {  
		display:inline-block;
		cursor:pointer;
	}
	
/*	--------------------------------------------------
	:: Animations
	-------------------------------------------------- */

	@-webkit-keyframes menu {
       from { margin-left:0; opacity:0; }
       to { margin-left:25px; opacity:1; }
    }
		
	@-webkit-keyframes section {
       from { opacity:0; }
        to { opacity:1; }
    }
	
	@-webkit-keyframes progress-bar {
       from { background-position: 50px 0; }
       to { background-position: 0 0; }
    }

    @-moz-keyframes menu {
       from { margin-left:0; opacity:0; }
       to { margin-left:25px; opacity:1; }
    }
	
	@-moz-keyframes section {
       from { opacity:0; }
       to { opacity:1; }
    }
	
	@-moz-keyframes progress-bar {
       from { background-position: 50px 0; }
       to { background-position: 0 0; }
    }

    @-ms-keyframes menu {
       from { margin-left:0; opacity:0; }
       to { margin-left:25px; opacity:1; }
    }
	
	@-ms-keyframes section {
       from { opacity:0; }
       to { opacity:1; }
    }
	
	@-ms-keyframes progress-bar {
       from { background-position: 50px 0; }
       to { background-position: 0 0; }
    }

    @-o-keyframes menu {
       from { margin-left:0; opacity:0; }
       to { margin-left:25px; opacity:1; }
    }
	
	@-o-keyframes section {
       from { opacity:0; }
       to { opacity:1; }
    }
	
	@-o-keyframes progress-bar {
       from { background-position: 0 0; }
       to { background-position: 50px 0; }
    }

    @keyframes menu {
       from { margin-left:0; opacity:0; }
       to { margin-left:25px; opacity:1; }
    }	
	
	@keyframes section {
        from { opacity:0; }
        to { opacity:1; }
	} 
	
	@keyframes section {
       from { opacity:0; }
       to { opacity:1; }
    }
	
    @keyframes progress-bar {
       from { background-position: 50px 0; }
       to { background-position: 0 0; }
    }	

	.minimal-tabs > div.menu > input:checked + label i{
		-webkit-animation: menu 1.2s 1;
	       -moz-animation: menu 1.2s 1;  
             -o-animation: menu 1.2s 1;  
	            animation: menu 1.2s 1;
    }
	
	.minimal-tabs > div.menu > input:checked + label + div.section-one h1, .minimal-tabs > div.menu > input:checked + label + div.section-one h2,
	.minimal-tabs > div.menu > input:checked + label + div.section-one h3, .minimal-tabs > div.menu > input:checked + label + div.section-one h4,
	.minimal-tabs > div.menu > input:checked + label + div.section-one h5, .minimal-tabs > div.menu > input:checked + label + div.section-one h6,
	
	.minimal-tabs > div.menu > input:checked + label + div.section-two h1, .minimal-tabs > div.menu > input:checked + label + div.section-two h2,
	.minimal-tabs > div.menu > input:checked + label + div.section-two h3, .minimal-tabs > div.menu > input:checked + label + div.section-two h4,
	.minimal-tabs > div.menu > input:checked + label + div.section-two h5, .minimal-tabs > div.menu > input:checked + label + div.section-two h6,
	
	.minimal-tabs > div.menu > input:checked + label + div.section-three h1, .minimal-tabs > div.menu > input:checked + label + div.section-three h2,
	.minimal-tabs > div.menu > input:checked + label + div.section-three h3, .minimal-tabs > div.menu > input:checked + label + div.section-three h4,
	.minimal-tabs > div.menu > input:checked + label + div.section-three h5, .minimal-tabs > div.menu > input:checked + label + div.section-three h6,
	
	.minimal-tabs > div.menu > input:checked + label + div.section-four h1, .minimal-tabs > div.menu > input:checked + label + div.section-four h2,
	.minimal-tabs > div.menu > input:checked + label + div.section-four h3, .minimal-tabs > div.menu > input:checked + label + div.section-four h4,
	.minimal-tabs > div.menu > input:checked + label + div.section-four h5, .minimal-tabs > div.menu > input:checked + label + div.section-four h6,
	
	.minimal-tabs > div.menu > input:checked + label + div.section-five h1, .minimal-tabs > div.menu > input:checked + label + div.section-five h2,
	.minimal-tabs > div.menu > input:checked + label + div.section-five h3, .minimal-tabs > div.menu > input:checked + label + div.section-five h4,
	.minimal-tabs > div.menu > input:checked + label + div.section-five h5, .minimal-tabs > div.menu > input:checked + label + div.section-five h6,
	
	.minimal-tabs > div.menu > input:checked + label + div.section-six h1, .minimal-tabs > div.menu > input:checked + label + div.section-six h2,
	.minimal-tabs > div.menu > input:checked + label + div.section-six h3, .minimal-tabs > div.menu > input:checked + label + div.section-six h4,
	.minimal-tabs > div.menu > input:checked + label + div.section-six h5, .minimal-tabs > div.menu > input:checked + label + div.section-six h6,
	
	.minimal-tabs > div.menu > input:checked + label + div.section-seven h1, .minimal-tabs > div.menu > input:checked + label + div.section-seven h2,
	.minimal-tabs > div.menu > input:checked + label + div.section-seven h3, .minimal-tabs > div.menu > input:checked + label + div.section-seven h4,
	.minimal-tabs > div.menu > input:checked + label + div.section-seven h5, .minimal-tabs > div.menu > input:checked + label + div.section-seven h6,
	
	.minimal-tabs > div.menu > input:checked + label + div.section-eight h1, .minimal-tabs > div.menu > input:checked + label + div.section-eight h2,
	.minimal-tabs > div.menu > input:checked + label + div.section-eight h3, .minimal-tabs > div.menu > input:checked + label + div.section-eight h4,
	.minimal-tabs > div.menu > input:checked + label + div.section-eight h5, .minimal-tabs > div.menu > input:checked + label + div.section-eight h6,
	
	.minimal-tabs > div.menu > input:checked + label + div.section-nine h1, .minimal-tabs > div.menu > input:checked + label + div.section-nine h2,
	.minimal-tabs > div.menu > input:checked + label + div.section-nine h3, .minimal-tabs > div.menu > input:checked + label + div.section-nine h4,
	.minimal-tabs > div.menu > input:checked + label + div.section-nine h5, .minimal-tabs > div.menu > input:checked + label + div.section-nine h6,
	
	.minimal-tabs > div.menu > input:checked + label + div.section-ten h1, .minimal-tabs > div.menu > input:checked + label + div.section-ten h2,
	.minimal-tabs > div.menu > input:checked + label + div.section-ten h3, .minimal-tabs > div.menu > input:checked + label + div.section-ten h4,
	.minimal-tabs > div.menu > input:checked + label + div.section-ten h5, .minimal-tabs > div.menu > input:checked + label + div.section-ten h6,
	
	.minimal-tabs > div.menu > input:checked + label + div.section-eleven h1, .minimal-tabs > div.menu > input:checked + label + div.section-eleven h2,
	.minimal-tabs > div.menu > input:checked + label + div.section-eleven h3, .minimal-tabs > div.menu > input:checked + label + div.section-eleven h4,
	.minimal-tabs > div.menu > input:checked + label + div.section-eleven h5, .minimal-tabs > div.menu > input:checked + label + div.section-eleven h6 { 
		-webkit-animation: section 3s 1;
	       -moz-animation: section 3s 1;  
             -o-animation: section 3s 1;  
	            animation: section 3s 1;
	}
	
    .minimal-tabs > div.menu > input:checked + label + div.section-one p,
	.minimal-tabs > div.menu > input:checked + label + div.section-two p,
	.minimal-tabs > div.menu > input:checked + label + div.section-three p,
	.minimal-tabs > div.menu > input:checked + label + div.section-four p,
	.minimal-tabs > div.menu > input:checked + label + div.section-five p,
	.minimal-tabs > div.menu > input:checked + label + div.section-six p,
	.minimal-tabs > div.menu > input:checked + label + div.section-seven p,
	.minimal-tabs > div.menu > input:checked + label + div.section-eight p,
	.minimal-tabs > div.menu > input:checked + label + div.section-nine p,
	.minimal-tabs > div.menu > input:checked + label + div.section-ten p,
	.minimal-tabs > div.menu > input:checked + label + div.section-eleven p{
		-webkit-animation: section 3s 1;
	       -moz-animation: section 3s 1;  
             -o-animation: section 3s 1;  
	            animation: section 3s 1;
    }
	
	.minimal-tabs > div.menu > input:checked + label + div.section-one em,
	.minimal-tabs > div.menu > input:checked + label + div.section-two em,
	.minimal-tabs > div.menu > input:checked + label + div.section-three em,
	.minimal-tabs > div.menu > input:checked + label + div.section-four em,
	.minimal-tabs > div.menu > input:checked + label + div.section-five em,
	.minimal-tabs > div.menu > input:checked + label + div.section-six em,
	.minimal-tabs > div.menu > input:checked + label + div.section-seven em,
	.minimal-tabs > div.menu > input:checked + label + div.section-eight em,
	.minimal-tabs > div.menu > input:checked + label + div.section-nine em,
	.minimal-tabs > div.menu > input:checked + label + div.section-ten em,
	.minimal-tabs > div.menu > input:checked + label + div.section-eleven em{
		-webkit-animation: section 3s 1;
	       -moz-animation: section 3s 1;  
             -o-animation: section 3s 1;  
	            animation: section 3s 1;
    }
	
    .minimal-tabs > div.menu > input:checked + label + div.section-one ol li a, .minimal-tabs > div.menu > input:checked + label + div.section-one ul li a,
	.minimal-tabs > div.menu > input:checked + label + div.section-two ol li a, .minimal-tabs > div.menu > input:checked + label + div.section-two ul li a,
	.minimal-tabs > div.menu > input:checked + label + div.section-three ol li a, .minimal-tabs > div.menu > input:checked + label + div.section-three ul li a,
	.minimal-tabs > div.menu > input:checked + label + div.section-four ol li a, .minimal-tabs > div.menu > input:checked + label + div.section-four ul li a,
	.minimal-tabs > div.menu > input:checked + label + div.section-five ol li a, .minimal-tabs > div.menu > input:checked + label + div.section-five ul li a,
	.minimal-tabs > div.menu > input:checked + label + div.section-six ol li a, .minimal-tabs > div.menu > input:checked + label + div.section-six ul li a,
	.minimal-tabs > div.menu > input:checked + label + div.section-seven ol li a, .minimal-tabs > div.menu > input:checked + label + div.section-seven ul li a,
	.minimal-tabs > div.menu > input:checked + label + div.section-eight ol li a, .minimal-tabs > div.menu > input:checked + label + div.section-eight ul li a,
	.minimal-tabs > div.menu > input:checked + label + div.section-nine ol li a, .minimal-tabs > div.menu > input:checked + label + div.section-nine ul li a,
	.minimal-tabs > div.menu > input:checked + label + div.section-ten ol li a, .minimal-tabs > div.menu > input:checked + label + div.section-ten ul li a,
	.minimal-tabs > div.menu > input:checked + label + div.section-eleven ol li a, .minimal-tabs > div.menu > input:checked + label + div.section-eleven ul li a{
		-webkit-animation: section 3s 1;
	       -moz-animation: section 3s 1;  
             -o-animation: section 3s 1;  
	            animation: section 3s 1;
    }
	
/*	--------------------------------------------------
	:: Make Sections Slide In 
	-------------------------------------------------- */
	
	.minimal-tabs > div.menu > input.tab-1:checked ~ .section-one,
    .minimal-tabs > div.menu > input.tab-2:checked ~ .section-two,
    .minimal-tabs > div.menu > input.tab-3:checked ~ .section-three,
    .minimal-tabs > div.menu > input.tab-4:checked ~ .section-four,
    .minimal-tabs > div.menu > input.tab-5:checked ~ .section-five,
    .minimal-tabs > div.menu > input.tab-6:checked ~ .section-six,
    .minimal-tabs > div.menu > input.tab-7:checked ~ .section-seven,
    .minimal-tabs > div.menu > input.tab-8:checked ~ .section-eight,
    .minimal-tabs > div.menu > input.tab-9:checked ~ .section-nine,
    .minimal-tabs > div.menu > input.tab-10:checked ~ .section-ten,
	.minimal-tabs > div.menu > input.tab-11:checked ~ .section-eleven {
        z-index:100;
        opacity:1;
    }
	
/*	--------------------------------------------------
	:: Tablet Portrait Design for a width of 768px
	-------------------------------------------------- */

    @media only screen and (min-width:768px) and (max-width:959px) {
	    .container { width:768px; }
		
		.minimal-tabs > div.menu > label{ 
		    width:768px;
        }
		
		.minimal-tabs > div.menu > div.section-one,
        .minimal-tabs > div.menu > div.section-two,
        .minimal-tabs > div.menu > div.section-three,
        .minimal-tabs > div.menu > div.section-four,
        .minimal-tabs > div.menu > div.section-five,
		.minimal-tabs > div.menu > div.section-six,
        .minimal-tabs > div.menu > div.section-seven,
        .minimal-tabs > div.menu > div.section-eight,
        .minimal-tabs > div.menu > div.section-nine,
        .minimal-tabs > div.menu > div.section-ten,
		.minimal-tabs > div.menu > div.section-eleven{
	        width:743px;
			border-left:none;
		    left:0;
			top:619px;
        }
		
		.column-one { width:718px; }
		.column-two{ width:346.5px; }
		.column-three{ width:222.6px; }
		.column-four{ width:160.75px; }
		.column-five { width:123.6px; }
		
		.grid-one { width:718px; }
		.grid-two{ width:346.5px; }
		.grid-three{ width:222.6px; }
		.grid-four{ width:160.75px; }
		.grid-five { width:123.6px; }
		
		.info-message,
	    .warning-message,
	    .error-message,
        .success-message,
	    .download-message,
        .upload-message { 
	        width:713px; 
	    }
		
		.infobox-info,
	    .infobox-warning,
	    .infobox-download, 
	    .infobox-error, 
        .infobox-success, 
	    .infobox-upload { 
			width:182.6px; 
		}
		
    }

/*	--------------------------------------------------
	:: Mobile Landscape Design for a width of 480px
	-------------------------------------------------- */

    @media only screen and (min-width:480px) and (max-width:767px) {
	    .container { width:420px; }
		
		.minimal-tabs > div.menu > label{ 
		    width:420px;
        }
		
		.minimal-tabs > div.menu > div.section-one,
        .minimal-tabs > div.menu > div.section-two,
        .minimal-tabs > div.menu > div.section-three,
        .minimal-tabs > div.menu > div.section-four,
        .minimal-tabs > div.menu > div.section-five,
		.minimal-tabs > div.menu > div.section-six,
        .minimal-tabs > div.menu > div.section-seven,
        .minimal-tabs > div.menu > div.section-eight,
        .minimal-tabs > div.menu > div.section-nine,
        .minimal-tabs > div.menu > div.section-ten,
		.minimal-tabs > div.menu > div.section-eleven{
	        width:395px;
			border-left:none;
		    left:0;
			top:619px;
        }
		
		.column-one,
		.column-two,
		.column-three,
		.column-four,
		.column-five { 
		    width:370px; 
		}
		
		.grid-one,
		.grid-two,
		.grid-three,
		.grid-four,
		.grid-five { 
		    width:370px; 
		}	
		
		.info-message,
	    .warning-message,
	    .error-message,
        .success-message,
	    .download-message,
        .upload-message { 
	        width:365px; 
	    }
		
		.infobox-info,
	    .infobox-warning,
	    .infobox-download, 
	    .infobox-error, 
        .infobox-success, 
	    .infobox-upload { 
			width:330px; 
		}
		
    }
	
/*	--------------------------------------------------
	:: Mobile Portrait Design for a width of 320px
	-------------------------------------------------- */

    @media only screen and (max-width:479px) {
	    .container { width:300px; }
		
		.minimal-tabs > div.menu > label{ 
		    width:300px;
        }
		
		.minimal-tabs > div.menu > div.section-one,
        .minimal-tabs > div.menu > div.section-two,
        .minimal-tabs > div.menu > div.section-three,
        .minimal-tabs > div.menu > div.section-four,
        .minimal-tabs > div.menu > div.section-five,
		.minimal-tabs > div.menu > div.section-six,
        .minimal-tabs > div.menu > div.section-seven,
        .minimal-tabs > div.menu > div.section-eight,
        .minimal-tabs > div.menu > div.section-nine,
        .minimal-tabs > div.menu > div.section-ten,
		.minimal-tabs > div.menu > div.section-eleven {
	        width:275px;
			border-left:none;
		    left:0;
			top:619px;
        }
		
		.column-one,
		.column-two,
		.column-three,
		.column-four,
		.column-five { 
		    width:250px; 
		}
		
		.grid-one,
		.grid-two,
		.grid-three,
		.grid-four,
		.grid-five { 
		    width:250px; 
		}
		
		.info-message,
	    .warning-message,
	    .error-message,
        .success-message,
	    .download-message,
        .upload-message { 
	        width:245px; 
	    }
	
	    .infobox-info,
	    .infobox-warning,
	    .infobox-download, 
	    .infobox-error, 
        .infobox-success, 
	    .infobox-upload { 
			width:210px; 
		}
		
    }

/*	--------------------------------------------------
	:: Font IcoMoon
	-------------------------------------------------- */

    @font-face {
	    font-family: 'icomoon';
	    src:url('../Font/icomoon.eot');
	    src:url('../Font/icomoon.eot?#iefix') format('embedded-opentype'),
		url('../Font/icomoon.woff') format('woff'),
		url('../Font/icomoon.ttf') format('truetype'),
		url('../Font/icomoon.svg#icomoon') format('svg');
	    font-weight: normal;
	    font-style: normal;
    }

/*	--------------------------------------------------
	:: Font Icon for Labels
	-------------------------------------------------- */
	
	[class*="icon-white"]:before { 
	    font-family:'icomoon'; 
	    speak:none; 
	    color:#fff; 
	    font-style:normal; 
	    font-weight:normal;
        font-size:16px;	
		margin-right:10px;
		vertical-align:baseline;
	    -webkit-font-smoothing:antialiased;
	}
	
/*	--------------------------------------------------
	:: Font Icon for Sections
	-------------------------------------------------- */
	
	[class*="icon-black"]:before { 
	    font-family:'icomoon'; 
	    speak:none; 
	    color:#777; 
	    font-style:normal; 
	    font-weight:normal;
        font-size:14px;	
		margin-right:10px;
		vertical-align:baseline;
	    -webkit-font-smoothing:antialiased;
	}
	
	.icon-arrow-up:before {content: "\e0cc";}
    .icon-arrow-up-right:before {content: "\e0cd";}
    .icon-arrow-right:before {content: "\e0ce";}
    .icon-arrow-down-right:before {content: "\e0cf";}
    .icon-arrow-down:before {content: "\e0d0";}
    .icon-arrow-down-left:before {content: "\e0d1";}
    .icon-arrow-left:before {content: "\e0d2";}
    .icon-tab:before {content: "\e0d3";}
    .icon-checkbox-checked:before {content: "\e0d4";}
    .icon-checkbox-unchecked:before {content: "\e0d5";}
    .icon-checkbox-partial:before {content: "\e0d6";}
    .icon-radio-checked:before {content: "\e0d7";}
    .icon-radio-unchecked:before {content: "\e0d8";}
    .icon-crop:before {content: "\e0d9";}
    .icon-scissors:before {content: "\e0da";}
    .icon-filter:before {content: "\e0db";}
    .icon-filter-2:before {content: "\e0dc";}
    .icon-font:before {content: "\e0dd";}
    .icon-text-height:before {content: "\e0de";}
    .icon-text-width:before {content: "\e000";}
    .icon-bold:before {content: "\e001";}
    .icon-underline:before {content: "\e002";}
    .icon-italic:before {content: "\e003";}
    .icon-strikethrough:before {content: "\e004";}
    .icon-omega:before {content: "\e005";}
    .icon-sigma:before {content: "\e006";}
    .icon-table:before {content: "\e007";}
    .icon-table-2:before {content: "\e008";}
    .icon-insert-template:before {content: "\e009";}
    .icon-pilcrow:before {content: "\e00a";}
    .icon-left-to-right:before {content: "\e00b";}
    .icon-right-to-left:before {content: "\e00c";}
    .icon-paragraph-left:before {content: "\e00d";}
    .icon-paragraph-center:before {content: "\e00e";}
    .icon-paragraph-right:before {content: "\e00f";}
    .icon-paragraph-justify:before {content: "\e010";}
    .icon-paragraph-left-2:before {content: "\e011";}
    .icon-paragraph-center-2:before {content: "\e012";}
    .icon-paragraph-right-2:before {content: "\e013";}
    .icon-paragraph-justify-2:before {content: "\e014";}
    .icon-indent-increase:before {content: "\e015";}
    .icon-indent-decrease:before {content: "\e016";}
    .icon-new-tab:before {content: "\e017";}
    .icon-embed:before {content: "\e018";}
    .icon-code:before {content: "\e019";}
    .icon-console:before {content: "\e01a";}
    .icon-share:before {content: "\e01b";}
    .icon-mail:before {content: "\e01c";}
    .icon-mail-2:before {content: "\e01d";}
    .icon-mail-3:before {content: "\e01e";}
    .icon-mail-4:before {content: "\e01f";}
    .icon-google:before {content: "\e020";}
    .icon-google-plus:before {content: "\e021";}
    .icon-google-plus-2:before {content: "\e022";}
    .icon-google-plus-3:before {content: "\e023";}
    .icon-google-plus-4:before {content: "\e024";}
    .icon-google-drive:before {content: "\e025";}
    .icon-facebook:before {content: "\e026";}
    .icon-facebook-2:before {content: "\e027";}
    .icon-facebook-3:before {content: "\e028";}
    .icon-instagram:before {content: "\e029";}
    .icon-twitter:before {content: "\e02a";}
    .icon-twitter-2:before {content: "\e02b";}
    .icon-twitter-3:before {content: "\e02c";}
    .icon-feed:before {content: "\e02d";}
    .icon-feed-2:before {content: "\e02e";}
    .icon-feed-3:before {content: "\e02f";}
    .icon-youtube:before {content: "\e030";}
    .icon-youtube-2:before {content: "\e031";}
    .icon-vimeo:before {content: "\e032";}
    .icon-vimeo2:before {content: "\e033";}
    .icon-vimeo-2:before {content: "\e034";}
    .icon-lanyrd:before {content: "\e035";}
    .icon-flickr:before {content: "\e036";}
    .icon-flickr-2:before {content: "\e037";}
    .icon-flickr-3:before {content: "\e038";}
    .icon-flickr-4:before {content: "\e039";}
    .icon-picassa:before {content: "\e03a";}
    .icon-picassa-2:before {content: "\e03b";}
    .icon-dribbble:before {content: "\e03c";}
    .icon-dribbble-2:before {content: "\e03d";}
    .icon-dribbble-3:before {content: "\e03e";}
    .icon-forrst:before {content: "\e03f";}
    .icon-forrst-2:before {content: "\e040";}
    .icon-deviantart:before {content: "\e041";}
    .icon-deviantart-2:before {content: "\e042";}
    .icon-steam:before {content: "\e043";}
    .icon-steam-2:before {content: "\e044";}
    .icon-github:before {content: "\e045";}
    .icon-github-2:before {content: "\e046";}
    .icon-github-3:before {content: "\e047";}
    .icon-github-4:before {content: "\e048";}
    .icon-github-5:before {content: "\e049";}
    .icon-wordpress:before {content: "\e04a";}
    .icon-wordpress-2:before {content: "\e04b";}
    .icon-joomla:before {content: "\e04c";}
    .icon-blogger:before {content: "\e04d";}
    .icon-blogger-2:before {content: "\e04e";}
    .icon-tumblr:before {content: "\e04f";}
    .icon-tumblr-2:before {content: "\e050";}
    .icon-yahoo:before {content: "\e051";}
    .icon-tux:before {content: "\e052";}
    .icon-apple:before {content: "\e053";}
    .icon-finder:before {content: "\e054";}
    .icon-android:before {content: "\e055";}
    .icon-windows:before {content: "\e056";}
    .icon-windows8:before {content: "\e057";}
    .icon-soundcloud:before {content: "\e058";}
    .icon-soundcloud-2:before {content: "\e059";}
    .icon-skype:before {content: "\e05a";}
    .icon-reddit:before {content: "\e05b";}
    .icon-linkedin:before {content: "\e05c";}
    .icon-lastfm:before {content: "\e05d";}
    .icon-lastfm-2:before {content: "\e05e";}
    .icon-delicious:before {content: "\e05f";}
    .icon-stumbleupon:before {content: "\e060";}
    .icon-stumbleupon-2:before {content: "\e061";}
    .icon-stackoverflow:before {content: "\e062";}
    .icon-pinterest:before {content: "\e063";}
    .icon-pinterest-2:before {content: "\e064";}
    .icon-xing:before {content: "\e065";}
    .icon-xing-2:before {content: "\e066";}
    .icon-flattr:before {content: "\e067";}
    .icon-foursquare:before {content: "\e068";}
    .icon-foursquare-2:before {content: "\e069";}
    .icon-paypal:before {content: "\e06a";}
    .icon-paypal-2:before {content: "\e06b";}
    .icon-paypal-3:before {content: "\e06c";}
    .icon-yelp:before {content: "\e06d";}
    .icon-libreoffice:before {content: "\e06e";}
    .icon-file-pdf:before {content: "\e06f";}
    .icon-file-openoffice:before {content: "\e070";}
    .icon-file-word:before {content: "\e071";}
    .icon-file-excel:before {content: "\e072";}
    .icon-file-zip:before {content: "\e073";}
    .icon-file-powerpoint:before {content: "\e074";}
    .icon-file-xml:before {content: "\e075";}
    .icon-file-css:before {content: "\e076";}
    .icon-html5:before {content: "\e077";}
    .icon-html5-2:before {content: "\e078";}
    .icon-css3:before {content: "\e079";}
    .icon-chrome:before {content: "\e07a";}
    .icon-firefox:before {content: "\e07b";}
    .icon-IE:before {content: "\e07c";}
    .icon-opera:before {content: "\e07d";}
    .icon-safari:before {content: "\e07e";}
    .icon-IcoMoon:before {content: "\e07f";}
    .icon-bars:before {content: "\e080";}
    .icon-gift:before {content: "\e081";}
    .icon-trophy:before {content: "\e082";}
    .icon-glass:before {content: "\e083";}
    .icon-mug:before {content: "\e084";}
    .icon-food:before {content: "\e085";}
    .icon-leaf:before {content: "\e086";}
    .icon-rocket:before {content: "\e087";}
    .icon-meter:before {content: "\e088";}
    .icon-meter2:before {content: "\e089";}
    .icon-dashboard:before {content: "\e08a";}
    .icon-hammer:before {content: "\e08b";}
    .icon-fire:before {content: "\e08c";}
    .icon-lab:before {content: "\e08d";}
    .icon-magnet:before {content: "\e08e";}
    .icon-remove:before {content: "\e08f";}
    .icon-remove-2:before {content: "\e090";}
    .icon-briefcase:before {content: "\e091";}
    .icon-airplane:before {content: "\e092";}
    .icon-truck:before {content: "\e093";}
    .icon-road:before {content: "\e094";}
    .icon-accessibility:before {content: "\e095";}
    .icon-target:before {content: "\e096";}
    .icon-shield:before {content: "\e097";}
    .icon-lightning:before {content: "\e098";}
    .icon-switch:before {content: "\e099";}
    .icon-power-cord:before {content: "\e09a";}
    .icon-signup:before {content: "\e09b";}
    .icon-list:before {content: "\e09c";}
    .icon-list-2:before {content: "\e09d";}
    .icon-numbered-list:before {content: "\e09e";}
    .icon-menu:before {content: "\e09f";}
    .icon-menu-2:before {content: "\e0a0";}
    .icon-tree:before {content: "\e0a1";}
    .icon-cloud:before {content: "\e0a2";}
    .icon-cloud-download:before {content: "\e0a3";}
    .icon-cloud-upload:before {content: "\e0a4";}
    .icon-download:before {content: "\e0a5";}
    .icon-upload:before {content: "\e0a6";}
    .icon-download-2:before {content: "\e0a7";}
    .icon-upload-2:before {content: "\e0a8";}
    .icon-globe:before {content: "\e0a9";}
    .icon-earth:before {content: "\e0aa";}
    .icon-link:before {content: "\e0ab";}
    .icon-flag:before {content: "\e0ac";}
    .icon-attachment:before {content: "\e0ad";}
    .icon-eye:before {content: "\e0ae";}
    .icon-eye-blocked:before {content: "\e0af";}
    .icon-eye-2:before {content: "\e0b0";}
    .icon-bookmark:before {content: "\e0b1";}
    .icon-bookmarks:before {content: "\e0b2";}
    .icon-brightness-medium:before {content: "\e0b3";}
    .icon-brightness-contrast:before {content: "\e0b4";}
    .icon-contrast:before {content: "\e0b5";}
    .icon-star:before {content: "\e0b6";}
    .icon-star-2:before {content: "\e0b7";}
    .icon-star-3:before {content: "\e0b8";}
    .icon-heart:before {content: "\e0b9";}
    .icon-heart-2:before {content: "\e0ba";}
    .icon-heart-broken:before {content: "\e0bb";}
    .icon-thumbs-up:before {content: "\e0bc";}
    .icon-thumbs-up-2:before {content: "\e0bd";}
    .icon-happy:before {content: "\e0be";}
    .icon-happy-2:before {content: "\e0bf";}
    .icon-smiley:before {content: "\e0c0";}
    .icon-smiley-2:before {content: "\e0c1";}
	.icon-tongue:before {content: "\e0c2";}
    .icon-tongue-2:before {content: "\e0c3";}
    .icon-sad:before {content: "\e0c4";}
    .icon-sad-2:before {content: "\e0c5";}
    .icon-wink:before {content: "\e0c6";}
    .icon-wink-2:before {content: "\e0c7";}
    .icon-grin:before {content: "\e0c8";}
    .icon-grin-2:before {content: "\e0c9";}
    .icon-cool:before {content: "\e0ca";}
    .icon-cool-2:before {content: "\e0cb";}
    .icon-angry:before {content: "\e0df";}
    .icon-angry-2:before {content: "\e0e0";}
    .icon-evil:before {content: "\e0e1";}
    .icon-evil-2:before {content: "\e0e2";}
    .icon-shocked:before {content: "\e0e3";}
    .icon-shocked-2:before {content: "\e0e4";}
    .icon-confused:before {content: "\e0e5";}
    .icon-confused-2:before {content: "\e0e6";}
    .icon-neutral:before {content: "\e0e7";}
    .icon-neutral-2:before {content: "\e0e8";}
    .icon-wondering:before {content: "\e0e9";}
    .icon-wondering-2:before {content: "\e0ea";}
    .icon-point-up:before {content: "\e0eb";}
    .icon-point-right:before {content: "\e0ec";}
    .icon-point-down:before {content: "\e0ed";}
    .icon-point-left:before {content: "\e0ee";}
    .icon-warning:before {content: "\e0ef";}
    .icon-notification:before {content: "\e0f0";}
    .icon-question:before {content: "\e0f1";}
    .icon-info:before {content: "\e0f2";}
    .icon-info-2:before {content: "\e0f3";}
    .icon-blocked:before {content: "\e0f4";}
    .icon-cancel-circle:before {content: "\e0f5";}
    .icon-checkmark-circle:before {content: "\e0f6";}
    .icon-spam:before {content: "\e0f7";}
    .icon-close:before {content: "\e0f8";}
    .icon-checkmark:before {content: "\e0f9";}
    .icon-checkmark-2:before {content: "\e0fa";}
    .icon-spell-check:before {content: "\e0fb";}
    .icon-minus:before {content: "\e0fc";}
    .icon-plus:before {content: "\e0fd";}
    .icon-enter:before {content: "\e0fe";}
    .icon-exit:before {content: "\e0ff";}
    .icon-play:before {content: "\e100";}
    .icon-pause:before {content: "\e101";}
    .icon-stop:before {content: "\e102";}
    .icon-backward:before {content: "\e103";}
    .icon-forward:before {content: "\e104";}
    .icon-play-2:before {content: "\e105";}
    .icon-pause-2:before {content: "\e106";}
    .icon-stop-2:before {content: "\e107";}
    .icon-backward-2:before {content: "\e108";}
    .icon-forward-2:before {content: "\e109";}
    .icon-first:before {content: "\e10a";}
    .icon-last:before {content: "\e10b";}
    .icon-previous:before {content: "\e10c";}
    .icon-next:before {content: "\e10d";}
    .icon-eject:before {content: "\e10e";}
    .icon-volume-high:before {content: "\e10f";}
    .icon-volume-medium:before {content: "\e110";}
    .icon-volume-low:before {content: "\e111";}
    .icon-volume-mute:before {content: "\e112";}
    .icon-volume-mute-2:before {content: "\e113";}
    .icon-volume-increase:before {content: "\e114";}
    .icon-volume-decrease:before {content: "\e115";}
    .icon-loop:before {content: "\e116";}
    .icon-loop-2:before {content: "\e117";}
    .icon-loop-3:before {content: "\e118";}
    .icon-shuffle:before {content: "\e119";}
    .icon-arrow-up-left:before {content: "\e11a";}
    .icon-arrow-up-2:before {content: "\e11b";}
    .icon-arrow-up-right-2:before {content: "\e11c";}
    .icon-arrow-right-2:before {content: "\e11d";}
    .icon-arrow-down-right-2:before {content: "\e11e";}
    .icon-arrow-down-2:before {content: "\e11f";}
    .icon-arrow-down-left-2:before {content: "\e120";}
    .icon-arrow-left-2:before {content: "\e121";}
    .icon-arrow-up-left-2:before {content: "\e122";}
    .icon-arrow-up-3:before {content: "\e123";}
    .icon-arrow-up-right-3:before {content: "\e124";}
    .icon-arrow-right-3:before {content: "\e125";}
    .icon-arrow-down-right-3:before {content: "\e126";}
    .icon-arrow-down-3:before {content: "\e127";}
    .icon-arrow-down-left-3:before {content: "\e128";}
    .icon-arrow-left-3:before {content: "\e129";}
    .icon-arrow-up-left-3:before {content: "\e12a";}
    .icon-film:before {content: "\e12b";}
    .icon-camera:before {content: "\e12c";}
    .icon-dice:before {content: "\e12d";}
    .icon-pacman:before {content: "\e12e";}
    .icon-spades:before {content: "\e12f";}
    .icon-clubs:before {content: "\e130";}
    .icon-diamonds:before {content: "\e131";}
    .icon-pawn:before {content: "\e132";}
    .icon-bullhorn:before {content: "\e133";}
    .icon-connection:before {content: "\e134";}
    .icon-podcast:before {content: "\e135";}
    .icon-feed-4:before {content: "\e136";}
    .icon-book:before {content: "\e137";}
    .icon-books:before {content: "\e138";}
    .icon-library:before {content: "\e139";}
    .icon-file:before {content: "\e13a";}
    .icon-profile:before {content: "\e13b";}
    .icon-file-2:before {content: "\e13c";}
    .icon-file-3:before {content: "\e13d";}
    .icon-file-4:before {content: "\e13e";}
    .icon-copy:before {content: "\e13f";}
    .icon-copy-2:before {content: "\e140";}
    .icon-copy-3:before {content: "\e141";}
    .icon-paste:before {content: "\e142";}
    .icon-paste-2:before {content: "\e143";}
    .icon-paste-3:before {content: "\e144";}
    .icon-stack:before {content: "\e145";}
    .icon-folder:before {content: "\e146";}
    .icon-folder-open:before {content: "\e147";}
    .icon-tag:before {content: "\e148";}
    .icon-tags:before {content: "\e149";}
    .icon-barcode:before {content: "\e14a";}
    .icon-qrcode:before {content: "\e14b";}
    .icon-ticket:before {content: "\e14c";}
    .icon-cart:before {content: "\e14d";}
    .icon-cart-2:before {content: "\e14e";}
    .icon-cart-3:before {content: "\e14f";}
    .icon-coin:before {content: "\e150";}
    .icon-credit:before {content: "\e151";}
    .icon-calculate:before {content: "\e152";}
    .icon-support:before {content: "\e153";}
    .icon-phone:before {content: "\e154";}
    .icon-phone-hang-up:before {content: "\e155";}
    .icon-address-book:before {content: "\e156";}
    .icon-notebook:before {content: "\e157";}
    .icon-envelop:before {content: "\e158";}
    .icon-pushpin:before {content: "\e159";}
    .icon-location:before {content: "\e15a";}
    .icon-location-2:before {content: "\e15b";}
    .icon-compass:before {content: "\e15c";}
    .icon-map:before {content: "\e15d";}
    .icon-map-2:before {content: "\e15e";}
    .icon-history:before {content: "\e15f";}
    .icon-clock:before {content: "\e160";}
    .icon-clock-2:before {content: "\e161";}
    .icon-alarm:before {content: "\e162";}
    .icon-alarm-2:before {content: "\e163";}
    .icon-bell:before {content: "\e164";}
    .icon-stopwatch:before {content: "\e165";}
    .icon-calendar:before {content: "\e166";}
    .icon-calendar-2:before {content: "\e167";}
    .icon-print:before {content: "\e168";}
    .icon-keyboard:before {content: "\e169";}
    .icon-screen:before {content: "\e16a";}
    .icon-laptop:before {content: "\e16b";}
    .icon-mobile:before {content: "\e16c";}
    .icon-mobile-2:before {content: "\e16d";}
    .icon-tablet:before {content: "\e16e";}
    .icon-tv:before {content: "\e16f";}
    .icon-cabinet:before {content: "\e170";}
    .icon-drawer:before {content: "\e171";}
    .icon-drawer-2:before {content: "\e172";}
    .icon-drawer-3:before {content: "\e173";}
    .icon-box-add:before {content: "\e174";}
    .icon-box-remove:before {content: "\e175";}
    .icon-download-3:before {content: "\e176";}
    .icon-upload-3:before {content: "\e177";}
    .icon-disk:before {content: "\e178";}
    .icon-storage:before {content: "\e179";}
    .icon-undo:before {content: "\e17a";}
    .icon-redo:before {content: "\e17b";}
    .icon-flip:before {content: "\e17c";}
    .icon-flip-2:before {content: "\e17d";}
    .icon-undo-2:before {content: "\e17e";}
    .icon-redo-2:before {content: "\e17f";}
    .icon-forward-3:before {content: "\e180";}
    .icon-reply:before {content: "\e181";}
	.icon-bubble:before {content: "\e182";}
    .icon-bubbles:before {content: "\e183";}
    .icon-bubbles-2:before {content: "\e184";}
    .icon-bubble-2:before {content: "\e185";}
    .icon-bubbles-3:before {content: "\e186";}
    .icon-bubbles-4:before {content: "\e187";}
    .icon-user:before {content: "\e188";}
	.icon-users:before {content: "\e189";}
    .icon-user-2:before {content: "\e18a";}
    .icon-users-2:before {content: "\e18b";}
    .icon-user-3:before {content: "\e18c";}
    .icon-user-4:before {content: "\e18d";}
    .icon-quotes-left:before {content: "\e18e";}
    .icon-busy:before {content: "\e18f";}
    .icon-spinner:before {content: "\e190";}
    .icon-spinner-2:before {content: "\e191";}
    .icon-spinner-3:before {content: "\e192";}
    .icon-spinner-4:before {content: "\e193";}
    .icon-spinner-5:before {content: "\e194";}
    .icon-spinner-6:before {content: "\e195";}
    .icon-binoculars:before {content: "\e196";}
    .icon-search:before {content: "\e197";}
    .icon-zoom-in:before {content: "\e198";}
    .icon-zoom-out:before {content: "\e199";}
    .icon-expand:before {content: "\e19a";}
    .icon-contract:before {content: "\e19b";}
    .icon-expand-2:before {content: "\e19c";}
    .icon-contract-2:before {content: "\e19d";}
    .icon-key:before {content: "\e19e";}
    .icon-key-2:before {content: "\e19f";}
    .icon-lock:before {content: "\e1a0";}
    .icon-lock-2:before {content: "\e1a1";}
    .icon-unlocked:before {content: "\e1a2";}
    .icon-wrench:before {content: "\e1a3";}
    .icon-settings:before {content: "\e1a4";}
    .icon-equalizer:before {content: "\e1a5";}
    .icon-cog:before {content: "\e1a6";}
    .icon-cogs:before {content: "\e1a7";}
    .icon-cog-2:before {content: "\e1a8";}
    .icon-hammer-2:before {content: "\e1a9";}
    .icon-wand:before {content: "\e1aa";}
    .icon-aid:before {content: "\e1ab";}
    .icon-bug:before {content: "\e1ac";}
    .icon-pie:before {content: "\e1ad";}
    .icon-stats:before {content: "\e1ae";}
    .icon-bars-2:before {content: "\e1af";}
    .icon-home:before {content: "\e1b0";}
    .icon-home-2:before {content: "\e1b1";}
    .icon-home-3:before {content: "\e1b2";}
    .icon-office:before {content: "\e1b3";}
    .icon-newspaper:before {content: "\e1b4";}
    .icon-pencil:before {content: "\e1b5";}
    .icon-pencil-2:before {content: "\e1b6";}
    .icon-quill:before {content: "\e1b7";}
    .icon-pen:before {content: "\e1b8";}
    .icon-blog:before {content: "\e1b9";}
    .icon-droplet:before {content: "\e1ba";}
    .icon-paint-format:before {content: "\e1bb";}
    .icon-image:before {content: "\e1bc";}
    .icon-image-2:before {content: "\e1bd";}
    .icon-images:before {content: "\e1be";}
    .icon-camera-2:before {content: "\e1bf";}
    .icon-music:before {content: "\e1c0";}
    .icon-headphones:before {content: "\e1c1";}
    .icon-play-3:before {content: "\e1c2";}
