/*reset tags*/
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* html5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  /*custom CSS*/
  background: #fff;
  font-family: Open Sans, Arial, sans-serif;
  font-size: 14px;
  color: #000;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*custom CSS*/
@font-face {
  font-family: 'Pacifico-webfont';
  src: url('../media/fonts/pacifico-webfont.eot'); /* IE9 Compat Modes */
  src: url('../media/fonts/pacifico-webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../media/fonts/pacifico-webfont.woff2') format('woff2'), /* Super Modern Browsers */
       url('../media/fonts/pacifico-webfont.woff') format('woff'), /* Pretty Modern Browsers */
       url('../media/fonts/pacifico-webfont.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('../media/fonts/pacifico-webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
}

.italic {
  font-style: italic;
}

.wrapper_header {
  margin: 0 auto;
  min-width: 720px;
  height: 55px;
  text-align: center;
  background: #000;
  color: #fff;
}

.wrapper {
  margin: 0 auto;
  width: 720px;
  text-align: center;
}

#header {
  margin: 56px 0 20px 0;
  text-align: center;
}

.decoration_container {
  width: 358px;
  display: inline-block;
}

.decoration_curly_lines_left {
  margin: 0 60px 0 0;
  width: 103px;
  height: 43px;
  background: url("../media/images/decoration-curly-lines-left.png") no-repeat right bottom;
  display: inline-block;
  position: relative;
  float: right;
}

.decoration_curly_lines_right {
  margin: 0 0 0 61px;
  width: 102px;
  height: 43px;
  background: url("../media/images/decoration-curly-lines-right.png") no-repeat left bottom;  
  display: inline-block;
  position: relative;
  float: left;
}

.black_and_white_strips {
  height: 4px;
  background: linear-gradient(
    to bottom,
    #000,
    #000 50%,
    #fff 50%,
    #fff
  );
  background-size: 100% 2px;
}

nav.left_side {
  width: 273px;
  text-align: right;
  float: left;
}

nav.right_side {
  width: 273px;
  text-align: left;
  float: right;
}

nav ul li {
  padding: 0px;
  font-size: 23px;
  font-weight: 400;
  color: white;
  display: inline-block;
}

nav.left_side ul li {
  margin: 16px 0 0 25px;
}

nav.right_side ul li {
  margin: 16px 25px 0 0;
}

nav ul li a {
  padding: 0 0 1px 0;
  color: #fff;
  border-bottom: 2px solid #000;
  transition: border-color .5s;
  text-decoration: none;
  display: inline-block;
}

nav ul li a:hover {
  border-color: #fff;
  transition: border-color .5s;
}

nav .current_page {
  border-color: #fff;
}

.circle_white_border {
  margin: 0 25px;
  width: 120px;
  height: 120px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: black;
  border: 2px solid white;
  position: relative;
  bottom: 67px;
  display: inline-block;
}

.circle {
  width: 112px;
  height: 112px;
  background: #fff url("../media/images/logo.png") no-repeat center;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid white;
  display: inline-block;
  position: relative;
  top: 2px;
}

.circle_white_border a {
  opacity: 1;
  transition: opacity .5s ease-in-out;
  -moz-transition: opacity .5s ease-in-out;
  -webkit-transition: opacity .5s ease-in-out;
}

.circle_white_border a:hover {
  opacity: .85;
  transition: opacity .5s ease-in-out;
  -moz-transition: opacity .5s ease-in-out;
  -webkit-transition: opacity .5s ease-in-out;
}

h1 {
  padding: 0 13px 20px 7px;
  font-family: Pacifico-webfont;
  font-size: 31px;
  border-bottom: 1px solid #000;
  display: inline-block;
}

h2 {
  font-size: 19px;
  font-weight: 600;
  display: inline-block;
}

h2.h2_small_space {
  margin: 5px 0 0 0;
}

h2.h2_big_space {
  margin: 19px 0 0 0;
}

h2.wedding_date, h2.wedding_location {
  font-size: 27px;
  font-weight: 600;
  display: block;
}

h2.wedding_location {
  margin: 13px 0 0 0;
}

.content {
  margin: 28px 0 0 0;
}

.content a {
  color: #000;
  border-bottom: 2px solid #fff;
  transition: border-color .5s;
  text-decoration: none;
}

.content a:hover {
  border-color: #000;
  transition: border-color .5s;
}

h2 + p {
  margin: 4px 0 0 0;
}

.content p {
  line-height: 1.5;
}

.content p.big_space {
  margin: 19px 0 0 0;
}

.content p.small_space {
  margin: 7px 0 0 0;
}

.content p.medium_space {
  margin: 13px 0 0 0;
}

#footer {
  margin: 0 0 37px 0;
}

#footer .container {
  margin: 35px 0 0 0;
  padding: 29px 0 0 0;
  width: 200px;
  border-top: 1px solid black;
  display: inline-block;
}

img.cowboy_boots {
  width: 96px;
  height: 72px;
}

#copyright {
  ;
}

#rodman_technologies {
  font-size: 12px;
  color: #fff;
  display: block;
  margin: 15px 0 15px 0;
}

#rodman_technologies p {
  margin: 0 0 8px 0;
}