
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3goQDSYgDiGofgAAAslJREFUOMvtlM9LFGEYx7/vvOPM6ywuuyPFihWFBUsdNnA6KLIh+QPx4KWExULdHQ/9A9EfUodYmATDYg/iRewQzklFWxcEBcGgEplDkDtI6sw4PzrIbrOuedBb9MALD7zv+3m+z4/3Bf7bZS2bzQIAcrmcMDExcTeXy10DAFVVAQDksgFUVZ1ljD3yfd+0LOuFpmnvVVW9GHhkZAQcxwkNDQ2FSCQyRMgJxnVdy7KstKZpn7nwha6urqqfTqfPBAJAuVymlNLXoigOhfd5nmeiKL5TVTV+lmIKwAOA7u5u6Lped2BsbOwjY6yf4zgQQkAIAcedaPR9H67r3uYBQFEUFItFtLe332lpaVkUBOHK3t5eRtf1DwAwODiIubk5DA8PM8bYW1EU+wEgCIJqsCAIQAiB7/u253k2BQDDMJBKpa4mEon5eDx+UxAESJL0uK2t7XosFlvSdf0QAEmlUnlRFJ9Waho2Qghc1/U9z3uWz+eX+Wr+lL6SZfleEAQIggA8z6OpqSknimIvYyybSCReMsZ6TislhCAIAti2Dc/zejVNWwCAavN8339j27YbTg0AGGM3WltbP4WhlRWq6Q/btrs1TVsYHx+vNgqKoqBUKn2NRqPFxsbGJzzP05puUlpt0ukyOI6z7zjOwNTU1OLo6CgmJyf/gA3DgKIoWF1d/cIY24/FYgOU0pp0z/Ityzo8Pj5OTk9PbwHA+vp6zWghDC+VSiuRSOQgGo32UErJ38CO42wdHR09LBQK3zKZDDY2NupmFmF4R0cHVlZWlmRZ/iVJUn9FeWWcCCE4ODjYtG27Z2Zm5juAOmgdGAB2d3cBADs7O8uSJN2SZfl+WKlpmpumaT6Yn58vn/fs6XmbhmHMNjc3tzDGFI7jYJrm5vb29sDa2trPC/9aiqJUy5pOp4f6+vqeJ5PJBAB0dnZe/t8NBajx/z37Df5OGX8d13xzAAAAAElFTkSuQmCC);
  }
}
/* Fancy CSS END */



