/* line 17, ../../../../.rvm/gems/ruby-1.9.3-p392/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
}

/* -- Layout -------------------alters positions of thumnails----------------------------------------------- */

body {
  margin: 0px 0px 0px 0px;/* 10px(top) 0px(moves left 10px) 0px(no visble change) 0px(moves right)*/
  background: #;/* page background color currently transparent*/
}

.gallery {
  display: inline-block;/* keeps grey border and images aligned and centred */
  margin: 4px 1px 0px 0px;/* 4px(adds horizontal space) 0px(moves spacing between) 0px(no visble change) 0px(moves spacing between)*/
  line-height: 0;/* keeps grey border baseline aligned with images*/
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 14px;/* rounds the corners */
  border: 4px solid black;/* grey border */
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

/* line 194, ../sass/screen.sass */
.gallery-image {
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
  border-radius: 11px; 
}

.gallery:hover {
  border: 4px solid #FFD801;/* sizes and colours the link hover border #00bfa8(original)*/
  border-radius: 15px;/* rounds the corners */
}
