
/* 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_929ea2f96037.woff")format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_f7620a4cee80.woff")format("woff");}.ff2{font-family:ff2;line-height:0.965820;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_5a805dd24f66.woff")format("woff");}.ff3{font-family:ff3;line-height:0.750000;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_7ebf26935308.woff")format("woff");}.ff4{font-family:ff4;line-height:0.766602;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_0e105399ba85.woff")format("woff");}.ff5{font-family:ff5;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:ff6;src:url("fonts/font_0005_4420cf94c6a3.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_578e527fef8b.woff")format("woff");}.ff7{font-family:ff7;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:ff8;src:url("fonts/font_0007_717ec18e57bf.woff")format("woff");}.ff8{font-family:ff8;line-height:1.330566;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_d097b0bf474b.woff")format("woff");}.ff9{font-family:ff9;line-height:1.649414;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_a14f01d68dfa.woff")format("woff");}.ffa{font-family:ffa;line-height:0.926270;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_cca797b91419.woff")format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v3{vertical-align:-27.360000px;}
.v10{vertical-align:-20.880000px;}
.v7{vertical-align:-14.400000px;}
.v9{vertical-align:-10.080000px;}
.vf{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:14.400000px;}
.v1{vertical-align:21.016800px;}
.v2{vertical-align:27.360000px;}
.v4{vertical-align:35.989200px;}
.ve{vertical-align:41.040000px;}
.v8{vertical-align:56.896800px;}
.vb{vertical-align:67.680000px;}
.v5{vertical-align:78.469200px;}
.va{vertical-align:81.342720px;}
.vc{vertical-align:82.772400px;}
.v6{vertical-align:97.189200px;}
.ls44{letter-spacing:-1.512000px;}
.ls36{letter-spacing:-1.440000px;}
.ls52{letter-spacing:-1.374480px;}
.ls5e{letter-spacing:-1.135440px;}
.ls5d{letter-spacing:-1.008000px;}
.ls11{letter-spacing:-0.810000px;}
.ls38{letter-spacing:-0.720000px;}
.ls5f{letter-spacing:-0.675360px;}
.ls51{letter-spacing:-0.478080px;}
.ls12{letter-spacing:-0.378000px;}
.ls15{letter-spacing:-0.358560px;}
.lsf{letter-spacing:-0.336960px;}
.ls17{letter-spacing:-0.288000px;}
.ls43{letter-spacing:-0.239040px;}
.ls13{letter-spacing:-0.216000px;}
.ls60{letter-spacing:-0.144720px;}
.ls42{letter-spacing:-0.144000px;}
.ls37{letter-spacing:-0.072000px;}
.ls14{letter-spacing:-0.059760px;}
.ls3a{letter-spacing:-0.051120px;}
.ls0{letter-spacing:0.000000px;}
.ls46{letter-spacing:0.059760px;}
.ls29{letter-spacing:0.072000px;}
.ls39{letter-spacing:0.102240px;}
.ls3{letter-spacing:0.108000px;}
.ls6{letter-spacing:0.119520px;}
.lsb{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.162000px;}
.ls8{letter-spacing:0.179280px;}
.ls9{letter-spacing:0.185256px;}
.ls2f{letter-spacing:0.192960px;}
.ls7{letter-spacing:0.221112px;}
.ls41{letter-spacing:0.239040px;}
.ls63{letter-spacing:0.274896px;}
.ls16{letter-spacing:0.288000px;}
.ls61{letter-spacing:0.292824px;}
.ls33{letter-spacing:0.306600px;}
.lse{letter-spacing:0.336960px;}
.ls5{letter-spacing:0.358560px;}
.ls20{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.378000px;}
.ls3b{letter-spacing:0.385920px;}
.ls18{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.756000px;}
.ls53{letter-spacing:0.896400px;}
.ls1f{letter-spacing:1.080000px;}
.ls2d{letter-spacing:1.152000px;}
.ls32{letter-spacing:1.278000px;}
.ls2c{letter-spacing:1.296000px;}
.ls5c{letter-spacing:1.440000px;}
.ls22{letter-spacing:1.533600px;}
.ls23{letter-spacing:1.948320px;}
.ls19{letter-spacing:2.160000px;}
.ls4{letter-spacing:2.330640px;}
.ls1b{letter-spacing:2.512800px;}
.ls3d{letter-spacing:2.880000px;}
.lsc{letter-spacing:3.600000px;}
.ls64{letter-spacing:3.842568px;}
.ls2e{letter-spacing:3.939120px;}
.ls27{letter-spacing:4.147200px;}
.ls3c{letter-spacing:4.150200px;}
.ls28{letter-spacing:4.320000px;}
.ls2a{letter-spacing:4.348080px;}
.ls2b{letter-spacing:4.361040px;}
.ls3f{letter-spacing:5.040000px;}
.ls62{letter-spacing:7.350480px;}
.ls3e{letter-spacing:10.800000px;}
.lsd{letter-spacing:13.680000px;}
.ls1a{letter-spacing:16.056000px;}
.ls30{letter-spacing:16.272000px;}
.ls1d{letter-spacing:16.409400px;}
.ls31{letter-spacing:16.992000px;}
.ls24{letter-spacing:17.125200px;}
.ls45{letter-spacing:17.280000px;}
.ls25{letter-spacing:17.841000px;}
.ls34{letter-spacing:19.272600px;}
.ls35{letter-spacing:19.440000px;}
.ls1e{letter-spacing:19.656000px;}
.ls21{letter-spacing:25.398720px;}
.ls26{letter-spacing:26.118720px;}
.ls1c{letter-spacing:31.176000px;}
.ls40{letter-spacing:47.520000px;}
.ls47{letter-spacing:108.165600px;}
.ls4a{letter-spacing:135.535680px;}
.ls5a{letter-spacing:136.252800px;}
.ls56{letter-spacing:144.918000px;}
.ls49{letter-spacing:145.635120px;}
.ls5b{letter-spacing:147.786480px;}
.ls59{letter-spacing:151.372080px;}
.ls48{letter-spacing:160.037280px;}
.ls58{letter-spacing:166.491360px;}
.ls57{letter-spacing:181.610640px;}
.ls4b{letter-spacing:182.327760px;}
.ls4d{letter-spacing:189.558720px;}
.ls50{letter-spacing:196.729920px;}
.ls4c{letter-spacing:316.249920px;}
.ls4e{letter-spacing:322.763760px;}
.ls4f{letter-spacing:328.500720px;}
.ls55{letter-spacing:498.398400px;}
.ls54{letter-spacing:502.043760px;}
.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;}
}
.ws43{word-spacing:-72.000000px;}
.ws48{word-spacing:-51.840000px;}
.ws39{word-spacing:-51.222240px;}
.ws37{word-spacing:-51.120000px;}
.ws40{word-spacing:-51.068880px;}
.ws45{word-spacing:-40.104000px;}
.ws4f{word-spacing:-38.373120px;}
.ws50{word-spacing:-38.360280px;}
.ws42{word-spacing:-38.339280px;}
.ws46{word-spacing:-38.330640px;}
.ws47{word-spacing:-37.640040px;}
.ws44{word-spacing:-36.208680px;}
.ws55{word-spacing:-34.763760px;}
.ws56{word-spacing:-34.035120px;}
.ws54{word-spacing:-32.063040px;}
.ws38{word-spacing:-29.216880px;}
.ws9f{word-spacing:-18.288000px;}
.ws53{word-spacing:-18.144000px;}
.wsb{word-spacing:-18.000000px;}
.ws36{word-spacing:-17.928000px;}
.ws6c{word-spacing:-17.856000px;}
.ws3d{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.ws3b{word-spacing:-16.753680px;}
.ws3a{word-spacing:-16.749360px;}
.ws6e{word-spacing:-15.298560px;}
.ws9e{word-spacing:-15.179040px;}
.ws7{word-spacing:-15.059520px;}
.ws93{word-spacing:-14.999760px;}
.ws8{word-spacing:-14.940000px;}
.ws6d{word-spacing:-14.880240px;}
.ws4c{word-spacing:-14.781600px;}
.wsae{word-spacing:-14.700960px;}
.ws80{word-spacing:-14.581440px;}
.ws5{word-spacing:-13.878000px;}
.ws3{word-spacing:-13.608000px;}
.ws6{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.284000px;}
.ws2{word-spacing:-13.122000px;}
.ws3e{word-spacing:-12.659760px;}
.ws52{word-spacing:-12.445920px;}
.wsc{word-spacing:-12.060000px;}
.ws95{word-spacing:-11.915280px;}
.ws94{word-spacing:-11.384640px;}
.ws9{word-spacing:-9.720000px;}
.ws4e{word-spacing:-5.227200px;}
.ws5c{word-spacing:-4.320000px;}
.ws8a{word-spacing:-4.032000px;}
.ws41{word-spacing:-3.796560px;}
.wsb2{word-spacing:-3.764880px;}
.ws21{word-spacing:-3.744000px;}
.ws6b{word-spacing:-3.600000px;}
.wsa1{word-spacing:-3.047760px;}
.ws2b{word-spacing:-2.880000px;}
.wsa0{word-spacing:-2.808720px;}
.ws9c{word-spacing:-2.592000px;}
.ws4d{word-spacing:-2.365200px;}
.ws3f{word-spacing:-2.364480px;}
.ws7e{word-spacing:-2.330640px;}
.ws30{word-spacing:-2.160000px;}
.ws7c{word-spacing:-2.091600px;}
.ws31{word-spacing:-1.872000px;}
.ws7d{word-spacing:-1.613520px;}
.wsa2{word-spacing:-1.494000px;}
.ws5d{word-spacing:-1.440000px;}
.wsc0{word-spacing:-1.434240px;}
.wsbe{word-spacing:-1.374480px;}
.wsbf{word-spacing:-1.195200px;}
.ws2f{word-spacing:-1.152000px;}
.ws8c{word-spacing:-0.896400px;}
.ws29{word-spacing:-0.864000px;}
.ws28{word-spacing:-0.720000px;}
.ws8d{word-spacing:-0.657360px;}
.wsd{word-spacing:-0.505440px;}
.ws2a{word-spacing:-0.432000px;}
.ws97{word-spacing:-0.385920px;}
.ws14{word-spacing:-0.378000px;}
.ws91{word-spacing:-0.358560px;}
.ws8b{word-spacing:-0.298800px;}
.ws20{word-spacing:-0.288000px;}
.ws7f{word-spacing:-0.239040px;}
.ws11{word-spacing:-0.216000px;}
.wsf{word-spacing:-0.179280px;}
.ws32{word-spacing:-0.144000px;}
.ws92{word-spacing:-0.119520px;}
.ws66{word-spacing:-0.102240px;}
.ws4b{word-spacing:-0.072000px;}
.ws90{word-spacing:-0.059760px;}
.ws49{word-spacing:-0.051120px;}
.ws0{word-spacing:0.000000px;}
.ws10{word-spacing:0.054000px;}
.ws18{word-spacing:0.059760px;}
.wse{word-spacing:0.168480px;}
.ws67{word-spacing:0.216000px;}
.ws1f{word-spacing:0.239040px;}
.ws22{word-spacing:0.288000px;}
.ws1d{word-spacing:0.358560px;}
.ws13{word-spacing:0.378000px;}
.ws79{word-spacing:0.418320px;}
.ws9b{word-spacing:0.478080px;}
.ws1e{word-spacing:0.537840px;}
.ws15{word-spacing:0.540000px;}
.ws8e{word-spacing:0.657360px;}
.ws26{word-spacing:0.720000px;}
.ws19{word-spacing:0.776880px;}
.ws1a{word-spacing:0.956160px;}
.ws12{word-spacing:0.972000px;}
.ws25{word-spacing:1.008000px;}
.ws99{word-spacing:1.135440px;}
.ws59{word-spacing:1.296000px;}
.ws9a{word-spacing:1.314720px;}
.ws58{word-spacing:1.440000px;}
.ws7a{word-spacing:1.512000px;}
.ws8f{word-spacing:1.553760px;}
.ws27{word-spacing:1.728000px;}
.ws16{word-spacing:1.972080px;}
.ws65{word-spacing:2.160000px;}
.ws17{word-spacing:2.211120px;}
.ws74{word-spacing:2.448000px;}
.ws1c{word-spacing:2.689200px;}
.ws7b{word-spacing:2.736000px;}
.ws6a{word-spacing:2.808000px;}
.ws2c{word-spacing:2.880000px;}
.ws70{word-spacing:3.168000px;}
.wsbc{word-spacing:3.406320px;}
.ws83{word-spacing:3.456000px;}
.ws24{word-spacing:3.600000px;}
.wsbd{word-spacing:3.645360px;}
.ws84{word-spacing:3.888000px;}
.ws60{word-spacing:4.320000px;}
.ws9d{word-spacing:4.536000px;}
.ws68{word-spacing:4.608000px;}
.ws76{word-spacing:5.040000px;}
.ws75{word-spacing:5.328000px;}
.wsa4{word-spacing:5.760000px;}
.wsa3{word-spacing:6.048000px;}
.wsab{word-spacing:6.274800px;}
.ws5e{word-spacing:6.336000px;}
.ws5f{word-spacing:6.480000px;}
.wsaa{word-spacing:6.513840px;}
.ws98{word-spacing:6.768000px;}
.wsb4{word-spacing:7.051680px;}
.wsa6{word-spacing:7.056000px;}
.ws77{word-spacing:7.200000px;}
.ws78{word-spacing:7.488000px;}
.ws88{word-spacing:7.776000px;}
.ws87{word-spacing:7.920000px;}
.ws86{word-spacing:8.208000px;}
.wsb6{word-spacing:8.485920px;}
.wsad{word-spacing:8.904240px;}
.wsac{word-spacing:9.083520px;}
.wsb7{word-spacing:9.203040px;}
.ws2d{word-spacing:9.216000px;}
.ws2e{word-spacing:9.360000px;}
.wsb5{word-spacing:9.442080px;}
.wsb0{word-spacing:9.920160px;}
.ws73{word-spacing:10.080000px;}
.wsaf{word-spacing:10.159200px;}
.ws72{word-spacing:10.368000px;}
.wsb8{word-spacing:10.637280px;}
.ws96{word-spacing:10.656000px;}
.ws71{word-spacing:10.800000px;}
.wsbb{word-spacing:10.816560px;}
.wsba{word-spacing:10.876320px;}
.wsb9{word-spacing:11.055600px;}
.wsb3{word-spacing:11.354400px;}
.ws23{word-spacing:11.520000px;}
.ws64{word-spacing:11.808000px;}
.wsa5{word-spacing:12.240000px;}
.ws1b{word-spacing:12.788640px;}
.ws63{word-spacing:12.816000px;}
.ws62{word-spacing:12.960000px;}
.wsb1{word-spacing:13.027680px;}
.ws61{word-spacing:13.248000px;}
.ws85{word-spacing:13.536000px;}
.ws34{word-spacing:13.680000px;}
.ws35{word-spacing:13.968000px;}
.ws6f{word-spacing:14.400000px;}
.ws57{word-spacing:15.696000px;}
.ws33{word-spacing:16.560000px;}
.ws89{word-spacing:17.280000px;}
.ws51{word-spacing:17.812800px;}
.ws5a{word-spacing:17.856000px;}
.ws5b{word-spacing:18.000000px;}
.ws4a{word-spacing:19.244160px;}
.ws82{word-spacing:19.296000px;}
.ws81{word-spacing:19.440000px;}
.ws3c{word-spacing:19.584000px;}
.wsa8{word-spacing:21.456000px;}
.wsa7{word-spacing:21.600000px;}
.ws69{word-spacing:22.608000px;}
.wsa9{word-spacing:45.360000px;}
.ws1{word-spacing:52.488000px;}
._a{margin-left:-14.011920px;}
._6{margin-left:-9.373536px;}
._2{margin-left:-3.849840px;}
._0{margin-left:-1.760616px;}
._1{width:1.381536px;}
._3{width:2.467080px;}
._9{width:3.564000px;}
._8{width:5.195160px;}
._4{width:8.496000px;}
._c{width:11.146464px;}
._b{width:12.272616px;}
._7{width:13.333536px;}
._5{width:15.538464px;}
._d{width:19.080000px;}
._13{width:159.917760px;}
._f{width:295.035120px;}
._12{width:302.206320px;}
._e{width:368.121600px;}
._10{width:375.651360px;}
._11{width:380.372400px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(81,81,81);}
.fc1{color:rgb(1,2,2);}
.fc0{color:rgb(95,95,96);}
.fs6{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:48.240000px;}
.fs9{font-size:51.120000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:2.526000px;}
.y85{bottom:4.320000px;}
.yae{bottom:5.760000px;}
.ycc{bottom:6.300000px;}
.yc9{bottom:11.340000px;}
.y3c{bottom:40.800110px;}
.y6c{bottom:89.102700px;}
.y6d{bottom:89.106900px;}
.y90{bottom:92.694420px;}
.y3b{bottom:101.700000px;}
.y3{bottom:103.411350px;}
.y6b{bottom:108.720000px;}
.y8f{bottom:109.980000px;}
.y2{bottom:117.811350px;}
.yf6{bottom:118.260000px;}
.y3a{bottom:122.400000px;}
.y8e{bottom:123.660000px;}
.y1{bottom:132.211350px;}
.y6a{bottom:136.980000px;}
.yf5{bottom:140.040000px;}
.y39{bottom:143.100000px;}
.y4{bottom:146.059350px;}
.yba{bottom:151.200000px;}
.yf4{bottom:157.320000px;}
.y38{bottom:163.800000px;}
.y69{bottom:169.740000px;}
.yf3{bottom:174.600000px;}
.yb9{bottom:176.040000px;}
.y37{bottom:184.500000px;}
.y68{bottom:190.440000px;}
.yb8{bottom:198.720000px;}
.yf2{bottom:201.060000px;}
.y36{bottom:205.200000px;}
.y67{bottom:211.140000px;}
.yd9{bottom:217.440000px;}
.yb7{bottom:221.220000px;}
.y35{bottom:225.900000px;}
.y66{bottom:231.840000px;}
.ya{bottom:233.635350px;}
.yb6{bottom:237.780000px;}
.yd8{bottom:238.140000px;}
.y34{bottom:246.600000px;}
.y9{bottom:248.035350px;}
.yf1{bottom:249.480000px;}
.y65{bottom:252.540000px;}
.yd7{bottom:258.840000px;}
.yb5{bottom:260.100000px;}
.y8{bottom:262.435350px;}
.yf0{bottom:270.180000px;}
.y64{bottom:273.240000px;}
.y33{bottom:276.300000px;}
.yd6{bottom:279.540000px;}
.yb4{bottom:282.420000px;}
.yef{bottom:290.880000px;}
.y7{bottom:291.235350px;}
.y63{bottom:293.940000px;}
.y32{bottom:297.000000px;}
.yd5{bottom:300.240000px;}
.y6{bottom:305.635350px;}
.yee{bottom:311.580000px;}
.yb3{bottom:312.480000px;}
.y31{bottom:317.700000px;}
.y5{bottom:320.035350px;}
.yd4{bottom:320.760000px;}
.y62{bottom:326.520000px;}
.yed{bottom:332.280000px;}
.yb2{bottom:335.340000px;}
.y30{bottom:338.400000px;}
.yd3{bottom:341.460000px;}
.y61{bottom:347.760000px;}
.yb1{bottom:357.660000px;}
.y2f{bottom:359.100000px;}
.yec{bottom:361.620000px;}
.yd2{bottom:362.160000px;}
.y60{bottom:370.800000px;}
.y8d{bottom:372.060000px;}
.yb0{bottom:374.220000px;}
.y2e{bottom:379.800000px;}
.yd1{bottom:382.860000px;}
.y5f{bottom:392.040000px;}
.y8c{bottom:392.760000px;}
.yaf{bottom:396.540000px;}
.y2d{bottom:400.500000px;}
.yd0{bottom:403.560000px;}
.yeb{bottom:410.040000px;}
.y8b{bottom:413.460000px;}
.yad{bottom:418.860000px;}
.y2c{bottom:421.200000px;}
.y5e{bottom:425.334240px;}
.y5d{bottom:425.340000px;}
.y5b{bottom:425.342700px;}
.y5c{bottom:425.346900px;}
.ycf{bottom:426.960000px;}
.yea{bottom:430.740000px;}
.y8a{bottom:434.160000px;}
.y2b{bottom:441.900000px;}
.y5a{bottom:444.960000px;}
.yce{bottom:450.180000px;}
.ye9{bottom:451.440000px;}
.y89{bottom:454.860000px;}
.yac{bottom:455.394420px;}
.y2a{bottom:462.600000px;}
.ye8{bottom:472.140000px;}
.yab{bottom:472.680000px;}
.ycd{bottom:473.580000px;}
.y59{bottom:475.014240px;}
.y58{bottom:475.020000px;}
.y56{bottom:475.022700px;}
.y57{bottom:475.026900px;}
.y88{bottom:475.560000px;}
.y29{bottom:483.300000px;}
.ycb{bottom:490.500000px;}
.ye7{bottom:492.840000px;}
.y55{bottom:494.640000px;}
.y87{bottom:496.260000px;}
.y28{bottom:504.000000px;}
.yaa{bottom:508.500000px;}
.y86{bottom:513.360000px;}
.ye6{bottom:513.540000px;}
.yc8{bottom:513.720000px;}
.y112{bottom:515.700000px;}
.yca{bottom:520.020000px;}
.y54{bottom:522.362700px;}
.y27{bottom:524.700000px;}
.ya9{bottom:529.200000px;}
.ye5{bottom:534.240000px;}
.y84{bottom:534.780000px;}
.y111{bottom:540.000000px;}
.y53{bottom:541.980000px;}
.y26{bottom:545.400000px;}
.yc7{bottom:549.534420px;}
.ya8{bottom:549.900000px;}
.ye4{bottom:554.940000px;}
.y110{bottom:557.280000px;}
.y82{bottom:563.940000px;}
.yc6{bottom:566.820000px;}
.y52{bottom:570.060000px;}
.ya7{bottom:570.600000px;}
.y81{bottom:574.380000px;}
.y25{bottom:574.560000px;}
.ye3{bottom:575.640000px;}
.y10f{bottom:579.060000px;}
.y83{bottom:584.640000px;}
.y51{bottom:590.760000px;}
.ya6{bottom:591.300000px;}
.ye2{bottom:596.340000px;}
.yc5{bottom:602.820000px;}
.y50{bottom:611.460000px;}
.ya5{bottom:612.000000px;}
.y80{bottom:613.620000px;}
.ye1{bottom:617.040000px;}
.y10e{bottom:618.120000px;}
.y24{bottom:622.252260px;}
.yc4{bottom:623.520000px;}
.ya4{bottom:632.700000px;}
.y10d{bottom:635.400000px;}
.ye0{bottom:637.740000px;}
.y7f{bottom:639.360000px;}
.y4f{bottom:640.800000px;}
.yc3{bottom:644.220000px;}
.y10c{bottom:652.680000px;}
.ya3{bottom:653.400000px;}
.ydf{bottom:658.440000px;}
.y7e{bottom:659.340000px;}
.yc2{bottom:664.920000px;}
.y23{bottom:666.534420px;}
.y10b{bottom:669.780000px;}
.ya2{bottom:674.100000px;}
.yde{bottom:679.140000px;}
.y4e{bottom:679.860000px;}
.y22{bottom:683.785800px;}
.yc1{bottom:685.620000px;}
.y10a{bottom:691.560000px;}
.ya1{bottom:694.800000px;}
.y7d{bottom:695.160000px;}
.y4d{bottom:700.560000px;}
.y21{bottom:701.071380px;}
.yc0{bottom:706.320000px;}
.ydd{bottom:708.300000px;}
.y109{bottom:708.840000px;}
.ya0{bottom:715.500000px;}
.y7c{bottom:715.860000px;}
.y20{bottom:718.177680px;}
.y4c{bottom:721.260000px;}
.y108{bottom:726.120000px;}
.ybf{bottom:727.020000px;}
.y1f{bottom:735.463260px;}
.y9f{bottom:736.200000px;}
.y7b{bottom:736.560000px;}
.y4b{bottom:741.960000px;}
.ybe{bottom:747.720000px;}
.y107{bottom:747.871920px;}
.y1e{bottom:752.748840px;}
.ydc{bottom:755.994420px;}
.y9e{bottom:756.900000px;}
.y7a{bottom:757.260000px;}
.y4a{bottom:762.660000px;}
.y106{bottom:765.157500px;}
.y11{bottom:767.491500px;}
.ybd{bottom:768.420000px;}
.y1d{bottom:770.034420px;}
.ydb{bottom:773.280000px;}
.y9d{bottom:777.600000px;}
.y79{bottom:777.960000px;}
.y49{bottom:783.360000px;}
.y10{bottom:784.041000px;}
.y105{bottom:786.760740px;}
.yda{bottom:786.960000px;}
.y1c{bottom:787.320000px;}
.ybc{bottom:797.400000px;}
.y9c{bottom:798.300000px;}
.y78{bottom:798.660000px;}
.y104{bottom:804.046320px;}
.y48{bottom:804.060000px;}
.ybb{bottom:811.080000px;}
.y9b{bottom:819.000000px;}
.y77{bottom:819.360000px;}
.y47{bottom:824.760000px;}
.y103{bottom:825.828840px;}
.y1b{bottom:831.231000px;}
.y9a{bottom:839.700000px;}
.y76{bottom:840.060000px;}
.y102{bottom:843.114420px;}
.y46{bottom:845.460000px;}
.y1a{bottom:847.606500px;}
.y99{bottom:860.400000px;}
.y19{bottom:864.171000px;}
.y45{bottom:866.160000px;}
.y75{bottom:869.400000px;}
.y18{bottom:880.735500px;}
.y98{bottom:881.100000px;}
.y101{bottom:882.000000px;}
.yf{bottom:883.992000px;}
.y44{bottom:886.860000px;}
.y17{bottom:897.111000px;}
.y100{bottom:899.280000px;}
.y97{bottom:901.800000px;}
.y43{bottom:907.560000px;}
.y74{bottom:910.080000px;}
.y16{bottom:913.675500px;}
.yff{bottom:921.060000px;}
.ye{bottom:927.192000px;}
.y15{bottom:930.240000px;}
.y96{bottom:931.140000px;}
.y73{bottom:932.580000px;}
.y42{bottom:936.900000px;}
.yfe{bottom:938.340000px;}
.yfd{bottom:955.620000px;}
.y72{bottom:963.900000px;}
.y14{bottom:964.620000px;}
.y95{bottom:970.200000px;}
.yd{bottom:970.392000px;}
.y41{bottom:975.600000px;}
.yfc{bottom:977.220000px;}
.y71{bottom:986.220000px;}
.y94{bottom:990.900000px;}
.yfb{bottom:994.500000px;}
.y70{bottom:1008.540000px;}
.y13{bottom:1011.056760px;}
.y93{bottom:1011.600000px;}
.yc{bottom:1015.431000px;}
.yfa{bottom:1016.280000px;}
.y40{bottom:1024.020000px;}
.y6f{bottom:1030.860000px;}
.y92{bottom:1032.300000px;}
.yf9{bottom:1033.560000px;}
.y12{bottom:1035.360000px;}
.yb{bottom:1037.031000px;}
.y3f{bottom:1044.720000px;}
.yf8{bottom:1050.840000px;}
.y91{bottom:1061.640000px;}
.y6e{bottom:1064.700000px;}
.y3e{bottom:1065.420000px;}
.yf7{bottom:1068.120000px;}
.hd{height:13.200074px;}
.h1c{height:20.700000px;}
.h1b{height:20.701500px;}
.h1e{height:21.600000px;}
.h1f{height:22.500000px;}
.h1{height:36.703125px;}
.h6{height:40.501406px;}
.h7{height:47.381836px;}
.he{height:48.281250px;}
.ha{height:48.796875px;}
.h8{height:52.435898px;}
.h1d{height:54.994922px;}
.h2{height:55.054688px;}
.h9{height:55.131722px;}
.hf{height:56.786133px;}
.h5{height:57.092344px;}
.hb{height:63.175781px;}
.hc{height:69.687773px;}
.h18{height:79.980469px;}
.h11{height:99.164981px;}
.h16{height:99.198821px;}
.h1a{height:104.215781px;}
.h3{height:110.109375px;}
.h19{height:115.952869px;}
.h14{height:135.238533px;}
.h10{height:135.255333px;}
.h15{height:135.266133px;}
.h13{height:135.272133px;}
.h17{height:139.558533px;}
.h12{height:143.577872px;}
.h4{height:1188.000000px;}
.h0{height:1263.000000px;}
.w3{width:6.675000px;}
.wf{width:83.700000px;}
.wc{width:83.880000px;}
.w11{width:84.240000px;}
.w14{width:84.598500px;}
.wb{width:84.600000px;}
.w12{width:84.780000px;}
.w10{width:85.138500px;}
.we{width:88.020000px;}
.w13{width:95.400000px;}
.w4{width:103.498500px;}
.wa{width:142.920000px;}
.wd{width:145.981500px;}
.w7{width:156.240000px;}
.w6{width:166.680000px;}
.w5{width:176.940000px;}
.w8{width:312.120000px;}
.w9{width:318.420000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w2{width:918.000000px;}
.x0{left:0.000000px;}
.x22{left:7.560000px;}
.x2c{left:9.180000px;}
.x29{left:14.220000px;}
.x2d{left:15.840000px;}
.x3e{left:16.920000px;}
.x40{left:18.540000px;}
.x42{left:22.680000px;}
.x38{left:25.560000px;}
.x39{left:27.180000px;}
.x31{left:38.700000px;}
.x33{left:40.320000px;}
.x3c{left:42.480000px;}
.x30{left:55.980000px;}
.x32{left:57.600000px;}
.x1{left:63.723150px;}
.x2{left:106.200000px;}
.x4{left:107.286300px;}
.x36{left:110.340000px;}
.x7{left:111.427020px;}
.x37{left:112.500000px;}
.x1e{left:114.300000px;}
.x26{left:116.460000px;}
.x28{left:118.800000px;}
.x46{left:135.900000px;}
.x47{left:140.580000px;}
.x25{left:142.560000px;}
.x5{left:148.139640px;}
.x34{left:154.260000px;}
.x18{left:156.243240px;}
.x10{left:158.943600px;}
.x8{left:160.023420px;}
.x6{left:193.323960px;}
.x35{left:198.540000px;}
.x3d{left:199.800000px;}
.x19{left:206.644320px;}
.x11{left:211.502340px;}
.x9{left:212.944680px;}
.x1f{left:218.700000px;}
.x1a{left:244.437120px;}
.x12{left:256.497120px;}
.xa{left:258.297120px;}
.x3b{left:262.980000px;}
.x3f{left:284.400000px;}
.x2a{left:285.840000px;}
.x1b{left:298.985940px;}
.x13{left:302.585580px;}
.xb{left:304.564470px;}
.x1c{left:345.058200px;}
.x14{left:361.978200px;}
.xc{left:364.318200px;}
.x41{left:369.540000px;}
.x2b{left:370.800000px;}
.x23{left:387.900000px;}
.x20{left:396.000000px;}
.x1d{left:400.324920px;}
.x15{left:408.605610px;}
.xd{left:410.945550px;}
.x3{left:455.662491px;}
.x27{left:457.020000px;}
.x43{left:465.300000px;}
.x16{left:490.500000px;}
.xe{left:492.660000px;}
.x44{left:550.260000px;}
.x17{left:554.042340px;}
.xf{left:556.201260px;}
.x21{left:563.040000px;}
.x2e{left:603.360000px;}
.x45{left:646.020000px;}
.x2f{left:691.740000px;}
.x24{left:728.100000px;}
.x3a{left:769.500000px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v10{vertical-align:-18.560000pt;}
.v7{vertical-align:-12.800000pt;}
.v9{vertical-align:-8.960000pt;}
.vf{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:12.800000pt;}
.v1{vertical-align:18.681600pt;}
.v2{vertical-align:24.320000pt;}
.v4{vertical-align:31.990400pt;}
.ve{vertical-align:36.480000pt;}
.v8{vertical-align:50.574933pt;}
.vb{vertical-align:60.160000pt;}
.v5{vertical-align:69.750400pt;}
.va{vertical-align:72.304640pt;}
.vc{vertical-align:73.575467pt;}
.v6{vertical-align:86.390400pt;}
.ls44{letter-spacing:-1.344000pt;}
.ls36{letter-spacing:-1.280000pt;}
.ls52{letter-spacing:-1.221760pt;}
.ls5e{letter-spacing:-1.009280pt;}
.ls5d{letter-spacing:-0.896000pt;}
.ls11{letter-spacing:-0.720000pt;}
.ls38{letter-spacing:-0.640000pt;}
.ls5f{letter-spacing:-0.600320pt;}
.ls51{letter-spacing:-0.424960pt;}
.ls12{letter-spacing:-0.336000pt;}
.ls15{letter-spacing:-0.318720pt;}
.lsf{letter-spacing:-0.299520pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls43{letter-spacing:-0.212480pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls60{letter-spacing:-0.128640pt;}
.ls42{letter-spacing:-0.128000pt;}
.ls37{letter-spacing:-0.064000pt;}
.ls14{letter-spacing:-0.053120pt;}
.ls3a{letter-spacing:-0.045440pt;}
.ls0{letter-spacing:0.000000pt;}
.ls46{letter-spacing:0.053120pt;}
.ls29{letter-spacing:0.064000pt;}
.ls39{letter-spacing:0.090880pt;}
.ls3{letter-spacing:0.096000pt;}
.ls6{letter-spacing:0.106240pt;}
.lsb{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.144000pt;}
.ls8{letter-spacing:0.159360pt;}
.ls9{letter-spacing:0.164672pt;}
.ls2f{letter-spacing:0.171520pt;}
.ls7{letter-spacing:0.196544pt;}
.ls41{letter-spacing:0.212480pt;}
.ls63{letter-spacing:0.244352pt;}
.ls16{letter-spacing:0.256000pt;}
.ls61{letter-spacing:0.260288pt;}
.ls33{letter-spacing:0.272533pt;}
.lse{letter-spacing:0.299520pt;}
.ls5{letter-spacing:0.318720pt;}
.ls20{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.336000pt;}
.ls3b{letter-spacing:0.343040pt;}
.ls18{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.672000pt;}
.ls53{letter-spacing:0.796800pt;}
.ls1f{letter-spacing:0.960000pt;}
.ls2d{letter-spacing:1.024000pt;}
.ls32{letter-spacing:1.136000pt;}
.ls2c{letter-spacing:1.152000pt;}
.ls5c{letter-spacing:1.280000pt;}
.ls22{letter-spacing:1.363200pt;}
.ls23{letter-spacing:1.731840pt;}
.ls19{letter-spacing:1.920000pt;}
.ls4{letter-spacing:2.071680pt;}
.ls1b{letter-spacing:2.233600pt;}
.ls3d{letter-spacing:2.560000pt;}
.lsc{letter-spacing:3.200000pt;}
.ls64{letter-spacing:3.415616pt;}
.ls2e{letter-spacing:3.501440pt;}
.ls27{letter-spacing:3.686400pt;}
.ls3c{letter-spacing:3.689067pt;}
.ls28{letter-spacing:3.840000pt;}
.ls2a{letter-spacing:3.864960pt;}
.ls2b{letter-spacing:3.876480pt;}
.ls3f{letter-spacing:4.480000pt;}
.ls62{letter-spacing:6.533760pt;}
.ls3e{letter-spacing:9.600000pt;}
.lsd{letter-spacing:12.160000pt;}
.ls1a{letter-spacing:14.272000pt;}
.ls30{letter-spacing:14.464000pt;}
.ls1d{letter-spacing:14.586133pt;}
.ls31{letter-spacing:15.104000pt;}
.ls24{letter-spacing:15.222400pt;}
.ls45{letter-spacing:15.360000pt;}
.ls25{letter-spacing:15.858667pt;}
.ls34{letter-spacing:17.131200pt;}
.ls35{letter-spacing:17.280000pt;}
.ls1e{letter-spacing:17.472000pt;}
.ls21{letter-spacing:22.576640pt;}
.ls26{letter-spacing:23.216640pt;}
.ls1c{letter-spacing:27.712000pt;}
.ls40{letter-spacing:42.240000pt;}
.ls47{letter-spacing:96.147200pt;}
.ls4a{letter-spacing:120.476160pt;}
.ls5a{letter-spacing:121.113600pt;}
.ls56{letter-spacing:128.816000pt;}
.ls49{letter-spacing:129.453440pt;}
.ls5b{letter-spacing:131.365760pt;}
.ls59{letter-spacing:134.552960pt;}
.ls48{letter-spacing:142.255360pt;}
.ls58{letter-spacing:147.992320pt;}
.ls57{letter-spacing:161.431680pt;}
.ls4b{letter-spacing:162.069120pt;}
.ls4d{letter-spacing:168.496640pt;}
.ls50{letter-spacing:174.871040pt;}
.ls4c{letter-spacing:281.111040pt;}
.ls4e{letter-spacing:286.901120pt;}
.ls4f{letter-spacing:292.000640pt;}
.ls55{letter-spacing:443.020800pt;}
.ls54{letter-spacing:446.261120pt;}
.ws43{word-spacing:-64.000000pt;}
.ws48{word-spacing:-46.080000pt;}
.ws39{word-spacing:-45.530880pt;}
.ws37{word-spacing:-45.440000pt;}
.ws40{word-spacing:-45.394560pt;}
.ws45{word-spacing:-35.648000pt;}
.ws4f{word-spacing:-34.109440pt;}
.ws50{word-spacing:-34.098027pt;}
.ws42{word-spacing:-34.079360pt;}
.ws46{word-spacing:-34.071680pt;}
.ws47{word-spacing:-33.457813pt;}
.ws44{word-spacing:-32.185493pt;}
.ws55{word-spacing:-30.901120pt;}
.ws56{word-spacing:-30.253440pt;}
.ws54{word-spacing:-28.500480pt;}
.ws38{word-spacing:-25.970560pt;}
.ws9f{word-spacing:-16.256000pt;}
.ws53{word-spacing:-16.128000pt;}
.wsb{word-spacing:-16.000000pt;}
.ws36{word-spacing:-15.936000pt;}
.ws6c{word-spacing:-15.872000pt;}
.ws3d{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws3b{word-spacing:-14.892160pt;}
.ws3a{word-spacing:-14.888320pt;}
.ws6e{word-spacing:-13.598720pt;}
.ws9e{word-spacing:-13.492480pt;}
.ws7{word-spacing:-13.386240pt;}
.ws93{word-spacing:-13.333120pt;}
.ws8{word-spacing:-13.280000pt;}
.ws6d{word-spacing:-13.226880pt;}
.ws4c{word-spacing:-13.139200pt;}
.wsae{word-spacing:-13.067520pt;}
.ws80{word-spacing:-12.961280pt;}
.ws5{word-spacing:-12.336000pt;}
.ws3{word-spacing:-12.096000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.808000pt;}
.ws2{word-spacing:-11.664000pt;}
.ws3e{word-spacing:-11.253120pt;}
.ws52{word-spacing:-11.063040pt;}
.wsc{word-spacing:-10.720000pt;}
.ws95{word-spacing:-10.591360pt;}
.ws94{word-spacing:-10.119680pt;}
.ws9{word-spacing:-8.640000pt;}
.ws4e{word-spacing:-4.646400pt;}
.ws5c{word-spacing:-3.840000pt;}
.ws8a{word-spacing:-3.584000pt;}
.ws41{word-spacing:-3.374720pt;}
.wsb2{word-spacing:-3.346560pt;}
.ws21{word-spacing:-3.328000pt;}
.ws6b{word-spacing:-3.200000pt;}
.wsa1{word-spacing:-2.709120pt;}
.ws2b{word-spacing:-2.560000pt;}
.wsa0{word-spacing:-2.496640pt;}
.ws9c{word-spacing:-2.304000pt;}
.ws4d{word-spacing:-2.102400pt;}
.ws3f{word-spacing:-2.101760pt;}
.ws7e{word-spacing:-2.071680pt;}
.ws30{word-spacing:-1.920000pt;}
.ws7c{word-spacing:-1.859200pt;}
.ws31{word-spacing:-1.664000pt;}
.ws7d{word-spacing:-1.434240pt;}
.wsa2{word-spacing:-1.328000pt;}
.ws5d{word-spacing:-1.280000pt;}
.wsc0{word-spacing:-1.274880pt;}
.wsbe{word-spacing:-1.221760pt;}
.wsbf{word-spacing:-1.062400pt;}
.ws2f{word-spacing:-1.024000pt;}
.ws8c{word-spacing:-0.796800pt;}
.ws29{word-spacing:-0.768000pt;}
.ws28{word-spacing:-0.640000pt;}
.ws8d{word-spacing:-0.584320pt;}
.wsd{word-spacing:-0.449280pt;}
.ws2a{word-spacing:-0.384000pt;}
.ws97{word-spacing:-0.343040pt;}
.ws14{word-spacing:-0.336000pt;}
.ws91{word-spacing:-0.318720pt;}
.ws8b{word-spacing:-0.265600pt;}
.ws20{word-spacing:-0.256000pt;}
.ws7f{word-spacing:-0.212480pt;}
.ws11{word-spacing:-0.192000pt;}
.wsf{word-spacing:-0.159360pt;}
.ws32{word-spacing:-0.128000pt;}
.ws92{word-spacing:-0.106240pt;}
.ws66{word-spacing:-0.090880pt;}
.ws4b{word-spacing:-0.064000pt;}
.ws90{word-spacing:-0.053120pt;}
.ws49{word-spacing:-0.045440pt;}
.ws0{word-spacing:0.000000pt;}
.ws10{word-spacing:0.048000pt;}
.ws18{word-spacing:0.053120pt;}
.wse{word-spacing:0.149760pt;}
.ws67{word-spacing:0.192000pt;}
.ws1f{word-spacing:0.212480pt;}
.ws22{word-spacing:0.256000pt;}
.ws1d{word-spacing:0.318720pt;}
.ws13{word-spacing:0.336000pt;}
.ws79{word-spacing:0.371840pt;}
.ws9b{word-spacing:0.424960pt;}
.ws1e{word-spacing:0.478080pt;}
.ws15{word-spacing:0.480000pt;}
.ws8e{word-spacing:0.584320pt;}
.ws26{word-spacing:0.640000pt;}
.ws19{word-spacing:0.690560pt;}
.ws1a{word-spacing:0.849920pt;}
.ws12{word-spacing:0.864000pt;}
.ws25{word-spacing:0.896000pt;}
.ws99{word-spacing:1.009280pt;}
.ws59{word-spacing:1.152000pt;}
.ws9a{word-spacing:1.168640pt;}
.ws58{word-spacing:1.280000pt;}
.ws7a{word-spacing:1.344000pt;}
.ws8f{word-spacing:1.381120pt;}
.ws27{word-spacing:1.536000pt;}
.ws16{word-spacing:1.752960pt;}
.ws65{word-spacing:1.920000pt;}
.ws17{word-spacing:1.965440pt;}
.ws74{word-spacing:2.176000pt;}
.ws1c{word-spacing:2.390400pt;}
.ws7b{word-spacing:2.432000pt;}
.ws6a{word-spacing:2.496000pt;}
.ws2c{word-spacing:2.560000pt;}
.ws70{word-spacing:2.816000pt;}
.wsbc{word-spacing:3.027840pt;}
.ws83{word-spacing:3.072000pt;}
.ws24{word-spacing:3.200000pt;}
.wsbd{word-spacing:3.240320pt;}
.ws84{word-spacing:3.456000pt;}
.ws60{word-spacing:3.840000pt;}
.ws9d{word-spacing:4.032000pt;}
.ws68{word-spacing:4.096000pt;}
.ws76{word-spacing:4.480000pt;}
.ws75{word-spacing:4.736000pt;}
.wsa4{word-spacing:5.120000pt;}
.wsa3{word-spacing:5.376000pt;}
.wsab{word-spacing:5.577600pt;}
.ws5e{word-spacing:5.632000pt;}
.ws5f{word-spacing:5.760000pt;}
.wsaa{word-spacing:5.790080pt;}
.ws98{word-spacing:6.016000pt;}
.wsb4{word-spacing:6.268160pt;}
.wsa6{word-spacing:6.272000pt;}
.ws77{word-spacing:6.400000pt;}
.ws78{word-spacing:6.656000pt;}
.ws88{word-spacing:6.912000pt;}
.ws87{word-spacing:7.040000pt;}
.ws86{word-spacing:7.296000pt;}
.wsb6{word-spacing:7.543040pt;}
.wsad{word-spacing:7.914880pt;}
.wsac{word-spacing:8.074240pt;}
.wsb7{word-spacing:8.180480pt;}
.ws2d{word-spacing:8.192000pt;}
.ws2e{word-spacing:8.320000pt;}
.wsb5{word-spacing:8.392960pt;}
.wsb0{word-spacing:8.817920pt;}
.ws73{word-spacing:8.960000pt;}
.wsaf{word-spacing:9.030400pt;}
.ws72{word-spacing:9.216000pt;}
.wsb8{word-spacing:9.455360pt;}
.ws96{word-spacing:9.472000pt;}
.ws71{word-spacing:9.600000pt;}
.wsbb{word-spacing:9.614720pt;}
.wsba{word-spacing:9.667840pt;}
.wsb9{word-spacing:9.827200pt;}
.wsb3{word-spacing:10.092800pt;}
.ws23{word-spacing:10.240000pt;}
.ws64{word-spacing:10.496000pt;}
.wsa5{word-spacing:10.880000pt;}
.ws1b{word-spacing:11.367680pt;}
.ws63{word-spacing:11.392000pt;}
.ws62{word-spacing:11.520000pt;}
.wsb1{word-spacing:11.580160pt;}
.ws61{word-spacing:11.776000pt;}
.ws85{word-spacing:12.032000pt;}
.ws34{word-spacing:12.160000pt;}
.ws35{word-spacing:12.416000pt;}
.ws6f{word-spacing:12.800000pt;}
.ws57{word-spacing:13.952000pt;}
.ws33{word-spacing:14.720000pt;}
.ws89{word-spacing:15.360000pt;}
.ws51{word-spacing:15.833600pt;}
.ws5a{word-spacing:15.872000pt;}
.ws5b{word-spacing:16.000000pt;}
.ws4a{word-spacing:17.105920pt;}
.ws82{word-spacing:17.152000pt;}
.ws81{word-spacing:17.280000pt;}
.ws3c{word-spacing:17.408000pt;}
.wsa8{word-spacing:19.072000pt;}
.wsa7{word-spacing:19.200000pt;}
.ws69{word-spacing:20.096000pt;}
.wsa9{word-spacing:40.320000pt;}
.ws1{word-spacing:46.656000pt;}
._a{margin-left:-12.455040pt;}
._6{margin-left:-8.332032pt;}
._2{margin-left:-3.422080pt;}
._0{margin-left:-1.564992pt;}
._1{width:1.228032pt;}
._3{width:2.192960pt;}
._9{width:3.168000pt;}
._8{width:4.617920pt;}
._4{width:7.552000pt;}
._c{width:9.907968pt;}
._b{width:10.908992pt;}
._7{width:11.852032pt;}
._5{width:13.811968pt;}
._d{width:16.960000pt;}
._13{width:142.149120pt;}
._f{width:262.253440pt;}
._12{width:268.627840pt;}
._e{width:327.219200pt;}
._10{width:333.912320pt;}
._11{width:338.108800pt;}
.fs6{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:42.880000pt;}
.fs9{font-size:45.440000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:2.245333pt;}
.y85{bottom:3.840000pt;}
.yae{bottom:5.120000pt;}
.ycc{bottom:5.600000pt;}
.yc9{bottom:10.080000pt;}
.y3c{bottom:36.266764pt;}
.y6c{bottom:79.202400pt;}
.y6d{bottom:79.206133pt;}
.y90{bottom:82.395040pt;}
.y3b{bottom:90.400000pt;}
.y3{bottom:91.921200pt;}
.y6b{bottom:96.640000pt;}
.y8f{bottom:97.760000pt;}
.y2{bottom:104.721200pt;}
.yf6{bottom:105.120000pt;}
.y3a{bottom:108.800000pt;}
.y8e{bottom:109.920000pt;}
.y1{bottom:117.521200pt;}
.y6a{bottom:121.760000pt;}
.yf5{bottom:124.480000pt;}
.y39{bottom:127.200000pt;}
.y4{bottom:129.830533pt;}
.yba{bottom:134.400000pt;}
.yf4{bottom:139.840000pt;}
.y38{bottom:145.600000pt;}
.y69{bottom:150.880000pt;}
.yf3{bottom:155.200000pt;}
.yb9{bottom:156.480000pt;}
.y37{bottom:164.000000pt;}
.y68{bottom:169.280000pt;}
.yb8{bottom:176.640000pt;}
.yf2{bottom:178.720000pt;}
.y36{bottom:182.400000pt;}
.y67{bottom:187.680000pt;}
.yd9{bottom:193.280000pt;}
.yb7{bottom:196.640000pt;}
.y35{bottom:200.800000pt;}
.y66{bottom:206.080000pt;}
.ya{bottom:207.675867pt;}
.yb6{bottom:211.360000pt;}
.yd8{bottom:211.680000pt;}
.y34{bottom:219.200000pt;}
.y9{bottom:220.475867pt;}
.yf1{bottom:221.760000pt;}
.y65{bottom:224.480000pt;}
.yd7{bottom:230.080000pt;}
.yb5{bottom:231.200000pt;}
.y8{bottom:233.275867pt;}
.yf0{bottom:240.160000pt;}
.y64{bottom:242.880000pt;}
.y33{bottom:245.600000pt;}
.yd6{bottom:248.480000pt;}
.yb4{bottom:251.040000pt;}
.yef{bottom:258.560000pt;}
.y7{bottom:258.875867pt;}
.y63{bottom:261.280000pt;}
.y32{bottom:264.000000pt;}
.yd5{bottom:266.880000pt;}
.y6{bottom:271.675867pt;}
.yee{bottom:276.960000pt;}
.yb3{bottom:277.760000pt;}
.y31{bottom:282.400000pt;}
.y5{bottom:284.475867pt;}
.yd4{bottom:285.120000pt;}
.y62{bottom:290.240000pt;}
.yed{bottom:295.360000pt;}
.yb2{bottom:298.080000pt;}
.y30{bottom:300.800000pt;}
.yd3{bottom:303.520000pt;}
.y61{bottom:309.120000pt;}
.yb1{bottom:317.920000pt;}
.y2f{bottom:319.200000pt;}
.yec{bottom:321.440000pt;}
.yd2{bottom:321.920000pt;}
.y60{bottom:329.600000pt;}
.y8d{bottom:330.720000pt;}
.yb0{bottom:332.640000pt;}
.y2e{bottom:337.600000pt;}
.yd1{bottom:340.320000pt;}
.y5f{bottom:348.480000pt;}
.y8c{bottom:349.120000pt;}
.yaf{bottom:352.480000pt;}
.y2d{bottom:356.000000pt;}
.yd0{bottom:358.720000pt;}
.yeb{bottom:364.480000pt;}
.y8b{bottom:367.520000pt;}
.yad{bottom:372.320000pt;}
.y2c{bottom:374.400000pt;}
.y5e{bottom:378.074880pt;}
.y5d{bottom:378.080000pt;}
.y5b{bottom:378.082400pt;}
.y5c{bottom:378.086133pt;}
.ycf{bottom:379.520000pt;}
.yea{bottom:382.880000pt;}
.y8a{bottom:385.920000pt;}
.y2b{bottom:392.800000pt;}
.y5a{bottom:395.520000pt;}
.yce{bottom:400.160000pt;}
.ye9{bottom:401.280000pt;}
.y89{bottom:404.320000pt;}
.yac{bottom:404.795040pt;}
.y2a{bottom:411.200000pt;}
.ye8{bottom:419.680000pt;}
.yab{bottom:420.160000pt;}
.ycd{bottom:420.960000pt;}
.y59{bottom:422.234880pt;}
.y58{bottom:422.240000pt;}
.y56{bottom:422.242400pt;}
.y57{bottom:422.246133pt;}
.y88{bottom:422.720000pt;}
.y29{bottom:429.600000pt;}
.ycb{bottom:436.000000pt;}
.ye7{bottom:438.080000pt;}
.y55{bottom:439.680000pt;}
.y87{bottom:441.120000pt;}
.y28{bottom:448.000000pt;}
.yaa{bottom:452.000000pt;}
.y86{bottom:456.320000pt;}
.ye6{bottom:456.480000pt;}
.yc8{bottom:456.640000pt;}
.y112{bottom:458.400000pt;}
.yca{bottom:462.240000pt;}
.y54{bottom:464.322400pt;}
.y27{bottom:466.400000pt;}
.ya9{bottom:470.400000pt;}
.ye5{bottom:474.880000pt;}
.y84{bottom:475.360000pt;}
.y111{bottom:480.000000pt;}
.y53{bottom:481.760000pt;}
.y26{bottom:484.800000pt;}
.yc7{bottom:488.475040pt;}
.ya8{bottom:488.800000pt;}
.ye4{bottom:493.280000pt;}
.y110{bottom:495.360000pt;}
.y82{bottom:501.280000pt;}
.yc6{bottom:503.840000pt;}
.y52{bottom:506.720000pt;}
.ya7{bottom:507.200000pt;}
.y81{bottom:510.560000pt;}
.y25{bottom:510.720000pt;}
.ye3{bottom:511.680000pt;}
.y10f{bottom:514.720000pt;}
.y83{bottom:519.680000pt;}
.y51{bottom:525.120000pt;}
.ya6{bottom:525.600000pt;}
.ye2{bottom:530.080000pt;}
.yc5{bottom:535.840000pt;}
.y50{bottom:543.520000pt;}
.ya5{bottom:544.000000pt;}
.y80{bottom:545.440000pt;}
.ye1{bottom:548.480000pt;}
.y10e{bottom:549.440000pt;}
.y24{bottom:553.113120pt;}
.yc4{bottom:554.240000pt;}
.ya4{bottom:562.400000pt;}
.y10d{bottom:564.800000pt;}
.ye0{bottom:566.880000pt;}
.y7f{bottom:568.320000pt;}
.y4f{bottom:569.600000pt;}
.yc3{bottom:572.640000pt;}
.y10c{bottom:580.160000pt;}
.ya3{bottom:580.800000pt;}
.ydf{bottom:585.280000pt;}
.y7e{bottom:586.080000pt;}
.yc2{bottom:591.040000pt;}
.y23{bottom:592.475040pt;}
.y10b{bottom:595.360000pt;}
.ya2{bottom:599.200000pt;}
.yde{bottom:603.680000pt;}
.y4e{bottom:604.320000pt;}
.y22{bottom:607.809600pt;}
.yc1{bottom:609.440000pt;}
.y10a{bottom:614.720000pt;}
.ya1{bottom:617.600000pt;}
.y7d{bottom:617.920000pt;}
.y4d{bottom:622.720000pt;}
.y21{bottom:623.174560pt;}
.yc0{bottom:627.840000pt;}
.ydd{bottom:629.600000pt;}
.y109{bottom:630.080000pt;}
.ya0{bottom:636.000000pt;}
.y7c{bottom:636.320000pt;}
.y20{bottom:638.380160pt;}
.y4c{bottom:641.120000pt;}
.y108{bottom:645.440000pt;}
.ybf{bottom:646.240000pt;}
.y1f{bottom:653.745120pt;}
.y9f{bottom:654.400000pt;}
.y7b{bottom:654.720000pt;}
.y4b{bottom:659.520000pt;}
.ybe{bottom:664.640000pt;}
.y107{bottom:664.775040pt;}
.y1e{bottom:669.110080pt;}
.ydc{bottom:671.995040pt;}
.y9e{bottom:672.800000pt;}
.y7a{bottom:673.120000pt;}
.y4a{bottom:677.920000pt;}
.y106{bottom:680.140000pt;}
.y11{bottom:682.214667pt;}
.ybd{bottom:683.040000pt;}
.y1d{bottom:684.475040pt;}
.ydb{bottom:687.360000pt;}
.y9d{bottom:691.200000pt;}
.y79{bottom:691.520000pt;}
.y49{bottom:696.320000pt;}
.y10{bottom:696.925333pt;}
.y105{bottom:699.342880pt;}
.yda{bottom:699.520000pt;}
.y1c{bottom:699.840000pt;}
.ybc{bottom:708.800000pt;}
.y9c{bottom:709.600000pt;}
.y78{bottom:709.920000pt;}
.y104{bottom:714.707840pt;}
.y48{bottom:714.720000pt;}
.ybb{bottom:720.960000pt;}
.y9b{bottom:728.000000pt;}
.y77{bottom:728.320000pt;}
.y47{bottom:733.120000pt;}
.y103{bottom:734.070080pt;}
.y1b{bottom:738.872000pt;}
.y9a{bottom:746.400000pt;}
.y76{bottom:746.720000pt;}
.y102{bottom:749.435040pt;}
.y46{bottom:751.520000pt;}
.y1a{bottom:753.428000pt;}
.y99{bottom:764.800000pt;}
.y19{bottom:768.152000pt;}
.y45{bottom:769.920000pt;}
.y75{bottom:772.800000pt;}
.y18{bottom:782.876000pt;}
.y98{bottom:783.200000pt;}
.y101{bottom:784.000000pt;}
.yf{bottom:785.770667pt;}
.y44{bottom:788.320000pt;}
.y17{bottom:797.432000pt;}
.y100{bottom:799.360000pt;}
.y97{bottom:801.600000pt;}
.y43{bottom:806.720000pt;}
.y74{bottom:808.960000pt;}
.y16{bottom:812.156000pt;}
.yff{bottom:818.720000pt;}
.ye{bottom:824.170667pt;}
.y15{bottom:826.880000pt;}
.y96{bottom:827.680000pt;}
.y73{bottom:828.960000pt;}
.y42{bottom:832.800000pt;}
.yfe{bottom:834.080000pt;}
.yfd{bottom:849.440000pt;}
.y72{bottom:856.800000pt;}
.y14{bottom:857.440000pt;}
.y95{bottom:862.400000pt;}
.yd{bottom:862.570667pt;}
.y41{bottom:867.200000pt;}
.yfc{bottom:868.640000pt;}
.y71{bottom:876.640000pt;}
.y94{bottom:880.800000pt;}
.yfb{bottom:884.000000pt;}
.y70{bottom:896.480000pt;}
.y13{bottom:898.717120pt;}
.y93{bottom:899.200000pt;}
.yc{bottom:902.605333pt;}
.yfa{bottom:903.360000pt;}
.y40{bottom:910.240000pt;}
.y6f{bottom:916.320000pt;}
.y92{bottom:917.600000pt;}
.yf9{bottom:918.720000pt;}
.y12{bottom:920.320000pt;}
.yb{bottom:921.805333pt;}
.y3f{bottom:928.640000pt;}
.yf8{bottom:934.080000pt;}
.y91{bottom:943.680000pt;}
.y6e{bottom:946.400000pt;}
.y3e{bottom:947.040000pt;}
.yf7{bottom:949.440000pt;}
.hd{height:11.733399pt;}
.h1c{height:18.400000pt;}
.h1b{height:18.401333pt;}
.h1e{height:19.200000pt;}
.h1f{height:20.000000pt;}
.h1{height:32.625000pt;}
.h6{height:36.001250pt;}
.h7{height:42.117188pt;}
.he{height:42.916667pt;}
.ha{height:43.375000pt;}
.h8{height:46.609688pt;}
.h1d{height:48.884375pt;}
.h2{height:48.937500pt;}
.h9{height:49.005975pt;}
.hf{height:50.476562pt;}
.h5{height:50.748750pt;}
.hb{height:56.156250pt;}
.hc{height:61.944688pt;}
.h18{height:71.093750pt;}
.h11{height:88.146650pt;}
.h16{height:88.176730pt;}
.h1a{height:92.636250pt;}
.h3{height:97.875000pt;}
.h19{height:103.069217pt;}
.h14{height:120.212029pt;}
.h10{height:120.226962pt;}
.h15{height:120.236563pt;}
.h13{height:120.241896pt;}
.h17{height:124.052029pt;}
.h12{height:127.624775pt;}
.h4{height:1056.000000pt;}
.h0{height:1122.666667pt;}
.w3{width:5.933333pt;}
.wf{width:74.400000pt;}
.wc{width:74.560000pt;}
.w11{width:74.880000pt;}
.w14{width:75.198667pt;}
.wb{width:75.200000pt;}
.w12{width:75.360000pt;}
.w10{width:75.678667pt;}
.we{width:78.240000pt;}
.w13{width:84.800000pt;}
.w4{width:91.998667pt;}
.wa{width:127.040000pt;}
.wd{width:129.761333pt;}
.w7{width:138.880000pt;}
.w6{width:148.160000pt;}
.w5{width:157.280000pt;}
.w8{width:277.440000pt;}
.w9{width:283.040000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w2{width:816.000000pt;}
.x0{left:0.000000pt;}
.x22{left:6.720000pt;}
.x2c{left:8.160000pt;}
.x29{left:12.640000pt;}
.x2d{left:14.080000pt;}
.x3e{left:15.040000pt;}
.x40{left:16.480000pt;}
.x42{left:20.160000pt;}
.x38{left:22.720000pt;}
.x39{left:24.160000pt;}
.x31{left:34.400000pt;}
.x33{left:35.840000pt;}
.x3c{left:37.760000pt;}
.x30{left:49.760000pt;}
.x32{left:51.200000pt;}
.x1{left:56.642800pt;}
.x2{left:94.400000pt;}
.x4{left:95.365600pt;}
.x36{left:98.080000pt;}
.x7{left:99.046240pt;}
.x37{left:100.000000pt;}
.x1e{left:101.600000pt;}
.x26{left:103.520000pt;}
.x28{left:105.600000pt;}
.x46{left:120.800000pt;}
.x47{left:124.960000pt;}
.x25{left:126.720000pt;}
.x5{left:131.679680pt;}
.x34{left:137.120000pt;}
.x18{left:138.882880pt;}
.x10{left:141.283200pt;}
.x8{left:142.243040pt;}
.x6{left:171.843520pt;}
.x35{left:176.480000pt;}
.x3d{left:177.600000pt;}
.x19{left:183.683840pt;}
.x11{left:188.002080pt;}
.x9{left:189.284160pt;}
.x1f{left:194.400000pt;}
.x1a{left:217.277440pt;}
.x12{left:227.997440pt;}
.xa{left:229.597440pt;}
.x3b{left:233.760000pt;}
.x3f{left:252.800000pt;}
.x2a{left:254.080000pt;}
.x1b{left:265.765280pt;}
.x13{left:268.964960pt;}
.xb{left:270.723973pt;}
.x1c{left:306.718400pt;}
.x14{left:321.758400pt;}
.xc{left:323.838400pt;}
.x41{left:328.480000pt;}
.x2b{left:329.600000pt;}
.x23{left:344.800000pt;}
.x20{left:352.000000pt;}
.x1d{left:355.844373pt;}
.x15{left:363.204987pt;}
.xd{left:365.284933pt;}
.x3{left:405.033325pt;}
.x27{left:406.240000pt;}
.x43{left:413.600000pt;}
.x16{left:436.000000pt;}
.xe{left:437.920000pt;}
.x44{left:489.120000pt;}
.x17{left:492.482080pt;}
.xf{left:494.401120pt;}
.x21{left:500.480000pt;}
.x2e{left:536.320000pt;}
.x45{left:574.240000pt;}
.x2f{left:614.880000pt;}
.x24{left:647.200000pt;}
.x3a{left:684.000000pt;}
}


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;
}
