/* @option theme settings Miscellaneous */

#bg{
	-webkit-backface-visibility: hidden;
    -webkit-animation: imageAnimation 4s linear;
    -moz-animation: imageAnimation 4s linear;
    -o-animation: imageAnimation 4s linear;
    -ms-animation: imageAnimation 4s linear;
    animation: imageAnimation 4s linear;}

/* Animation for the slideshow images */
@-webkit-keyframes imageAnimation {
 0%   {   -webkit-transform: scale(1.05);}
 100% { -webkit-transform: scale(1);}}
@-moz-keyframes imageAnimation { 
0%   {   -moz-transform: scale(1.05);}
 100% { -moz-transform: scale(1);}}
@-o-keyframes imageAnimation { 
0%   {   -0-transform: scale(1.05);}
 100% { -0-transform: scale(1);}}
@-ms-keyframes imageAnimation { 
0% { -ms-transform: scale(1.05);}
100% { -ms-transform: scale(1); }}


