/* You can type here any CSS code that will be loaded both on your admin and front-end pages.
Let us help you by giving a few exmaple CSS classes: */

/* Front-end sliders & preview */

.ls-container { /* The slider itself */

}

.ls-slide { 

}

.ls-slide a:hover {
	color: blue;
	text-decoration: underline;
}

.ls-slide #yourID {

}

.ls-slide .yourClass {

}

/* Side color of 3D objects */
.ls-3d-box div { b/* IE10+ */ 
background-image: -ms-linear-gradient(left, #0B499D 0%, #E8E8E8 50%, #A3027E 100%);

/* Mozilla Firefox */ 
background-image: -moz-linear-gradient(left, #0B499D 0%, #E8E8E8 50%, #A3027E 100%);

/* Opera */ 
background-image: -o-linear-gradient(left, #0B499D 0%, #E8E8E8 50%, #A3027E 100%);

/* Webkit (Safari/Chrome 10) */ 
background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #0B499D), color-stop(50, #E8E8E8), color-stop(100, #A3027E));

/* Webkit (Chrome 11+) */ 
background-image: -webkit-linear-gradient(left, #0B499D 0%, #E8E8E8 50%, #A3027E 100%);

/* W3C Markup */ 
background-image: linear-gradient(to right, #0B499D 0%, #E8E8E8 50%, #A3027E 100%);}

