@import url('http://www.liquidlegends.net/staff/Zess/Scripts/LLnewsPost.css');
@import url(http://fonts.googleapis.com/css?family=Work+Sans);
@import url(http://fonts.googleapis.com/css?family=Itim);

#bkt
{
    background-color: #E4E4E4;
}

#bkt #preface 
{
    font-style: italic;
    font-size: 1.20em;
}

#bkt .text
{
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 1.20em;
    color: #332E25;
    margin: 0px 40px;
    line-height: 25px;
}

#bkt .title 
{
    font-size: 1.5em;
    font-family: 'Itim', cursive;
    font-weight: 600;
    text-align: center;
    color: #970415;
    padding: 5px;
    position: relative;
}

#bkt .text a, #bkt .text a:link
{
	color: #001BFF;
}

#bkt h2
{
    margin: 0;
}

#bkt h2.background 
{
    position: relative;
    z-index: 1;
}

#bkt h2.background:before 
{
    border-top: 2px solid #000000;
    content: "";
    /* this centers the line to the full width specified */
    position: absolute;
    /* positioning must be absolute here, and relative positioning must be applied to the parent */
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    width: 90%;
    z-index: -1;
}

#bkt h2.background span 
{
    /* to hide the lines from behind the text, you have to set the background color the same as the container */
    background: #E4E4E4;
    padding: 0 15px;
}

#bkt h2.double:before 
{
    /* this is just to undo the :before styling from above */
    border-top: none;
}

#bkt h2.double:after 
{
    border-bottom: 1px solid blue;
    -webkit-box-shadow: 0 1px 0 0 red;
    -moz-box-shadow: 0 1px 0 0 red;
    box-shadow: 0 1px 0 0 red;
    content: "";
    /* this centers the line to the full width specified */
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    width: 90%;
    z-index: -1;
}

#bkt .imgfix
{
    width: 90%;
    padding-top: 1.5vw;
    padding-bottom: 1.5vw;
}

#bkt #footer 
{
    padding: 10% 0 0 5%;
    min-height: 100px;
    margin: 0;
    font-size: 11px;
    line-height: 13px;
    text-transform: uppercase;
    background-image: linear-gradient( #E4E4E4, #5D5F82);
}

#bkt #footer ul 
{
    margin: 0;
    padding: 0;
}

#bkt #footer li 
{ 
    list-style-type: none;
}

#bkt #footer a, #bkt a:link
{
    color: #FFFFFF;
}

#bkt .align-center
{
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/**
 * Horizontal Type Line Behind Text
 * Inspired by this discussion @ CSS-Tricks: http://css-tricks.com/forums/topic/css-trick-for-a-horizontal-type-line-behind-text/#post-151970
 * Available on jsFiddle: http://jsfiddle.net/ericrasch/jAXXA/
 * Available on Dabblet: http://dabblet.com/gist/2045198
 * Available on GitHub Gist: https://gist.github.com/2045198
 */
h2
{
  font: 33px sans-serif;
  margin-top: 30px;
  text-align: center;
  text-transform: uppercase;
}

h2.background 
{
  position: relative;
  z-index: 1;
}

h2.background:before 
{
  border-top: 2px solid #dfdfdf;
  content: "";
  margin: 0 auto;
  /* this centers the line to the full width specified */
  position: absolute;
  /* positioning must be absolute here, and relative positioning must be applied to the parent */
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  width: 95%;
  z-index: -1;
}

h2.background span 
{
  /* to hide the lines from behind the text, you have to set the background color the same as the container */
  background: #fff;
  padding: 0 15px;
}

h2.double:before 
{
  /* this is just to undo the :before styling from above */
  border-top: none;
}

h2.double:after 
{
  border-bottom: 1px solid blue;
  -webkit-box-shadow: 0 1px 0 0 red;
  -moz-box-shadow: 0 1px 0 0 red;
  box-shadow: 0 1px 0 0 red;
  content: "";
  margin: 0 auto;
  /* this centers the line to the full width specified */
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  width: 95%;
  z-index: -1;
}

h2.no-background 
{
  position: relative;
  overflow: hidden;
}

h2.no-background span 
{
  display: inline-block;
  vertical-align: baseline;
  zoom: 1;
  *display: inline;
  *vertical-align: auto;
  position: relative;
  padding: 0 20px;
}

h2.no-background span:before,
h2.no-background span:after 
{
  content: '';
  display: block;
  width: 1000px;
  position: absolute;
  top: 0.73em;
  border-top: 1px solid red;
}

h2.no-background span:before 
{
  right: 100%;
}

h2.no-background span:after 
{
  left: 100%;
}

h2.no-span 
{
  display: table;
  white-space: nowrap;
}

h2.no-span:before,
h2.no-span:after 
{
  border-top: 1px solid green;
  content: '';
  display: table-cell;
  position: relative;
  top: 0.5em;
  width: 45%;
}

h2.no-span:before 
{
  right: 1.5%;
}

h2.no-span:after 
{
  left: 1.5%;
}