<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* CSS Document */

#wrapper { margin:auto; }
#center { margin: 0 auto; width:800px;}
#container .column { float:left;  }
#slideShow { display:inline-block;}
#vdesc { width:750px; }
#ops { width:100px; display:inline-block; }

#ops ul {  
	list-style-type: none;
    margin: 0;
    padding: 0; 
	}
#ops li {  padding-left:20px;  }
	 
#ops a { display:inline-block; padding:5px; text-align:center;  }

.tint {
    position: relative;
    float: left;
    margin-right: 10px;
    margin-bottom: 8px;
    cursor: pointer;
	
    -webkit-shadow: rgba(0,0,0,.2) 3px 5px 5px;
    -moz-shadow: rgba(0,0,0,.2) 3px 5px 5px;
    box-shadow: rgba(0,0,0,.2) 3px 5px 5px;
  }
  
  .tint:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -moz-transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
  }
  
  .tint:hover:before {
    background: rgba(148,17,37, 0.5);
  }

</pre></body></html>