@import url('http://www.liquidlegends.net/staff/Zess/Scripts/LLnewsPost.css');
@import url('http://fonts.googleapis.com/css?family=Open+Sans:400italic,400,700,300,800');
@import url(http://www.teamliquid.net/staff/FOnTTaX/counterstrike/tools/linkicons.css); 

article#interview
{
	background-color: #F3F3F5;
	position: relative;
	z-index: 1;
}

#interview section
{
	padding: 0 0 5% 0;
}

#interview p 
{
	font-family: 'Open Sans', sans-serif;
	color: #2B2612;
	font-size: 14px;
	line-height: 20px;
}

#interview img
{
	display: block;
	width: 100%;
	height: auto;
}

#interview .question 
{
  display: block;
  font-weight: bold;
  margin: 3% 3% 0 3%;
}

#interview .answer
{
  background: #FFDD54;
  width: 90%;
  margin: 1% auto 0 auto;
  padding: 3%;
  border-radius: 10px; -webkit-border-radius: 10px; -moz-border-radius: 10px;
}

/*
Footers and links
*/

#interview footer.credits p.append
{
  margin: -8% 3% 7% 3%;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.3em;
}

#interview a, 
#interview a:link 
{
  text-decoration: none;
  color: #0600FF;
}

#interview a:hover 
{
  text-decoration: underline;
}

#interview footer.credits 
{
  width: 100%;
  padding: 5% 0;
  display: block;
  border: medium none;
  background-image: linear-gradient( #F3F3F5, #F5C60F);
}

#interview footer p 
{
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #2B2612;
  text-align: center;
  text-decoration: none;
  line-height: 1em;
  font-size: .95em;
}

#interview footer.credits p.license 
{
  font-size: .8em;
  font-weight: 400;
  margin: 30% auto 6%;
}

/**
 * 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;
  color: #2B2612;
}

h2.background 
{
  position: relative;
  z-index: 1;
}

h2.background:before 
{
  border-top: 2px solid #BB980D;
  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: #F3F3F5;
  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%;
}