
/* afg.css */

/* 1  */ /* Settings that apply to entire gallery */
/* 2  */ div.afg-gallery {
/* 3  */     margin:auto;
/* 4  */ }
/* 5  */ 
/* 6  */ /* Effect for thumbnails in gallery */
/* 7  */ img.afg-img {
/* 8  */     margin-top:5%;
/* 9  */     opacity:1;
/* 10 */     filter:alpha(opacity=100);
/* 11 */     box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.6);
/* 12 */     -moz-box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.6);
/* 13 */     -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.6);
/* 14 */ }
/* 15 */ 
/* 16 */ img.afg-img:hover {
/* 17 */     margin-top:5%;
/* 18 */     opacity:0.7;
/* 19 */     filter:alpha(opacity=70);
/* 20 */     box-shadow: None;
/* 21 */     -moz-box-shadow: None;
/* 22 */     -webkit-box-shadow: None;
/* 23 */ }
/* 24 */ 
/* 25 */ /* Gallery structure */
/* 26 */ div.afg-table {
/* 27 */     display:table !important;
/* 28 */     margin:auto;
/* 29 */     border:none; 
/* 30 */ }
/* 31 */ 
/* 32 */ /* Table row */
/* 33 */ div.afg-row {
/* 34 */     display:table-row !important;
/* 35 */ }
/* 36 */ 
/* 37 */ /* Individual image cell in the gallery */
/* 38 */ div.afg-cell {
/* 39 */     display:table-cell !important;
/* 40 */     text-align:left;
/* 41 */     vertical-align:top;
/* 42 */     margin:auto;
/* 43 */     padding-bottom:10px;
/* 44 */ }
/* 45 */ /* Hover effect for pagination links */
/* 46 */ a.afg-page:hover {
/* 47 */     background:royalblue;
/* 48 */     color:white;
/* 49 */     text-decoration:none;
/* 50 */ }

/* afg.css */

/* 51 */ 
/* 52 */ /* Pagination */
/* 53 */ div.afg-pagination {
/* 54 */     margin:auto;
/* 55 */     border:0;
/* 56 */     text-align:center;
/* 57 */     font-size:0.9em; 
/* 58 */ }
/* 59 */ 
/* 60 */ font.afg-page {
/* 61 */     border:1px solid gray;
/* 62 */ }
/* 63 */ 
/* 64 */ font.afg-cur-page {
/* 65 */     border:1px solid gray;
/* 66 */     background-color:gray;
/* 67 */     color:white;
/* 68 */ }
/* 69 */ 
/* 70 */ /* Text decoration for pagination links */
/* 71 */ a.afg-page:visited, a.afg-page:link {
/* 72 */     text-decoration:none;
/* 73 */     border:1px solid gray;
/* 74 */ }
/* 75 */ 
/* 76 */ /* Credit Note */
/* 77 */ div.afg-credit {
/* 78 */     text-align:right;
/* 79 */     font-size:0.9em;
/* 80 */ }
/* 81 */ 
/* 82 */ /* Photo title */
/* 83 */ div.afg-title {
/* 84 */     margin-right:5%;
/* 85 */     margin-bottom:5%;
/* 86 */ }
/* 87 */ 
/* 88 */ /* Photo Description */
/* 89 */ div.afg-description {
/* 90 */     font-size:85%;
/* 91 */     margin-right:5%;
/* 92 */     font-style:italic;
/* 93 */ }
/* 94 */ 