.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url("fonts/font_0000_a85e1d258735.woff")format("woff");}.ff1{font-family:ff1;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_61c732f46603.woff")format("woff");}.ff2{font-family:ff2;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_eac91e4cccec.woff")format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_58f759d7f466.woff")format("woff");}.ff4{font-family:ff4;line-height:0.887695;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_5df7a296920f.woff")format("woff");}.ff5{font-family:ff5;line-height:0.870117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_139a1bcbc742.woff")format("woff");}.ff6{font-family:ff6;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_4657cd399f7f.woff")format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_aaf1cde9ec40.woff")format("woff");}.ff8{font-family:ff8;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_66eee0f39ebb.woff")format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_0515030d6989.woff")format("woff");}.ffa{font-family:ffa;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_1fcbaed71242.woff")format("woff");}.ffb{font-family:ffb;line-height:1.078000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_2530406b9fc3.woff")format("woff");}.ffc{font-family:ffc;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_91ccc5d2a4b7.woff")format("woff");}.ffd{font-family:ffd;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_9f60982da536.woff")format("woff");}.ffe{font-family:ffe;line-height:0.722000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_001609439fd3.woff")format("woff");}.fff{font-family:fff;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_4fe84755036c.woff")format("woff");}.ff10{font-family:ff10;line-height:0.111000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_d12d1209b0e3.woff")format("woff");}.ff11{font-family:ff11;line-height:0.389000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_248b3c1405fe.woff")format("woff");}.ff12{font-family:ff12;line-height:1.084000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.148234,0.201312,-0.201312,0.148234,0,0);-ms-transform:matrix(0.148234,0.201312,-0.201312,0.148234,0,0);-webkit-transform:matrix(0.148234,0.201312,-0.201312,0.148234,0,0);}
.m4{transform:matrix(0.149083,-0.200685,0.200685,0.149083,0,0);-ms-transform:matrix(0.149083,-0.200685,0.200685,0.149083,0,0);-webkit-transform:matrix(0.149083,-0.200685,0.200685,0.149083,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.780000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.958000px;}
.ls4{letter-spacing:-0.497184px;}
.ls2{letter-spacing:-0.303984px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.377776px;}
.ls3{letter-spacing:0.497184px;}
.ls8{letter-spacing:2.987700px;}
.ls1c{letter-spacing:3.273600px;}
.ls11{letter-spacing:7.326000px;}
.ls14{letter-spacing:14.124000px;}
.ls13{letter-spacing:14.352000px;}
.ls1f{letter-spacing:14.520000px;}
.lsf{letter-spacing:14.586000px;}
.ls7{letter-spacing:14.916000px;}
.ls16{letter-spacing:15.708000px;}
.ls1b{letter-spacing:16.170000px;}
.ls17{letter-spacing:16.434000px;}
.ls9{letter-spacing:16.500000px;}
.ls19{letter-spacing:16.632000px;}
.ls21{letter-spacing:16.680000px;}
.ls5{letter-spacing:16.764000px;}
.ls23{letter-spacing:17.028000px;}
.ls10{letter-spacing:17.988000px;}
.ls18{letter-spacing:18.480000px;}
.ls1a{letter-spacing:18.546000px;}
.ls1d{letter-spacing:18.678000px;}
.ls24{letter-spacing:19.338000px;}
.ls15{letter-spacing:19.470000px;}
.ls6{letter-spacing:19.734000px;}
.lsb{letter-spacing:20.130000px;}
.lse{letter-spacing:20.262000px;}
.ls25{letter-spacing:20.592000px;}
.lsa{letter-spacing:20.922000px;}
.lsc{letter-spacing:20.988000px;}
.ls22{letter-spacing:21.186000px;}
.ls1e{letter-spacing:22.704000px;}
.ls26{letter-spacing:25.146000px;}
.ls20{letter-spacing:25.740000px;}
.lsd{letter-spacing:30.479700px;}
.ls12{letter-spacing:104.610000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4a{word-spacing:-16.500000px;}
.ws7d{word-spacing:-16.473600px;}
.ws2{word-spacing:-15.537000px;}
.ws3a{word-spacing:-15.000000px;}
.ws1{word-spacing:-13.780608px;}
.ws52{word-spacing:-10.986649px;}
.ws55{word-spacing:-7.392000px;}
.wsb6{word-spacing:-3.828000px;}
.wsb2{word-spacing:-3.762000px;}
.ws40{word-spacing:-3.564000px;}
.ws31{word-spacing:-3.498000px;}
.wsb8{word-spacing:-3.366000px;}
.ws1e{word-spacing:-3.300000px;}
.ws7e{word-spacing:-3.168000px;}
.wsb5{word-spacing:-2.838000px;}
.ws6b{word-spacing:-2.706000px;}
.ws63{word-spacing:-2.442000px;}
.ws5b{word-spacing:-2.376000px;}
.ws5f{word-spacing:-2.310000px;}
.ws5a{word-spacing:-2.178000px;}
.ws58{word-spacing:-2.148000px;}
.ws23{word-spacing:-2.112000px;}
.ws7b{word-spacing:-1.980000px;}
.wsa5{word-spacing:-1.914000px;}
.ws37{word-spacing:-1.848000px;}
.ws62{word-spacing:-1.782000px;}
.wsa4{word-spacing:-1.650000px;}
.ws1d{word-spacing:-1.584000px;}
.ws43{word-spacing:-1.518000px;}
.ws8f{word-spacing:-1.452000px;}
.ws15{word-spacing:-1.386000px;}
.ws7{word-spacing:-1.242960px;}
.ws21{word-spacing:-1.188000px;}
.wsa9{word-spacing:-1.056000px;}
.ws5{word-spacing:-1.027463px;}
.ws6a{word-spacing:-0.792000px;}
.ws69{word-spacing:-0.726000px;}
.ws60{word-spacing:-0.660000px;}
.ws6{word-spacing:-0.621480px;}
.wsbc{word-spacing:-0.540000px;}
.ws8b{word-spacing:-0.528000px;}
.ws8{word-spacing:-0.497184px;}
.ws2e{word-spacing:-0.396000px;}
.ws76{word-spacing:-0.330000px;}
.ws85{word-spacing:-0.264000px;}
.ws3d{word-spacing:-0.198000px;}
.wsb7{word-spacing:-0.132000px;}
.ws33{word-spacing:-0.066000px;}
.ws51{word-spacing:-0.039520px;}
.wsbb{word-spacing:-0.006000px;}
.ws3{word-spacing:0.000000px;}
.ws4e{word-spacing:0.066000px;}
.ws72{word-spacing:0.132000px;}
.ws73{word-spacing:0.198000px;}
.ws14{word-spacing:0.264000px;}
.ws8a{word-spacing:0.330000px;}
.ws9d{word-spacing:0.396000px;}
.ws10{word-spacing:0.497184px;}
.ws8e{word-spacing:0.528000px;}
.ws11{word-spacing:0.621480px;}
.ws81{word-spacing:0.660000px;}
.wsaa{word-spacing:0.726000px;}
.ws1b{word-spacing:0.792000px;}
.ws2f{word-spacing:0.858000px;}
.wsae{word-spacing:0.924000px;}
.ws5c{word-spacing:0.990000px;}
.wsa3{word-spacing:1.056000px;}
.ws64{word-spacing:1.122000px;}
.wsa8{word-spacing:1.188000px;}
.ws46{word-spacing:1.254000px;}
.ws4f{word-spacing:1.320000px;}
.wsa0{word-spacing:1.452000px;}
.ws91{word-spacing:1.518000px;}
.ws6d{word-spacing:1.584000px;}
.ws9c{word-spacing:1.716000px;}
.ws56{word-spacing:1.794000px;}
.ws48{word-spacing:1.848000px;}
.ws13{word-spacing:1.980000px;}
.ws71{word-spacing:2.046000px;}
.ws5e{word-spacing:2.178000px;}
.ws8c{word-spacing:2.244000px;}
.ws2b{word-spacing:2.310000px;}
.ws82{word-spacing:2.376000px;}
.ws1f{word-spacing:2.442000px;}
.ws7c{word-spacing:2.508000px;}
.ws49{word-spacing:2.574000px;}
.wsb1{word-spacing:2.706000px;}
.ws59{word-spacing:2.730000px;}
.ws9e{word-spacing:2.772000px;}
.ws38{word-spacing:2.838000px;}
.ws3f{word-spacing:2.904000px;}
.ws65{word-spacing:2.970000px;}
.ws19{word-spacing:3.036000px;}
.ws77{word-spacing:3.102000px;}
.wsf{word-spacing:3.107400px;}
.ws1a{word-spacing:3.168000px;}
.ws16{word-spacing:3.234000px;}
.ws90{word-spacing:3.300000px;}
.ws7f{word-spacing:3.366000px;}
.ws30{word-spacing:3.432000px;}
.ws20{word-spacing:3.564000px;}
.ws25{word-spacing:3.630000px;}
.ws35{word-spacing:3.696000px;}
.ws17{word-spacing:3.762000px;}
.ws6f{word-spacing:3.894000px;}
.wsaf{word-spacing:3.960000px;}
.ws27{word-spacing:4.026000px;}
.ws8d{word-spacing:4.092000px;}
.ws50{word-spacing:4.158000px;}
.ws42{word-spacing:4.290000px;}
.wsa{word-spacing:4.350360px;}
.ws36{word-spacing:4.356000px;}
.ws6c{word-spacing:4.422000px;}
.ws24{word-spacing:4.488000px;}
.ws6e{word-spacing:4.554000px;}
.ws7a{word-spacing:4.620000px;}
.ws9a{word-spacing:4.686000px;}
.ws3e{word-spacing:4.752000px;}
.ws41{word-spacing:4.818000px;}
.wsa1{word-spacing:4.950000px;}
.wsa7{word-spacing:5.016000px;}
.ws4d{word-spacing:5.148000px;}
.ws57{word-spacing:5.202000px;}
.ws61{word-spacing:5.214000px;}
.ws94{word-spacing:5.244000px;}
.ws5d{word-spacing:5.280000px;}
.wsa2{word-spacing:5.346000px;}
.ws18{word-spacing:5.412000px;}
.ws95{word-spacing:5.466000px;}
.ws70{word-spacing:5.478000px;}
.ws66{word-spacing:5.610000px;}
.ws9f{word-spacing:5.676000px;}
.ws98{word-spacing:5.742000px;}
.ws86{word-spacing:5.808000px;}
.ws4c{word-spacing:5.874000px;}
.ws99{word-spacing:5.940000px;}
.ws87{word-spacing:6.138000px;}
.ws80{word-spacing:6.204000px;}
.wsc{word-spacing:6.214800px;}
.ws75{word-spacing:6.468000px;}
.ws1c{word-spacing:6.534000px;}
.ws88{word-spacing:6.666000px;}
.ws79{word-spacing:6.732000px;}
.ws74{word-spacing:6.864000px;}
.wsb3{word-spacing:6.930000px;}
.ws44{word-spacing:6.996000px;}
.ws9b{word-spacing:7.062000px;}
.wsb9{word-spacing:7.194000px;}
.ws4b{word-spacing:7.326000px;}
.ws2c{word-spacing:7.590000px;}
.wsac{word-spacing:7.656000px;}
.wsb0{word-spacing:7.722000px;}
.ws84{word-spacing:7.986000px;}
.ws78{word-spacing:7.994400px;}
.ws68{word-spacing:8.052000px;}
.ws67{word-spacing:8.118000px;}
.ws47{word-spacing:8.184000px;}
.ws39{word-spacing:8.316000px;}
.wsba{word-spacing:8.514000px;}
.wsab{word-spacing:8.712000px;}
.ws22{word-spacing:8.844000px;}
.ws92{word-spacing:8.976000px;}
.ws96{word-spacing:9.240000px;}
.ws97{word-spacing:9.306000px;}
.ws93{word-spacing:9.438000px;}
.wsb4{word-spacing:9.768000px;}
.ws89{word-spacing:9.834000px;}
.wsad{word-spacing:9.900000px;}
.wsb{word-spacing:9.943680px;}
.ws26{word-spacing:10.098000px;}
.wsa6{word-spacing:10.560000px;}
.ws2d{word-spacing:10.956000px;}
.wsd{word-spacing:11.186640px;}
.ws45{word-spacing:11.286000px;}
.ws28{word-spacing:11.814000px;}
.ws83{word-spacing:12.540000px;}
.ws2a{word-spacing:13.596000px;}
.ws53{word-spacing:16.620000px;}
.ws29{word-spacing:16.632000px;}
.ws34{word-spacing:18.282000px;}
.ws32{word-spacing:21.912000px;}
.ws9{word-spacing:22.373280px;}
.wse{word-spacing:28.588080px;}
.ws3c{word-spacing:44.748000px;}
.ws12{word-spacing:92.598000px;}
.ws4{word-spacing:2304.447840px;}
.ws3b{word-spacing:2352.780000px;}
.ws54{word-spacing:2352.786000px;}
.ws0{word-spacing:2353.122000px;}
._7{margin-left:-10.986649px;}
._8{margin-left:-7.350000px;}
._20{margin-left:-5.607600px;}
._3{margin-left:-4.158000px;}
._0{margin-left:-3.070800px;}
._1{margin-left:-1.112400px;}
._2{width:1.367928px;}
._a{width:3.273600px;}
._f{width:11.914800px;}
._4{width:14.058000px;}
._c{width:15.774000px;}
._d{width:17.160000px;}
._e{width:19.008000px;}
._9{width:20.852400px;}
._11{width:21.912000px;}
._10{width:24.156000px;}
._b{width:25.278000px;}
._6{width:44.814000px;}
._1f{width:85.536000px;}
._14{width:91.212000px;}
._5{width:92.664000px;}
._1a{width:106.910400px;}
._1d{width:116.820000px;}
._13{width:157.476000px;}
._1c{width:193.776000px;}
._18{width:226.644000px;}
._1b{width:232.254000px;}
._12{width:233.542800px;}
._16{width:267.102000px;}
._1e{width:285.780000px;}
._17{width:331.452000px;}
._19{width:863.082000px;}
._15{width:890.670000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:39.520318px;}
.fsa{font-size:39.520320px;}
.fs7{font-size:44.400000px;}
.fs3{font-size:45.259800px;}
.fs6{font-size:48.840600px;}
.fs2{font-size:50.664000px;}
.fsc{font-size:52.800000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs4{font-size:62.148000px;}
.fs1{font-size:66.000000px;}
.fs5{font-size:79.035600px;}
.fs9{font-size:79.040640px;}
.ya{bottom:-45.540300px;}
.y0{bottom:0.000000px;}
.y85{bottom:35.345986px;}
.y84{bottom:36.788478px;}
.y62{bottom:38.892000px;}
.y4{bottom:46.109700px;}
.y83{bottom:53.821736px;}
.y61{bottom:99.630000px;}
.y3{bottom:102.787350px;}
.yc9{bottom:106.140000px;}
.y95{bottom:109.185000px;}
.y132{bottom:116.088000px;}
.y60{bottom:118.020000px;}
.y2{bottom:118.987350px;}
.y157{bottom:124.072500px;}
.yc8{bottom:125.568000px;}
.y94{bottom:127.117500px;}
.y1{bottom:135.187350px;}
.y131{bottom:135.514500px;}
.y5f{bottom:136.408500px;}
.y156{bottom:142.005000px;}
.yc7{bottom:144.994500px;}
.y82{bottom:148.483500px;}
.y8d{bottom:156.942601px;}
.y93{bottom:158.822286px;}
.y155{bottom:159.937500px;}
.y130{bottom:163.150500px;}
.yc6{bottom:164.421000px;}
.y5{bottom:164.835000px;}
.y8c{bottom:168.334333px;}
.y5e{bottom:175.879500px;}
.y92{bottom:176.810454px;}
.y154{bottom:177.871500px;}
.y8b{bottom:179.726065px;}
.y12f{bottom:182.578500px;}
.yc5{bottom:183.849000px;}
.y8a{bottom:191.117797px;}
.y5d{bottom:195.306000px;}
.y153{bottom:195.804000px;}
.y12e{bottom:202.005000px;}
.yf0{bottom:203.275500px;}
.yc4{bottom:207.759000px;}
.y152{bottom:213.736500px;}
.y5c{bottom:214.734000px;}
.y91{bottom:220.470913px;}
.y12d{bottom:221.433000px;}
.yef{bottom:222.703500px;}
.y90{bottom:229.064888px;}
.y151{bottom:231.669000px;}
.y5b{bottom:234.160500px;}
.yee{bottom:242.130000px;}
.y12c{bottom:249.069000px;}
.y150{bottom:249.601500px;}
.yc3{bottom:251.844000px;}
.y5a{bottom:253.588500px;}
.y8f{bottom:254.686051px;}
.yed{bottom:261.558000px;}
.y8e{bottom:265.208714px;}
.y14f{bottom:267.535500px;}
.y12b{bottom:268.495500px;}
.yc2{bottom:271.270500px;}
.y59{bottom:273.015000px;}
.yec{bottom:280.984500px;}
.y89{bottom:284.457383px;}
.y14e{bottom:285.468000px;}
.y12a{bottom:287.923500px;}
.yc1{bottom:290.698500px;}
.y88{bottom:295.849116px;}
.y58{bottom:296.925000px;}
.yeb{bottom:300.411000px;}
.y14d{bottom:303.400500px;}
.y87{bottom:307.240848px;}
.yc0{bottom:310.125000px;}
.y180{bottom:312.366000px;}
.y129{bottom:315.559500px;}
.y86{bottom:318.632580px;}
.yff{bottom:319.839000px;}
.y14c{bottom:321.333000px;}
.yea{bottom:324.322500px;}
.ybf{bottom:329.553000px;}
.y17f{bottom:330.298500px;}
.y128{bottom:334.987500px;}
.yfe{bottom:339.265500px;}
.y57{bottom:345.789000px;}
.y17e{bottom:348.232500px;}
.ybe{bottom:348.979500px;}
.y127{bottom:354.414000px;}
.y14b{bottom:357.198000px;}
.yfd{bottom:358.693500px;}
.ye9{bottom:364.671000px;}
.y56{bottom:365.217000px;}
.y17d{bottom:366.165000px;}
.ybd{bottom:368.406000px;}
.y14a{bottom:375.132000px;}
.yfc{bottom:378.120000px;}
.y126{bottom:382.050000px;}
.ye8{bottom:384.097500px;}
.ybc{bottom:387.834000px;}
.yfb{bottom:397.548000px;}
.y125{bottom:401.478000px;}
.y17c{bottom:402.030000px;}
.y149{bottom:402.777000px;}
.ye7{bottom:403.525500px;}
.ybb{bottom:407.260500px;}
.y55{bottom:414.081000px;}
.yfa{bottom:416.974500px;}
.y17b{bottom:419.962500px;}
.y124{bottom:420.904500px;}
.y105{bottom:421.458000px;}
.ye6{bottom:422.952000px;}
.yba{bottom:426.688500px;}
.y2f{bottom:429.400068px;}
.y54{bottom:433.507500px;}
.yf9{bottom:436.401000px;}
.y17a{bottom:437.895000px;}
.y123{bottom:440.332500px;}
.ye5{bottom:442.380000px;}
.yb9{bottom:446.115000px;}
.y2e{bottom:447.034563px;}
.y53{bottom:452.935500px;}
.yf8{bottom:455.829000px;}
.y122{bottom:459.759000px;}
.ye4{bottom:461.806500px;}
.y2d{bottom:464.855502px;}
.yb8{bottom:465.543000px;}
.y52{bottom:472.362000px;}
.y179{bottom:473.761500px;}
.yf7{bottom:475.255500px;}
.y121{bottom:479.187000px;}
.y104{bottom:479.590500px;}
.ye3{bottom:481.233000px;}
.y2c{bottom:482.862885px;}
.yb7{bottom:484.969500px;}
.y178{bottom:491.694000px;}
.y51{bottom:491.790000px;}
.yf6{bottom:494.683500px;}
.y120{bottom:498.613500px;}
.y2b{bottom:500.497380px;}
.ye2{bottom:500.661000px;}
.yb6{bottom:504.396000px;}
.y148{bottom:507.172500px;}
.y177{bottom:509.626500px;}
.y50{bottom:511.216500px;}
.yf5{bottom:514.110000px;}
.y11f{bottom:518.040000px;}
.y2a{bottom:518.504763px;}
.ye1{bottom:520.087500px;}
.yb5{bottom:523.824000px;}
.y147{bottom:526.599000px;}
.y176{bottom:527.559000px;}
.y4f{bottom:530.644500px;}
.y81{bottom:531.613500px;}
.yf4{bottom:533.538000px;}
.y29{bottom:536.325702px;}
.y11e{bottom:537.468000px;}
.ye0{bottom:539.515500px;}
.yb4{bottom:543.250500px;}
.y175{bottom:545.491500px;}
.y4e{bottom:550.071000px;}
.y80{bottom:551.040000px;}
.yf3{bottom:552.964500px;}
.y28{bottom:553.960197px;}
.y146{bottom:555.739500px;}
.ydf{bottom:558.942000px;}
.yb3{bottom:562.678500px;}
.y174{bottom:563.425500px;}
.y11d{bottom:565.104000px;}
.y4d{bottom:569.499000px;}
.y7f{bottom:570.468000px;}
.y27{bottom:571.967580px;}
.yf2{bottom:576.874500px;}
.yde{bottom:578.370000px;}
.y173{bottom:581.358000px;}
.yb2{bottom:582.105000px;}
.y11c{bottom:584.532000px;}
.y4c{bottom:588.925500px;}
.y26{bottom:589.788519px;}
.y7e{bottom:589.894500px;}
.y145{bottom:597.369000px;}
.ydd{bottom:597.796500px;}
.y172{bottom:599.290500px;}
.yb1{bottom:601.533000px;}
.y25{bottom:607.609458px;}
.y4b{bottom:608.352000px;}
.y7d{bottom:609.322500px;}
.y11b{bottom:612.168000px;}
.y144{bottom:616.797000px;}
.ydc{bottom:617.223000px;}
.yb0{bottom:620.959500px;}
.y24{bottom:625.430397px;}
.y4a{bottom:627.780000px;}
.y7c{bottom:628.749000px;}
.y11a{bottom:631.594500px;}
.yf1{bottom:633.540000px;}
.y171{bottom:635.155500px;}
.y143{bottom:636.223500px;}
.ydb{bottom:636.651000px;}
.yaf{bottom:640.386000px;}
.y23{bottom:643.437780px;}
.y49{bottom:647.206500px;}
.y7b{bottom:648.177000px;}
.y170{bottom:653.089500px;}
.y142{bottom:655.651500px;}
.yda{bottom:656.077500px;}
.y119{bottom:659.232000px;}
.yae{bottom:659.814000px;}
.y22{bottom:661.072275px;}
.y48{bottom:666.634500px;}
.y7a{bottom:667.603500px;}
.y16f{bottom:671.022000px;}
.y141{bottom:675.078000px;}
.yd9{bottom:675.505500px;}
.y21{bottom:678.893214px;}
.yad{bottom:679.240500px;}
.y47{bottom:686.061000px;}
.y118{bottom:686.868000px;}
.y103{bottom:688.954500px;}
.y79{bottom:691.513500px;}
.y140{bottom:694.504500px;}
.yd8{bottom:694.932000px;}
.y20{bottom:696.900597px;}
.yac{bottom:698.668500px;}
.y46{bottom:705.489000px;}
.y16e{bottom:706.887000px;}
.y102{bottom:708.381000px;}
.y13f{bottom:713.932500px;}
.yd7{bottom:714.360000px;}
.y117{bottom:714.504000px;}
.y1f{bottom:714.535092px;}
.yab{bottom:722.578500px;}
.y16d{bottom:724.819500px;}
.y45{bottom:724.915500px;}
.y101{bottom:727.809000px;}
.y1e{bottom:732.542475px;}
.y13e{bottom:733.359000px;}
.yd6{bottom:738.270000px;}
.y78{bottom:741.894000px;}
.y116{bottom:742.141500px;}
.y16c{bottom:742.752000px;}
.y44{bottom:744.342000px;}
.y100{bottom:747.235500px;}
.y1d{bottom:750.363414px;}
.y13d{bottom:752.787000px;}
.y16b{bottom:760.686000px;}
.y77{bottom:761.322000px;}
.y43{bottom:763.770000px;}
.yaa{bottom:766.663500px;}
.y115{bottom:767.448000px;}
.y1c{bottom:767.997909px;}
.y13c{bottom:772.213500px;}
.yd5{bottom:778.618500px;}
.y76{bottom:780.748500px;}
.y42{bottom:783.196500px;}
.ya9{bottom:786.090000px;}
.y114{bottom:786.876000px;}
.y1b{bottom:789.951690px;}
.y13b{bottom:791.641500px;}
.y16a{bottom:796.551000px;}
.yd4{bottom:798.045000px;}
.y75{bottom:800.176500px;}
.y41{bottom:802.624500px;}
.ya8{bottom:805.518000px;}
.y13a{bottom:811.068000px;}
.y113{bottom:812.485500px;}
.y169{bottom:814.483500px;}
.yd3{bottom:817.473000px;}
.y74{bottom:819.603000px;}
.y40{bottom:822.051000px;}
.y1a{bottom:824.878866px;}
.ya7{bottom:824.944500px;}
.y139{bottom:830.494500px;}
.y168{bottom:832.416000px;}
.yd2{bottom:836.899500px;}
.y73{bottom:839.031000px;}
.y3f{bottom:841.479000px;}
.y19{bottom:842.886249px;}
.ya6{bottom:844.372500px;}
.y112{bottom:848.307000px;}
.y138{bottom:849.922500px;}
.y167{bottom:850.348500px;}
.yd1{bottom:856.327500px;}
.y72{bottom:858.457500px;}
.y18{bottom:860.707188px;}
.y3e{bottom:860.905500px;}
.ya5{bottom:863.799000px;}
.y111{bottom:867.735000px;}
.y166{bottom:868.282500px;}
.y137{bottom:869.349000px;}
.yd0{bottom:875.754000px;}
.y71{bottom:877.885500px;}
.y17{bottom:877.984332px;}
.y3d{bottom:880.332000px;}
.ya4{bottom:883.225500px;}
.y165{bottom:886.215000px;}
.y110{bottom:887.161500px;}
.y136{bottom:888.777000px;}
.ycf{bottom:895.180500px;}
.y16{bottom:895.991715px;}
.y70{bottom:897.312000px;}
.y3c{bottom:899.760000px;}
.ya3{bottom:902.653500px;}
.y164{bottom:904.147500px;}
.y10f{bottom:906.589500px;}
.y135{bottom:908.203500px;}
.y15{bottom:913.812654px;}
.yce{bottom:914.608500px;}
.y6f{bottom:916.738500px;}
.y3b{bottom:919.186500px;}
.ya2{bottom:922.080000px;}
.y10e{bottom:926.016000px;}
.y134{bottom:927.631500px;}
.y14{bottom:931.633593px;}
.ycd{bottom:934.035000px;}
.y6e{bottom:936.166500px;}
.y3a{bottom:938.614500px;}
.y163{bottom:940.012500px;}
.ya1{bottom:941.508000px;}
.y10d{bottom:945.444000px;}
.y13{bottom:949.454532px;}
.ycc{bottom:953.463000px;}
.y6d{bottom:955.593000px;}
.y133{bottom:956.772000px;}
.y162{bottom:957.945000px;}
.y39{bottom:958.041000px;}
.ya0{bottom:960.934500px;}
.y10c{bottom:964.870500px;}
.y12{bottom:967.275471px;}
.y6c{bottom:975.021000px;}
.y161{bottom:975.879000px;}
.ycb{bottom:977.373000px;}
.y38{bottom:977.469000px;}
.y9f{bottom:980.362500px;}
.y10b{bottom:984.297000px;}
.y11{bottom:985.096410px;}
.y160{bottom:993.811500px;}
.y6b{bottom:994.447500px;}
.y37{bottom:996.895500px;}
.y9e{bottom:999.789000px;}
.y10{bottom:1003.274700px;}
.y10a{bottom:1003.725000px;}
.y15f{bottom:1011.744000px;}
.y6a{bottom:1013.875500px;}
.y36{bottom:1016.322000px;}
.yca{bottom:1017.721500px;}
.y9d{bottom:1019.215500px;}
.y109{bottom:1023.151500px;}
.y15e{bottom:1029.676500px;}
.yf{bottom:1032.073396px;}
.y69{bottom:1033.302000px;}
.y35{bottom:1035.750000px;}
.y9c{bottom:1038.643500px;}
.y108{bottom:1042.579500px;}
.y15d{bottom:1047.609000px;}
.y68{bottom:1052.728500px;}
.y34{bottom:1055.176500px;}
.y9b{bottom:1058.070000px;}
.ye{bottom:1059.795133px;}
.y107{bottom:1062.006000px;}
.y15c{bottom:1065.543000px;}
.y67{bottom:1072.156500px;}
.y33{bottom:1074.604500px;}
.y9a{bottom:1077.498000px;}
.y15b{bottom:1083.475500px;}
.y6{bottom:1086.299700px;}
.yd{bottom:1087.694700px;}
.y106{bottom:1091.146500px;}
.y66{bottom:1091.583000px;}
.y32{bottom:1094.031000px;}
.y99{bottom:1096.924500px;}
.y15a{bottom:1101.408000px;}
.y65{bottom:1111.011000px;}
.y31{bottom:1113.459000px;}
.y98{bottom:1116.352500px;}
.y159{bottom:1119.340500px;}
.y64{bottom:1130.437500px;}
.yc{bottom:1131.259623px;}
.y97{bottom:1135.779000px;}
.y158{bottom:1137.273000px;}
.y30{bottom:1142.599500px;}
.y63{bottom:1154.347500px;}
.y96{bottom:1155.205500px;}
.yb{bottom:1168.874700px;}
.y9{bottom:1207.397568px;}
.y8{bottom:1221.976134px;}
.y7{bottom:1236.554700px;}
.h14{height:28.889353px;}
.h13{height:28.889354px;}
.h5{height:36.884777px;}
.h6{height:36.909516px;}
.h10{height:38.272800px;}
.hb{height:41.421885px;}
.h15{height:43.680000px;}
.h8{height:45.245443px;}
.h2{height:47.381836px;}
.hf{height:48.048000px;}
.h17{height:51.720000px;}
.h18{height:52.080000px;}
.h7{height:54.531229px;}
.ha{height:55.380908px;}
.hd{height:56.892000px;}
.h16{height:57.288000px;}
.h9{height:57.540078px;}
.h12{height:57.778708px;}
.h3{height:57.911133px;}
.hc{height:58.297852px;}
.he{height:66.058597px;}
.h11{height:356.300385px;}
.h4{height:1098.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:297.637410px;}
.w2{width:892.912500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:13.918902px;}
.x13{left:22.229674px;}
.x12{left:30.540439px;}
.x11{left:38.851210px;}
.x7{left:44.492470px;}
.x17{left:71.200937px;}
.x4{left:85.039500px;}
.x18{left:87.225220px;}
.x22{left:93.183000px;}
.xc{left:105.975714px;}
.x5{left:119.191500px;}
.x1a{left:123.466420px;}
.x19{left:126.711470px;}
.x2{left:127.800000px;}
.xa{left:129.944788px;}
.x1{left:137.550000px;}
.xb{left:140.462133px;}
.x3{left:146.216700px;}
.x8{left:155.643370px;}
.x23{left:161.575500px;}
.x1e{left:180.076500px;}
.x16{left:186.056310px;}
.x1b{left:192.174000px;}
.x10{left:195.073041px;}
.x15{left:200.646682px;}
.x1d{left:201.765000px;}
.xd{left:208.198789px;}
.xe{left:209.751567px;}
.xf{left:221.164665px;}
.x20{left:236.478000px;}
.x9{left:266.794270px;}
.x1f{left:304.312500px;}
.x6{left:316.834500px;}
.x1c{left:392.679000px;}
.x21{left:504.979500px;}
@media print{
.v2{vertical-align:-19.360000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.296000pt;}
.ls4{letter-spacing:-0.441941pt;}
.ls2{letter-spacing:-0.270208pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.335801pt;}
.ls3{letter-spacing:0.441941pt;}
.ls8{letter-spacing:2.655733pt;}
.ls1c{letter-spacing:2.909867pt;}
.ls11{letter-spacing:6.512000pt;}
.ls14{letter-spacing:12.554667pt;}
.ls13{letter-spacing:12.757333pt;}
.ls1f{letter-spacing:12.906667pt;}
.lsf{letter-spacing:12.965333pt;}
.ls7{letter-spacing:13.258667pt;}
.ls16{letter-spacing:13.962667pt;}
.ls1b{letter-spacing:14.373333pt;}
.ls17{letter-spacing:14.608000pt;}
.ls9{letter-spacing:14.666667pt;}
.ls19{letter-spacing:14.784000pt;}
.ls21{letter-spacing:14.826667pt;}
.ls5{letter-spacing:14.901333pt;}
.ls23{letter-spacing:15.136000pt;}
.ls10{letter-spacing:15.989333pt;}
.ls18{letter-spacing:16.426667pt;}
.ls1a{letter-spacing:16.485333pt;}
.ls1d{letter-spacing:16.602667pt;}
.ls24{letter-spacing:17.189333pt;}
.ls15{letter-spacing:17.306667pt;}
.ls6{letter-spacing:17.541333pt;}
.lsb{letter-spacing:17.893333pt;}
.lse{letter-spacing:18.010667pt;}
.ls25{letter-spacing:18.304000pt;}
.lsa{letter-spacing:18.597333pt;}
.lsc{letter-spacing:18.656000pt;}
.ls22{letter-spacing:18.832000pt;}
.ls1e{letter-spacing:20.181333pt;}
.ls26{letter-spacing:22.352000pt;}
.ls20{letter-spacing:22.880000pt;}
.lsd{letter-spacing:27.093067pt;}
.ls12{letter-spacing:92.986667pt;}
.ws4a{word-spacing:-14.666667pt;}
.ws7d{word-spacing:-14.643200pt;}
.ws2{word-spacing:-13.810667pt;}
.ws3a{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.249429pt;}
.ws52{word-spacing:-9.765910pt;}
.ws55{word-spacing:-6.570667pt;}
.wsb6{word-spacing:-3.402667pt;}
.wsb2{word-spacing:-3.344000pt;}
.ws40{word-spacing:-3.168000pt;}
.ws31{word-spacing:-3.109333pt;}
.wsb8{word-spacing:-2.992000pt;}
.ws1e{word-spacing:-2.933333pt;}
.ws7e{word-spacing:-2.816000pt;}
.wsb5{word-spacing:-2.522667pt;}
.ws6b{word-spacing:-2.405333pt;}
.ws63{word-spacing:-2.170667pt;}
.ws5b{word-spacing:-2.112000pt;}
.ws5f{word-spacing:-2.053333pt;}
.ws5a{word-spacing:-1.936000pt;}
.ws58{word-spacing:-1.909333pt;}
.ws23{word-spacing:-1.877333pt;}
.ws7b{word-spacing:-1.760000pt;}
.wsa5{word-spacing:-1.701333pt;}
.ws37{word-spacing:-1.642667pt;}
.ws62{word-spacing:-1.584000pt;}
.wsa4{word-spacing:-1.466667pt;}
.ws1d{word-spacing:-1.408000pt;}
.ws43{word-spacing:-1.349333pt;}
.ws8f{word-spacing:-1.290667pt;}
.ws15{word-spacing:-1.232000pt;}
.ws7{word-spacing:-1.104853pt;}
.ws21{word-spacing:-1.056000pt;}
.wsa9{word-spacing:-0.938667pt;}
.ws5{word-spacing:-0.913300pt;}
.ws6a{word-spacing:-0.704000pt;}
.ws69{word-spacing:-0.645333pt;}
.ws60{word-spacing:-0.586667pt;}
.ws6{word-spacing:-0.552427pt;}
.wsbc{word-spacing:-0.480000pt;}
.ws8b{word-spacing:-0.469333pt;}
.ws8{word-spacing:-0.441941pt;}
.ws2e{word-spacing:-0.352000pt;}
.ws76{word-spacing:-0.293333pt;}
.ws85{word-spacing:-0.234667pt;}
.ws3d{word-spacing:-0.176000pt;}
.wsb7{word-spacing:-0.117333pt;}
.ws33{word-spacing:-0.058667pt;}
.ws51{word-spacing:-0.035129pt;}
.wsbb{word-spacing:-0.005333pt;}
.ws3{word-spacing:0.000000pt;}
.ws4e{word-spacing:0.058667pt;}
.ws72{word-spacing:0.117333pt;}
.ws73{word-spacing:0.176000pt;}
.ws14{word-spacing:0.234667pt;}
.ws8a{word-spacing:0.293333pt;}
.ws9d{word-spacing:0.352000pt;}
.ws10{word-spacing:0.441941pt;}
.ws8e{word-spacing:0.469333pt;}
.ws11{word-spacing:0.552427pt;}
.ws81{word-spacing:0.586667pt;}
.wsaa{word-spacing:0.645333pt;}
.ws1b{word-spacing:0.704000pt;}
.ws2f{word-spacing:0.762667pt;}
.wsae{word-spacing:0.821333pt;}
.ws5c{word-spacing:0.880000pt;}
.wsa3{word-spacing:0.938667pt;}
.ws64{word-spacing:0.997333pt;}
.wsa8{word-spacing:1.056000pt;}
.ws46{word-spacing:1.114667pt;}
.ws4f{word-spacing:1.173333pt;}
.wsa0{word-spacing:1.290667pt;}
.ws91{word-spacing:1.349333pt;}
.ws6d{word-spacing:1.408000pt;}
.ws9c{word-spacing:1.525333pt;}
.ws56{word-spacing:1.594667pt;}
.ws48{word-spacing:1.642667pt;}
.ws13{word-spacing:1.760000pt;}
.ws71{word-spacing:1.818667pt;}
.ws5e{word-spacing:1.936000pt;}
.ws8c{word-spacing:1.994667pt;}
.ws2b{word-spacing:2.053333pt;}
.ws82{word-spacing:2.112000pt;}
.ws1f{word-spacing:2.170667pt;}
.ws7c{word-spacing:2.229333pt;}
.ws49{word-spacing:2.288000pt;}
.wsb1{word-spacing:2.405333pt;}
.ws59{word-spacing:2.426667pt;}
.ws9e{word-spacing:2.464000pt;}
.ws38{word-spacing:2.522667pt;}
.ws3f{word-spacing:2.581333pt;}
.ws65{word-spacing:2.640000pt;}
.ws19{word-spacing:2.698667pt;}
.ws77{word-spacing:2.757333pt;}
.wsf{word-spacing:2.762133pt;}
.ws1a{word-spacing:2.816000pt;}
.ws16{word-spacing:2.874667pt;}
.ws90{word-spacing:2.933333pt;}
.ws7f{word-spacing:2.992000pt;}
.ws30{word-spacing:3.050667pt;}
.ws20{word-spacing:3.168000pt;}
.ws25{word-spacing:3.226667pt;}
.ws35{word-spacing:3.285333pt;}
.ws17{word-spacing:3.344000pt;}
.ws6f{word-spacing:3.461333pt;}
.wsaf{word-spacing:3.520000pt;}
.ws27{word-spacing:3.578667pt;}
.ws8d{word-spacing:3.637333pt;}
.ws50{word-spacing:3.696000pt;}
.ws42{word-spacing:3.813333pt;}
.wsa{word-spacing:3.866987pt;}
.ws36{word-spacing:3.872000pt;}
.ws6c{word-spacing:3.930667pt;}
.ws24{word-spacing:3.989333pt;}
.ws6e{word-spacing:4.048000pt;}
.ws7a{word-spacing:4.106667pt;}
.ws9a{word-spacing:4.165333pt;}
.ws3e{word-spacing:4.224000pt;}
.ws41{word-spacing:4.282667pt;}
.wsa1{word-spacing:4.400000pt;}
.wsa7{word-spacing:4.458667pt;}
.ws4d{word-spacing:4.576000pt;}
.ws57{word-spacing:4.624000pt;}
.ws61{word-spacing:4.634667pt;}
.ws94{word-spacing:4.661333pt;}
.ws5d{word-spacing:4.693333pt;}
.wsa2{word-spacing:4.752000pt;}
.ws18{word-spacing:4.810667pt;}
.ws95{word-spacing:4.858667pt;}
.ws70{word-spacing:4.869333pt;}
.ws66{word-spacing:4.986667pt;}
.ws9f{word-spacing:5.045333pt;}
.ws98{word-spacing:5.104000pt;}
.ws86{word-spacing:5.162667pt;}
.ws4c{word-spacing:5.221333pt;}
.ws99{word-spacing:5.280000pt;}
.ws87{word-spacing:5.456000pt;}
.ws80{word-spacing:5.514667pt;}
.wsc{word-spacing:5.524267pt;}
.ws75{word-spacing:5.749333pt;}
.ws1c{word-spacing:5.808000pt;}
.ws88{word-spacing:5.925333pt;}
.ws79{word-spacing:5.984000pt;}
.ws74{word-spacing:6.101333pt;}
.wsb3{word-spacing:6.160000pt;}
.ws44{word-spacing:6.218667pt;}
.ws9b{word-spacing:6.277333pt;}
.wsb9{word-spacing:6.394667pt;}
.ws4b{word-spacing:6.512000pt;}
.ws2c{word-spacing:6.746667pt;}
.wsac{word-spacing:6.805333pt;}
.wsb0{word-spacing:6.864000pt;}
.ws84{word-spacing:7.098667pt;}
.ws78{word-spacing:7.106133pt;}
.ws68{word-spacing:7.157333pt;}
.ws67{word-spacing:7.216000pt;}
.ws47{word-spacing:7.274667pt;}
.ws39{word-spacing:7.392000pt;}
.wsba{word-spacing:7.568000pt;}
.wsab{word-spacing:7.744000pt;}
.ws22{word-spacing:7.861333pt;}
.ws92{word-spacing:7.978667pt;}
.ws96{word-spacing:8.213333pt;}
.ws97{word-spacing:8.272000pt;}
.ws93{word-spacing:8.389333pt;}
.wsb4{word-spacing:8.682667pt;}
.ws89{word-spacing:8.741333pt;}
.wsad{word-spacing:8.800000pt;}
.wsb{word-spacing:8.838827pt;}
.ws26{word-spacing:8.976000pt;}
.wsa6{word-spacing:9.386667pt;}
.ws2d{word-spacing:9.738667pt;}
.wsd{word-spacing:9.943680pt;}
.ws45{word-spacing:10.032000pt;}
.ws28{word-spacing:10.501333pt;}
.ws83{word-spacing:11.146667pt;}
.ws2a{word-spacing:12.085333pt;}
.ws53{word-spacing:14.773333pt;}
.ws29{word-spacing:14.784000pt;}
.ws34{word-spacing:16.250667pt;}
.ws32{word-spacing:19.477333pt;}
.ws9{word-spacing:19.887360pt;}
.wse{word-spacing:25.411627pt;}
.ws3c{word-spacing:39.776000pt;}
.ws12{word-spacing:82.309333pt;}
.ws4{word-spacing:2048.398080pt;}
.ws3b{word-spacing:2091.360000pt;}
.ws54{word-spacing:2091.365333pt;}
.ws0{word-spacing:2091.664000pt;}
._7{margin-left:-9.765910pt;}
._8{margin-left:-6.533333pt;}
._20{margin-left:-4.984533pt;}
._3{margin-left:-3.696000pt;}
._0{margin-left:-2.729600pt;}
._1{margin-left:-0.988800pt;}
._2{width:1.215936pt;}
._a{width:2.909867pt;}
._f{width:10.590933pt;}
._4{width:12.496000pt;}
._c{width:14.021333pt;}
._d{width:15.253333pt;}
._e{width:16.896000pt;}
._9{width:18.535467pt;}
._11{width:19.477333pt;}
._10{width:21.472000pt;}
._b{width:22.469333pt;}
._6{width:39.834667pt;}
._1f{width:76.032000pt;}
._14{width:81.077333pt;}
._5{width:82.368000pt;}
._1a{width:95.031467pt;}
._1d{width:103.840000pt;}
._13{width:139.978667pt;}
._1c{width:172.245333pt;}
._18{width:201.461333pt;}
._1b{width:206.448000pt;}
._12{width:207.593600pt;}
._16{width:237.424000pt;}
._1e{width:254.026667pt;}
._17{width:294.624000pt;}
._19{width:767.184000pt;}
._15{width:791.706667pt;}
.fsb{font-size:35.129172pt;}
.fsa{font-size:35.129173pt;}
.fs7{font-size:39.466667pt;}
.fs3{font-size:40.230933pt;}
.fs6{font-size:43.413867pt;}
.fs2{font-size:45.034667pt;}
.fsc{font-size:46.933333pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs4{font-size:55.242667pt;}
.fs1{font-size:58.666667pt;}
.fs5{font-size:70.253867pt;}
.fs9{font-size:70.258347pt;}
.ya{bottom:-40.480267pt;}
.y0{bottom:0.000000pt;}
.y85{bottom:31.418654pt;}
.y84{bottom:32.700869pt;}
.y62{bottom:34.570667pt;}
.y4{bottom:40.986400pt;}
.y83{bottom:47.841543pt;}
.y61{bottom:88.560000pt;}
.y3{bottom:91.366533pt;}
.yc9{bottom:94.346667pt;}
.y95{bottom:97.053333pt;}
.y132{bottom:103.189333pt;}
.y60{bottom:104.906667pt;}
.y2{bottom:105.766533pt;}
.y157{bottom:110.286667pt;}
.yc8{bottom:111.616000pt;}
.y94{bottom:112.993333pt;}
.y1{bottom:120.166533pt;}
.y131{bottom:120.457333pt;}
.y5f{bottom:121.252000pt;}
.y156{bottom:126.226667pt;}
.yc7{bottom:128.884000pt;}
.y82{bottom:131.985333pt;}
.y8d{bottom:139.504534pt;}
.y93{bottom:141.175365pt;}
.y155{bottom:142.166667pt;}
.y130{bottom:145.022667pt;}
.yc6{bottom:146.152000pt;}
.y5{bottom:146.520000pt;}
.y8c{bottom:149.630518pt;}
.y5e{bottom:156.337333pt;}
.y92{bottom:157.164848pt;}
.y154{bottom:158.108000pt;}
.y8b{bottom:159.756502pt;}
.y12f{bottom:162.292000pt;}
.yc5{bottom:163.421333pt;}
.y8a{bottom:169.882487pt;}
.y5d{bottom:173.605333pt;}
.y153{bottom:174.048000pt;}
.y12e{bottom:179.560000pt;}
.yf0{bottom:180.689333pt;}
.yc4{bottom:184.674667pt;}
.y152{bottom:189.988000pt;}
.y5c{bottom:190.874667pt;}
.y91{bottom:195.974144pt;}
.y12d{bottom:196.829333pt;}
.yef{bottom:197.958667pt;}
.y90{bottom:203.613234pt;}
.y151{bottom:205.928000pt;}
.y5b{bottom:208.142667pt;}
.yee{bottom:215.226667pt;}
.y12c{bottom:221.394667pt;}
.y150{bottom:221.868000pt;}
.yc3{bottom:223.861333pt;}
.y5a{bottom:225.412000pt;}
.y8f{bottom:226.387601pt;}
.yed{bottom:232.496000pt;}
.y8e{bottom:235.741079pt;}
.y14f{bottom:237.809333pt;}
.y12b{bottom:238.662667pt;}
.yc2{bottom:241.129333pt;}
.y59{bottom:242.680000pt;}
.yec{bottom:249.764000pt;}
.y89{bottom:252.851007pt;}
.y14e{bottom:253.749333pt;}
.y12a{bottom:255.932000pt;}
.yc1{bottom:258.398667pt;}
.y88{bottom:262.976992pt;}
.y58{bottom:263.933333pt;}
.yeb{bottom:267.032000pt;}
.y14d{bottom:269.689333pt;}
.y87{bottom:273.102976pt;}
.yc0{bottom:275.666667pt;}
.y180{bottom:277.658667pt;}
.y129{bottom:280.497333pt;}
.y86{bottom:283.228960pt;}
.yff{bottom:284.301333pt;}
.y14c{bottom:285.629333pt;}
.yea{bottom:288.286667pt;}
.ybf{bottom:292.936000pt;}
.y17f{bottom:293.598667pt;}
.y128{bottom:297.766667pt;}
.yfe{bottom:301.569333pt;}
.y57{bottom:307.368000pt;}
.y17e{bottom:309.540000pt;}
.ybe{bottom:310.204000pt;}
.y127{bottom:315.034667pt;}
.y14b{bottom:317.509333pt;}
.yfd{bottom:318.838667pt;}
.ye9{bottom:324.152000pt;}
.y56{bottom:324.637333pt;}
.y17d{bottom:325.480000pt;}
.ybd{bottom:327.472000pt;}
.y14a{bottom:333.450667pt;}
.yfc{bottom:336.106667pt;}
.y126{bottom:339.600000pt;}
.ye8{bottom:341.420000pt;}
.ybc{bottom:344.741333pt;}
.yfb{bottom:353.376000pt;}
.y125{bottom:356.869333pt;}
.y17c{bottom:357.360000pt;}
.y149{bottom:358.024000pt;}
.ye7{bottom:358.689333pt;}
.ybb{bottom:362.009333pt;}
.y55{bottom:368.072000pt;}
.yfa{bottom:370.644000pt;}
.y17b{bottom:373.300000pt;}
.y124{bottom:374.137333pt;}
.y105{bottom:374.629333pt;}
.ye6{bottom:375.957333pt;}
.yba{bottom:379.278667pt;}
.y2f{bottom:381.688949pt;}
.y54{bottom:385.340000pt;}
.yf9{bottom:387.912000pt;}
.y17a{bottom:389.240000pt;}
.y123{bottom:391.406667pt;}
.ye5{bottom:393.226667pt;}
.yb9{bottom:396.546667pt;}
.y2e{bottom:397.364056pt;}
.y53{bottom:402.609333pt;}
.yf8{bottom:405.181333pt;}
.y122{bottom:408.674667pt;}
.ye4{bottom:410.494667pt;}
.y2d{bottom:413.204891pt;}
.yb8{bottom:413.816000pt;}
.y52{bottom:419.877333pt;}
.y179{bottom:421.121333pt;}
.yf7{bottom:422.449333pt;}
.y121{bottom:425.944000pt;}
.y104{bottom:426.302667pt;}
.ye3{bottom:427.762667pt;}
.y2c{bottom:429.211453pt;}
.yb7{bottom:431.084000pt;}
.y178{bottom:437.061333pt;}
.y51{bottom:437.146667pt;}
.yf6{bottom:439.718667pt;}
.y120{bottom:443.212000pt;}
.y2b{bottom:444.886560pt;}
.ye2{bottom:445.032000pt;}
.yb6{bottom:448.352000pt;}
.y148{bottom:450.820000pt;}
.y177{bottom:453.001333pt;}
.y50{bottom:454.414667pt;}
.yf5{bottom:456.986667pt;}
.y11f{bottom:460.480000pt;}
.y2a{bottom:460.893123pt;}
.ye1{bottom:462.300000pt;}
.yb5{bottom:465.621333pt;}
.y147{bottom:468.088000pt;}
.y176{bottom:468.941333pt;}
.y4f{bottom:471.684000pt;}
.y81{bottom:472.545333pt;}
.yf4{bottom:474.256000pt;}
.y29{bottom:476.733957pt;}
.y11e{bottom:477.749333pt;}
.ye0{bottom:479.569333pt;}
.yb4{bottom:482.889333pt;}
.y175{bottom:484.881333pt;}
.y4e{bottom:488.952000pt;}
.y80{bottom:489.813333pt;}
.yf3{bottom:491.524000pt;}
.y28{bottom:492.409064pt;}
.y146{bottom:493.990667pt;}
.ydf{bottom:496.837333pt;}
.yb3{bottom:500.158667pt;}
.y174{bottom:500.822667pt;}
.y11d{bottom:502.314667pt;}
.y4d{bottom:506.221333pt;}
.y7f{bottom:507.082667pt;}
.y27{bottom:508.415627pt;}
.yf2{bottom:512.777333pt;}
.yde{bottom:514.106667pt;}
.y173{bottom:516.762667pt;}
.yb2{bottom:517.426667pt;}
.y11c{bottom:519.584000pt;}
.y4c{bottom:523.489333pt;}
.y26{bottom:524.256461pt;}
.y7e{bottom:524.350667pt;}
.y145{bottom:530.994667pt;}
.ydd{bottom:531.374667pt;}
.y172{bottom:532.702667pt;}
.yb1{bottom:534.696000pt;}
.y25{bottom:540.097296pt;}
.y4b{bottom:540.757333pt;}
.y7d{bottom:541.620000pt;}
.y11b{bottom:544.149333pt;}
.y144{bottom:548.264000pt;}
.ydc{bottom:548.642667pt;}
.yb0{bottom:551.964000pt;}
.y24{bottom:555.938131pt;}
.y4a{bottom:558.026667pt;}
.y7c{bottom:558.888000pt;}
.y11a{bottom:561.417333pt;}
.yf1{bottom:563.146667pt;}
.y171{bottom:564.582667pt;}
.y143{bottom:565.532000pt;}
.ydb{bottom:565.912000pt;}
.yaf{bottom:569.232000pt;}
.y23{bottom:571.944693pt;}
.y49{bottom:575.294667pt;}
.y7b{bottom:576.157333pt;}
.y170{bottom:580.524000pt;}
.y142{bottom:582.801333pt;}
.yda{bottom:583.180000pt;}
.y119{bottom:585.984000pt;}
.yae{bottom:586.501333pt;}
.y22{bottom:587.619800pt;}
.y48{bottom:592.564000pt;}
.y7a{bottom:593.425333pt;}
.y16f{bottom:596.464000pt;}
.y141{bottom:600.069333pt;}
.yd9{bottom:600.449333pt;}
.y21{bottom:603.460635pt;}
.yad{bottom:603.769333pt;}
.y47{bottom:609.832000pt;}
.y118{bottom:610.549333pt;}
.y103{bottom:612.404000pt;}
.y79{bottom:614.678667pt;}
.y140{bottom:617.337333pt;}
.yd8{bottom:617.717333pt;}
.y20{bottom:619.467197pt;}
.yac{bottom:621.038667pt;}
.y46{bottom:627.101333pt;}
.y16e{bottom:628.344000pt;}
.y102{bottom:629.672000pt;}
.y13f{bottom:634.606667pt;}
.yd7{bottom:634.986667pt;}
.y117{bottom:635.114667pt;}
.y1f{bottom:635.142304pt;}
.yab{bottom:642.292000pt;}
.y16d{bottom:644.284000pt;}
.y45{bottom:644.369333pt;}
.y101{bottom:646.941333pt;}
.y1e{bottom:651.148867pt;}
.y13e{bottom:651.874667pt;}
.yd6{bottom:656.240000pt;}
.y78{bottom:659.461333pt;}
.y116{bottom:659.681333pt;}
.y16c{bottom:660.224000pt;}
.y44{bottom:661.637333pt;}
.y100{bottom:664.209333pt;}
.y1d{bottom:666.989701pt;}
.y13d{bottom:669.144000pt;}
.y16b{bottom:676.165333pt;}
.y77{bottom:676.730667pt;}
.y43{bottom:678.906667pt;}
.yaa{bottom:681.478667pt;}
.y115{bottom:682.176000pt;}
.y1c{bottom:682.664808pt;}
.y13c{bottom:686.412000pt;}
.yd5{bottom:692.105333pt;}
.y76{bottom:693.998667pt;}
.y42{bottom:696.174667pt;}
.ya9{bottom:698.746667pt;}
.y114{bottom:699.445333pt;}
.y1b{bottom:702.179280pt;}
.y13b{bottom:703.681333pt;}
.y16a{bottom:708.045333pt;}
.yd4{bottom:709.373333pt;}
.y75{bottom:711.268000pt;}
.y41{bottom:713.444000pt;}
.ya8{bottom:716.016000pt;}
.y13a{bottom:720.949333pt;}
.y113{bottom:722.209333pt;}
.y169{bottom:723.985333pt;}
.yd3{bottom:726.642667pt;}
.y74{bottom:728.536000pt;}
.y40{bottom:730.712000pt;}
.y1a{bottom:733.225659pt;}
.ya7{bottom:733.284000pt;}
.y139{bottom:738.217333pt;}
.y168{bottom:739.925333pt;}
.yd2{bottom:743.910667pt;}
.y73{bottom:745.805333pt;}
.y3f{bottom:747.981333pt;}
.y19{bottom:749.232221pt;}
.ya6{bottom:750.553333pt;}
.y112{bottom:754.050667pt;}
.y138{bottom:755.486667pt;}
.y167{bottom:755.865333pt;}
.yd1{bottom:761.180000pt;}
.y72{bottom:763.073333pt;}
.y18{bottom:765.073056pt;}
.y3e{bottom:765.249333pt;}
.ya5{bottom:767.821333pt;}
.y111{bottom:771.320000pt;}
.y166{bottom:771.806667pt;}
.y137{bottom:772.754667pt;}
.yd0{bottom:778.448000pt;}
.y71{bottom:780.342667pt;}
.y17{bottom:780.430517pt;}
.y3d{bottom:782.517333pt;}
.ya4{bottom:785.089333pt;}
.y165{bottom:787.746667pt;}
.y110{bottom:788.588000pt;}
.y136{bottom:790.024000pt;}
.ycf{bottom:795.716000pt;}
.y16{bottom:796.437080pt;}
.y70{bottom:797.610667pt;}
.y3c{bottom:799.786667pt;}
.ya3{bottom:802.358667pt;}
.y164{bottom:803.686667pt;}
.y10f{bottom:805.857333pt;}
.y135{bottom:807.292000pt;}
.y15{bottom:812.277915pt;}
.yce{bottom:812.985333pt;}
.y6f{bottom:814.878667pt;}
.y3b{bottom:817.054667pt;}
.ya2{bottom:819.626667pt;}
.y10e{bottom:823.125333pt;}
.y134{bottom:824.561333pt;}
.y14{bottom:828.118749pt;}
.ycd{bottom:830.253333pt;}
.y6e{bottom:832.148000pt;}
.y3a{bottom:834.324000pt;}
.y163{bottom:835.566667pt;}
.ya1{bottom:836.896000pt;}
.y10d{bottom:840.394667pt;}
.y13{bottom:843.959584pt;}
.ycc{bottom:847.522667pt;}
.y6d{bottom:849.416000pt;}
.y133{bottom:850.464000pt;}
.y162{bottom:851.506667pt;}
.y39{bottom:851.592000pt;}
.ya0{bottom:854.164000pt;}
.y10c{bottom:857.662667pt;}
.y12{bottom:859.800419pt;}
.y6c{bottom:866.685333pt;}
.y161{bottom:867.448000pt;}
.ycb{bottom:868.776000pt;}
.y38{bottom:868.861333pt;}
.y9f{bottom:871.433333pt;}
.y10b{bottom:874.930667pt;}
.y11{bottom:875.641253pt;}
.y160{bottom:883.388000pt;}
.y6b{bottom:883.953333pt;}
.y37{bottom:886.129333pt;}
.y9e{bottom:888.701333pt;}
.y10{bottom:891.799733pt;}
.y10a{bottom:892.200000pt;}
.y15f{bottom:899.328000pt;}
.y6a{bottom:901.222667pt;}
.y36{bottom:903.397333pt;}
.yca{bottom:904.641333pt;}
.y9d{bottom:905.969333pt;}
.y109{bottom:909.468000pt;}
.y15e{bottom:915.268000pt;}
.yf{bottom:917.398575pt;}
.y69{bottom:918.490667pt;}
.y35{bottom:920.666667pt;}
.y9c{bottom:923.238667pt;}
.y108{bottom:926.737333pt;}
.y15d{bottom:931.208000pt;}
.y68{bottom:935.758667pt;}
.y34{bottom:937.934667pt;}
.y9b{bottom:940.506667pt;}
.ye{bottom:942.040118pt;}
.y107{bottom:944.005333pt;}
.y15c{bottom:947.149333pt;}
.y67{bottom:953.028000pt;}
.y33{bottom:955.204000pt;}
.y9a{bottom:957.776000pt;}
.y15b{bottom:963.089333pt;}
.y6{bottom:965.599733pt;}
.yd{bottom:966.839733pt;}
.y106{bottom:969.908000pt;}
.y66{bottom:970.296000pt;}
.y32{bottom:972.472000pt;}
.y99{bottom:975.044000pt;}
.y15a{bottom:979.029333pt;}
.y65{bottom:987.565333pt;}
.y31{bottom:989.741333pt;}
.y98{bottom:992.313333pt;}
.y159{bottom:994.969333pt;}
.y64{bottom:1004.833333pt;}
.yc{bottom:1005.564109pt;}
.y97{bottom:1009.581333pt;}
.y158{bottom:1010.909333pt;}
.y30{bottom:1015.644000pt;}
.y63{bottom:1026.086667pt;}
.y96{bottom:1026.849333pt;}
.yb{bottom:1038.999733pt;}
.y9{bottom:1073.242283pt;}
.y8{bottom:1086.201008pt;}
.y7{bottom:1099.159733pt;}
.h14{height:25.679425pt;}
.h13{height:25.679426pt;}
.h5{height:32.786469pt;}
.h6{height:32.808458pt;}
.h10{height:34.020267pt;}
.hb{height:36.819453pt;}
.h15{height:38.826667pt;}
.h8{height:40.218172pt;}
.h2{height:42.117188pt;}
.hf{height:42.709333pt;}
.h17{height:45.973333pt;}
.h18{height:46.293333pt;}
.h7{height:48.472203pt;}
.ha{height:49.227474pt;}
.hd{height:50.570667pt;}
.h16{height:50.922667pt;}
.h9{height:51.146736pt;}
.h12{height:51.358851pt;}
.h3{height:51.476562pt;}
.hc{height:51.820312pt;}
.he{height:58.718753pt;}
.h11{height:316.711453pt;}
.h4{height:976.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:264.566587pt;}
.w2{width:793.700000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:12.372358pt;}
.x13{left:19.759710pt;}
.x12{left:27.147057pt;}
.x11{left:34.534409pt;}
.x7{left:39.548862pt;}
.x17{left:63.289722pt;}
.x4{left:75.590667pt;}
.x18{left:77.533529pt;}
.x22{left:82.829333pt;}
.xc{left:94.200635pt;}
.x5{left:105.948000pt;}
.x1a{left:109.747929pt;}
.x19{left:112.632418pt;}
.x2{left:113.600000pt;}
.xa{left:115.506478pt;}
.x1{left:122.266667pt;}
.xb{left:124.855230pt;}
.x3{left:129.970400pt;}
.x8{left:138.349662pt;}
.x23{left:143.622667pt;}
.x1e{left:160.068000pt;}
.x16{left:165.383387pt;}
.x1b{left:170.821333pt;}
.x10{left:173.398258pt;}
.x15{left:178.352606pt;}
.x1d{left:179.346667pt;}
.xd{left:185.065590pt;}
.xe{left:186.445837pt;}
.xf{left:196.590813pt;}
.x20{left:210.202667pt;}
.x9{left:237.150462pt;}
.x1f{left:270.500000pt;}
.x6{left:281.630667pt;}
.x1c{left:349.048000pt;}
.x21{left:448.870667pt;}
}


body.paper-page .doc-shell[data-scieee-split-doc="1"] #page-container {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: max-content !important;
  min-width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] #sidebar,
body.paper-page .doc-shell[data-scieee-split-doc="1"] .loading-indicator {
  display: none !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] .pf {
  display: block !important;
  position: relative !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
