/*Styles for images and art and their associated layouts.
  This file includes built-in types as well as custom types.
*/

/***********BUILT-INS*************/
.jvImage {
	position: absolute;
	opacity: 0;
}
.jvImage_on {
	opacity: 1;
}

.jvSpriteContainer {
	position: absolute;
	overflow: hidden;
	margin: 0;
	padding: 0;
	opacity: 0;
	pointer-events: none;
}

.jvSprite {
	position: relative;
	pointer-events: none;
}


/*override a specific image used with the ImageOn action*/
img.jvImage[data-gfxid="_DUMMY"] {
	
	margin-left: 5%;
	border: 2px solid black;
}

/*override a specific sprite used with the SpriteOn action*/
img.jvSprite[data-spriteid="_SOMENAME"] {
	
	margin-left: 5%;
	border: 2px solid black;
}
