
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* 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("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #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("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -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(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_ae95564ac6a79cd7c154f806.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933594;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('chunks/assets/font_a8477e68642a20032c2802ff.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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('chunks/assets/font_b8b2a9b656cdabde2772e74c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.922363;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('chunks/assets/font_a4502549be600ad14116eab9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.707031;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('chunks/assets/font_28ec2c2028cfc8c8e2e37ac4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.120117;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('chunks/assets/font_65a9fba40b2685de89388b27.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.896973;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('chunks/assets/font_28e325d8873d82c72c661bf3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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('chunks/assets/font_c43354d1175744cd274d3543.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_37cf8c038122fe311b07df02.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666000;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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120000px;}
.v4{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.ls6b{letter-spacing:-0.064800px;}
.ls4f{letter-spacing:-0.016776px;}
.ls17{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.004200px;}
.ls5{letter-spacing:0.008388px;}
.lse{letter-spacing:0.014400px;}
.lsb{letter-spacing:0.016776px;}
.ls56{letter-spacing:0.019560px;}
.ls1f{letter-spacing:0.023328px;}
.ls0{letter-spacing:0.025164px;}
.ls3a{letter-spacing:0.031200px;}
.ls45{letter-spacing:0.032040px;}
.ls4a{letter-spacing:0.032940px;}
.ls3c{letter-spacing:0.033240px;}
.ls9{letter-spacing:0.033552px;}
.ls39{letter-spacing:0.035280px;}
.ls50{letter-spacing:0.041400px;}
.lsa{letter-spacing:0.041940px;}
.ls55{letter-spacing:0.042000px;}
.ls22{letter-spacing:0.042240px;}
.ls2e{letter-spacing:0.042840px;}
.lsd{letter-spacing:0.043800px;}
.ls2{letter-spacing:0.044400px;}
.ls4d{letter-spacing:0.046116px;}
.ls1{letter-spacing:0.050328px;}
.ls31{letter-spacing:0.052560px;}
.ls49{letter-spacing:0.052704px;}
.ls21{letter-spacing:0.052800px;}
.ls36{letter-spacing:0.053784px;}
.ls15{letter-spacing:0.054720px;}
.lsc{letter-spacing:0.058716px;}
.ls58{letter-spacing:0.059400px;}
.ls59{letter-spacing:0.059760px;}
.ls2d{letter-spacing:0.060000px;}
.ls68{letter-spacing:0.062208px;}
.ls34{letter-spacing:0.065400px;}
.ls16{letter-spacing:0.065700px;}
.ls4b{letter-spacing:0.065880px;}
.ls7{letter-spacing:0.067104px;}
.ls4c{letter-spacing:0.072468px;}
.ls6{letter-spacing:0.075492px;}
.ls66{letter-spacing:0.077688px;}
.ls24{letter-spacing:0.083664px;}
.ls18{letter-spacing:0.083880px;}
.ls32{letter-spacing:0.089640px;}
.ls20{letter-spacing:0.092268px;}
.ls33{letter-spacing:0.095616px;}
.ls67{letter-spacing:0.098520px;}
.ls1a{letter-spacing:0.100656px;}
.ls11{letter-spacing:0.101592px;}
.ls12{letter-spacing:0.107568px;}
.ls51{letter-spacing:0.113400px;}
.ls14{letter-spacing:0.113544px;}
.ls26{letter-spacing:0.119520px;}
.ls25{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.125496px;}
.ls23{letter-spacing:0.131472px;}
.ls29{letter-spacing:0.134208px;}
.ls13{letter-spacing:0.140520px;}
.ls5e{letter-spacing:0.142596px;}
.ls2b{letter-spacing:0.143424px;}
.ls44{letter-spacing:0.146400px;}
.ls2a{letter-spacing:0.149400px;}
.ls54{letter-spacing:0.155376px;}
.ls2f{letter-spacing:0.159000px;}
.ls57{letter-spacing:0.163560px;}
.ls64{letter-spacing:0.203184px;}
.ls1e{letter-spacing:0.221112px;}
.ls62{letter-spacing:0.264600px;}
.ls61{letter-spacing:0.265200px;}
.lsf{letter-spacing:0.289140px;}
.ls5f{letter-spacing:0.335520px;}
.ls2c{letter-spacing:1.667304px;}
.ls53{letter-spacing:1.702764px;}
.ls37{letter-spacing:1.786644px;}
.ls4e{letter-spacing:2.063448px;}
.ls38{letter-spacing:2.826756px;}
.ls5d{letter-spacing:3.179052px;}
.ls3e{letter-spacing:3.824928px;}
.ls43{letter-spacing:4.160448px;}
.ls42{letter-spacing:4.781160px;}
.ls30{letter-spacing:6.253800px;}
.ls41{letter-spacing:6.576192px;}
.ls27{letter-spacing:6.651684px;}
.ls3f{letter-spacing:7.062695px;}
.ls1d{letter-spacing:8.790696px;}
.ls40{letter-spacing:9.478440px;}
.ls5c{letter-spacing:10.711476px;}
.ls69{letter-spacing:10.887624px;}
.ls35{letter-spacing:11.172816px;}
.ls28{letter-spacing:11.625768px;}
.ls65{letter-spacing:11.671200px;}
.ls63{letter-spacing:12.870660px;}
.ls1c{letter-spacing:16.093368px;}
.ls52{letter-spacing:17.891604px;}
.ls1b{letter-spacing:20.374452px;}
.ls3b{letter-spacing:20.920200px;}
.ls19{letter-spacing:23.578668px;}
.ls6a{letter-spacing:23.989680px;}
.ls47{letter-spacing:24.434244px;}
.ls48{letter-spacing:24.795600px;}
.ls3d{letter-spacing:39.834612px;}
.ls46{letter-spacing:78.671052px;}
.ls60{letter-spacing:191.429280px;}
.ls8{letter-spacing:193.945680px;}
.ls4{letter-spacing:193.945800px;}
.ls5b{letter-spacing:197.459280px;}
.ls5a{letter-spacing:197.459400px;}
.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;}
}
.ws3{word-spacing:-194.029680px;}
.wsb6{word-spacing:-78.754932px;}
.ws8d{word-spacing:-39.918492px;}
.wscb{word-spacing:-24.518124px;}
.wse{word-spacing:-23.662548px;}
.ws10e{word-spacing:-21.053880px;}
.ws102{word-spacing:-21.045492px;}
.ws104{word-spacing:-21.028716px;}
.ws103{word-spacing:-21.011940px;}
.ws10d{word-spacing:-21.003552px;}
.ws101{word-spacing:-20.986776px;}
.ws1c{word-spacing:-20.458332px;}
.ws109{word-spacing:-18.000000px;}
.wse5{word-spacing:-17.975484px;}
.ws23{word-spacing:-16.153128px;}
.ws10b{word-spacing:-15.059520px;}
.ws105{word-spacing:-15.035616px;}
.ws3d{word-spacing:-11.709648px;}
.ws5f{word-spacing:-11.256696px;}
.ws9c{word-spacing:-9.562320px;}
.ws25{word-spacing:-8.850456px;}
.ws9b{word-spacing:-7.146575px;}
.ws106{word-spacing:-6.750000px;}
.ws35{word-spacing:-6.735564px;}
.ws9e{word-spacing:-6.660072px;}
.ws10c{word-spacing:-5.940000px;}
.wsa0{word-spacing:-4.865040px;}
.wsac{word-spacing:-4.244328px;}
.ws9a{word-spacing:-3.908808px;}
.ws85{word-spacing:-2.910636px;}
.wse0{word-spacing:-2.147328px;}
.ws76{word-spacing:-1.870524px;}
.wse6{word-spacing:-1.786644px;}
.ws4e{word-spacing:-1.727064px;}
.ws29{word-spacing:-0.280872px;}
.ws108{word-spacing:-0.262944px;}
.ws46{word-spacing:-0.218088px;}
.wsf6{word-spacing:-0.215136px;}
.ws49{word-spacing:-0.209160px;}
.ws4c{word-spacing:-0.203184px;}
.ws6e{word-spacing:-0.191232px;}
.ws26{word-spacing:-0.185256px;}
.ws16{word-spacing:-0.184536px;}
.ws4d{word-spacing:-0.179280px;}
.ws3c{word-spacing:-0.176148px;}
.ws28{word-spacing:-0.173304px;}
.ws7{word-spacing:-0.167760px;}
.ws24{word-spacing:-0.167328px;}
.ws27{word-spacing:-0.161352px;}
.ws5{word-spacing:-0.159372px;}
.ws6d{word-spacing:-0.155376px;}
.ws6{word-spacing:-0.150984px;}
.ws6c{word-spacing:-0.149400px;}
.ws4b{word-spacing:-0.143424px;}
.ws19{word-spacing:-0.142596px;}
.ws1{word-spacing:-0.134208px;}
.wsd9{word-spacing:-0.131760px;}
.wsb{word-spacing:-0.125820px;}
.wsd7{word-spacing:-0.118584px;}
.ws8{word-spacing:-0.117432px;}
.ws71{word-spacing:-0.113544px;}
.wsdc{word-spacing:-0.111996px;}
.ws0{word-spacing:-0.109044px;}
.ws10a{word-spacing:-0.101088px;}
.ws11{word-spacing:-0.100656px;}
.wsd8{word-spacing:-0.098820px;}
.ws4{word-spacing:-0.092268px;}
.ws20{word-spacing:-0.086400px;}
.ws2{word-spacing:-0.083880px;}
.wse1{word-spacing:-0.067104px;}
.ws6f{word-spacing:-0.059760px;}
.ws5a{word-spacing:-0.054000px;}
.ws2c{word-spacing:0.000000px;}
.ws4a{word-spacing:9.609408px;}
.ws70{word-spacing:12.979872px;}
.ws2a{word-spacing:13.457952px;}
.ws45{word-spacing:13.613724px;}
.ws54{word-spacing:13.680828px;}
.wsab{word-spacing:13.689216px;}
.ws5e{word-spacing:13.689408px;}
.wsc0{word-spacing:13.856976px;}
.wsae{word-spacing:13.932468px;}
.wsad{word-spacing:13.966020px;}
.ws47{word-spacing:14.016348px;}
.ws72{word-spacing:14.066676px;}
.wsf1{word-spacing:14.100228px;}
.ws73{word-spacing:14.117004px;}
.ws48{word-spacing:14.142168px;}
.ws6a{word-spacing:14.939028px;}
.wsb4{word-spacing:15.022908px;}
.ws6b{word-spacing:15.056460px;}
.wsc3{word-spacing:15.140340px;}
.ws66{word-spacing:15.190668px;}
.wsf5{word-spacing:15.358428px;}
.wsf4{word-spacing:15.391980px;}
.wsd2{word-spacing:15.442308px;}
.wsdb{word-spacing:15.475212px;}
.ws7c{word-spacing:15.475860px;}
.wsda{word-spacing:15.481800px;}
.wse8{word-spacing:15.559740px;}
.ws21{word-spacing:15.770664px;}
.wsb1{word-spacing:15.777828px;}
.ws100{word-spacing:15.836544px;}
.ws22{word-spacing:15.854328px;}
.ws14{word-spacing:15.945588px;}
.ws15{word-spacing:15.962364px;}
.wsde{word-spacing:15.979140px;}
.wsa5{word-spacing:16.155288px;}
.wsed{word-spacing:16.281108px;}
.wsf8{word-spacing:16.306272px;}
.wsf7{word-spacing:16.314660px;}
.ws44{word-spacing:16.398540px;}
.ws86{word-spacing:16.424112px;}
.wsf{word-spacing:16.448868px;}
.ws87{word-spacing:16.490808px;}
.ws10{word-spacing:16.574688px;}
.wsb7{word-spacing:16.608240px;}
.wsf3{word-spacing:16.700508px;}
.ws40{word-spacing:16.725672px;}
.ws57{word-spacing:16.776000px;}
.ws34{word-spacing:16.868268px;}
.wsdf{word-spacing:16.952148px;}
.ws33{word-spacing:17.002476px;}
.wsd6{word-spacing:17.145072px;}
.ws79{word-spacing:17.707068px;}
.wse4{word-spacing:17.740620px;}
.ws7a{word-spacing:17.824500px;}
.ws7e{word-spacing:17.958708px;}
.ws77{word-spacing:18.042588px;}
.ws7d{word-spacing:18.160020px;}
.ws51{word-spacing:18.285840px;}
.wsb0{word-spacing:18.394884px;}
.ws53{word-spacing:18.420048px;}
.ws52{word-spacing:18.445212px;}
.ws8a{word-spacing:18.470376px;}
.wsf0{word-spacing:18.487152px;}
.wsaf{word-spacing:18.495540px;}
.ws32{word-spacing:18.537480px;}
.ws31{word-spacing:18.671688px;}
.ws98{word-spacing:18.831060px;}
.ws1a{word-spacing:18.881388px;}
.ws99{word-spacing:18.923328px;}
.wsc5{word-spacing:19.133028px;}
.wsc4{word-spacing:19.174968px;}
.wsa1{word-spacing:19.468548px;}
.ws56{word-spacing:19.507320px;}
.ws58{word-spacing:19.594368px;}
.wsa2{word-spacing:19.627920px;}
.wsa3{word-spacing:19.636308px;}
.ws74{word-spacing:19.820844px;}
.ws1f{word-spacing:20.156364px;}
.ws7f{word-spacing:20.173140px;}
.ws1d{word-spacing:20.265408px;}
.ws1b{word-spacing:20.273796px;}
.ws1e{word-spacing:20.292720px;}
.wsbc{word-spacing:20.617704px;}
.ws5c{word-spacing:20.676420px;}
.ws92{word-spacing:20.726748px;}
.ws94{word-spacing:20.743524px;}
.ws93{word-spacing:20.785464px;}
.wsa4{word-spacing:20.978388px;}
.wse9{word-spacing:21.037104px;}
.ws69{word-spacing:21.230028px;}
.wscc{word-spacing:21.305520px;}
.ws36{word-spacing:21.565548px;}
.ws18{word-spacing:21.615876px;}
.wsfa{word-spacing:21.733308px;}
.wseb{word-spacing:22.328856px;}
.ws8e{word-spacing:22.354020px;}
.wsea{word-spacing:22.362408px;}
.ws17{word-spacing:22.521780px;}
.ws38{word-spacing:22.681152px;}
.wse7{word-spacing:22.689540px;}
.ws37{word-spacing:22.714704px;}
.ws9{word-spacing:22.832136px;}
.wsa{word-spacing:22.941180px;}
.ws95{word-spacing:22.991508px;}
.ws96{word-spacing:23.125716px;}
.wsd1{word-spacing:23.150880px;}
.wsc{word-spacing:23.423664px;}
.wsd{word-spacing:23.444460px;}
.ws5b{word-spacing:23.494788px;}
.ws5d{word-spacing:23.528340px;}
.ws55{word-spacing:23.553504px;}
.ws89{word-spacing:23.620608px;}
.ws8b{word-spacing:23.662548px;}
.wsf9{word-spacing:23.947740px;}
.ws41{word-spacing:23.998068px;}
.ws43{word-spacing:24.040008px;}
.ws42{word-spacing:24.048396px;}
.ws97{word-spacing:24.056784px;}
.wsfb{word-spacing:24.115500px;}
.wsfc{word-spacing:24.140664px;}
.wsce{word-spacing:24.165828px;}
.ws3b{word-spacing:24.190992px;}
.wsbe{word-spacing:24.249708px;}
.wscd{word-spacing:24.279264px;}
.wsca{word-spacing:24.291648px;}
.wsbd{word-spacing:24.367140px;}
.wsfd{word-spacing:24.451020px;}
.ws63{word-spacing:24.501348px;}
.ws65{word-spacing:24.509736px;}
.ws64{word-spacing:24.543288px;}
.wsd4{word-spacing:24.568452px;}
.wsc8{word-spacing:25.398864px;}
.wsc7{word-spacing:25.432416px;}
.wsee{word-spacing:25.507908px;}
.wsb3{word-spacing:26.849988px;}
.wse3{word-spacing:26.925480px;}
.wsb2{word-spacing:26.967420px;}
.ws88{word-spacing:26.992584px;}
.wse2{word-spacing:27.052560px;}
.wsd3{word-spacing:27.449016px;}
.wsd5{word-spacing:27.462312px;}
.wsaa{word-spacing:28.024308px;}
.wsc9{word-spacing:28.234008px;}
.ws4f{word-spacing:28.340604px;}
.ws107{word-spacing:28.380024px;}
.ws50{word-spacing:28.384992px;}
.ws59{word-spacing:28.435320px;}
.ws7b{word-spacing:28.552752px;}
.wsa8{word-spacing:28.812780px;}
.wsa9{word-spacing:28.837944px;}
.ws60{word-spacing:29.014092px;}
.ws62{word-spacing:29.022480px;}
.ws68{word-spacing:29.030868px;}
.ws61{word-spacing:29.089584px;}
.ws67{word-spacing:29.148300px;}
.wsb8{word-spacing:29.316060px;}
.ws3e{word-spacing:30.154860px;}
.ws91{word-spacing:30.331008px;}
.ws90{word-spacing:30.339396px;}
.ws8f{word-spacing:30.347784px;}
.wsba{word-spacing:30.624588px;}
.wsb9{word-spacing:30.767184px;}
.wsef{word-spacing:31.354344px;}
.ws12{word-spacing:31.622760px;}
.ws13{word-spacing:31.664700px;}
.wsc2{word-spacing:32.469948px;}
.wsc1{word-spacing:32.612544px;}
.wsfe{word-spacing:33.132600px;}
.wsff{word-spacing:33.157764px;}
.ws75{word-spacing:35.321868px;}
.ws9f{word-spacing:35.892252px;}
.ws3f{word-spacing:36.152280px;}
.ws2f{word-spacing:36.731052px;}
.ws2d{word-spacing:36.739440px;}
.ws2e{word-spacing:36.764604px;}
.ws30{word-spacing:36.873648px;}
.ws2b{word-spacing:37.308168px;}
.wsd0{word-spacing:38.257668px;}
.ws9d{word-spacing:38.291220px;}
.ws8c{word-spacing:39.599748px;}
.ws78{word-spacing:39.658464px;}
.ws80{word-spacing:40.857948px;}
.ws81{word-spacing:40.975380px;}
.ws82{word-spacing:40.983768px;}
.wsec{word-spacing:45.840420px;}
.wsc6{word-spacing:48.080016px;}
.wsbb{word-spacing:48.348432px;}
.wscf{word-spacing:50.831280px;}
.ws83{word-spacing:51.544260px;}
.ws84{word-spacing:51.569424px;}
.wsf2{word-spacing:59.873544px;}
.wsa7{word-spacing:68.253156px;}
.wsa6{word-spacing:68.261544px;}
.wsb5{word-spacing:78.570396px;}
.wsdd{word-spacing:91.672452px;}
.ws39{word-spacing:107.030880px;}
.ws3a{word-spacing:107.156700px;}
.wsbf{word-spacing:193.861800px;}
._22{margin-left:-101.208840px;}
._1c{margin-left:-79.450920px;}
._1b{margin-left:-78.251760px;}
._18{margin-left:-39.685716px;}
._5{margin-left:-24.429780px;}
._4{margin-left:-23.227860px;}
._c{margin-left:-20.280444px;}
._1d{margin-left:-18.242340px;}
._f{margin-left:-16.882656px;}
._e{margin-left:-15.754116px;}
._16{margin-left:-10.940424px;}
._10{margin-left:-9.292824px;}
._d{margin-left:-7.992600px;}
._12{margin-left:-6.784512px;}
._11{margin-left:-5.738664px;}
._1a{margin-left:-4.552680px;}
._19{margin-left:-3.491292px;}
._17{margin-left:-2.334828px;}
._7{margin-left:-1.006560px;}
._0{width:1.048500px;}
._3{width:2.065248px;}
._14{width:3.309132px;}
._6{width:4.445640px;}
._8{width:5.452200px;}
._b{width:6.626520px;}
._a{width:7.800840px;}
._9{width:8.891280px;}
._13{width:9.897840px;}
._15{width:10.929480px;}
._1{width:12.389160px;}
._2{width:13.655160px;}
._2c{width:15.541800px;}
._21{width:16.912200px;}
._1e{width:18.201960px;}
._23{width:19.940160px;}
._27{width:22.563720px;}
._2d{width:23.654160px;}
._26{width:24.912360px;}
._25{width:26.506080px;}
._29{width:29.022480px;}
._2e{width:30.616200px;}
._1f{width:36.823320px;}
._28{width:38.333160px;}
._20{width:40.017540px;}
._2f{width:42.107760px;}
._2b{width:44.037000px;}
._2a{width:48.624096px;}
._24{width:197.459400px;}
.fc4{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(178,34,34);}
.fc3{color:rgb(2,2,2);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:23.760000px;}
.fs6{font-size:27.000000px;}
.fs3{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs5{font-size:65.880000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y1{bottom:21.259440px;}
.ycd{bottom:87.471135px;}
.y28{bottom:88.371120px;}
.y192{bottom:88.461120px;}
.y65{bottom:92.151120px;}
.ye2{bottom:98.721135px;}
.yaa{bottom:99.081120px;}
.y114{bottom:99.891120px;}
.y88{bottom:102.051135px;}
.y27{bottom:105.921120px;}
.ycc{bottom:106.551135px;}
.y191{bottom:106.731120px;}
.ye5{bottom:109.701120px;}
.y9e{bottom:113.391120px;}
.ybf{bottom:114.111120px;}
.y113{bottom:117.171120px;}
.ye1{bottom:123.381120px;}
.y26{bottom:123.561120px;}
.ya9{bottom:123.651120px;}
.y157{bottom:124.191120px;}
.y87{bottom:126.621120px;}
.ye4{bottom:127.341120px;}
.y190{bottom:127.791120px;}
.y112{bottom:134.451060px;}
.y20c{bottom:135.711060px;}
.y9d{bottom:138.051060px;}
.ybe{bottom:138.771060px;}
.y25{bottom:141.111060px;}
.ycb{bottom:141.651060px;}
.ye3{bottom:141.741060px;}
.y18f{bottom:142.281060px;}
.ye0{bottom:147.951060px;}
.ya8{bottom:148.311060px;}
.y1ec{bottom:150.111060px;}
.y86{bottom:151.281060px;}
.y111{bottom:151.641060px;}
.y20b{bottom:156.681060px;}
.y49{bottom:158.661060px;}
.y24{bottom:162.441060px;}
.y9c{bottom:162.621060px;}
.ybd{bottom:163.341060px;}
.y156{bottom:164.691060px;}
.yca{bottom:166.221060px;}
.y110{bottom:168.921060px;}
.y1eb{bottom:171.081060px;}
.ydf{bottom:172.611060px;}
.ya7{bottom:172.881060px;}
.y18e{bottom:175.401060px;}
.y85{bottom:175.851060px;}
.y23{bottom:176.301060px;}
.y20a{bottom:177.651060px;}
.y155{bottom:185.751060px;}
.y10f{bottom:186.201060px;}
.y9b{bottom:187.281060px;}
.ybc{bottom:188.001060px;}
.y13d{bottom:189.711060px;}
.yc9{bottom:190.881060px;}
.y18d{bottom:190.971060px;}
.y22{bottom:193.851060px;}
.yde{bottom:197.271060px;}
.ya6{bottom:197.541060px;}
.y84{bottom:200.511060px;}
.yfd{bottom:201.771060px;}
.y10e{bottom:203.391060px;}
.y18c{bottom:206.451060px;}
.y154{bottom:206.721060px;}
.y1c7{bottom:207.891060px;}
.y13c{bottom:210.681060px;}
.y48{bottom:211.491060px;}
.y9a{bottom:211.851060px;}
.ybb{bottom:212.571060px;}
.y1ea{bottom:213.111060px;}
.y21{bottom:215.271060px;}
.yc8{bottom:215.451060px;}
.y209{bottom:219.681060px;}
.y18b{bottom:222.021060px;}
.ya5{bottom:222.111060px;}
.y10d{bottom:222.651060px;}
.y83{bottom:225.081060px;}
.y153{bottom:227.691060px;}
.y64{bottom:229.041060px;}
.y20{bottom:229.671060px;}
.y13b{bottom:231.741060px;}
.y99{bottom:236.511060px;}
.yba{bottom:237.231060px;}
.y18a{bottom:237.501060px;}
.yc7{bottom:240.111060px;}
.y208{bottom:240.651060px;}
.y1c6{bottom:242.361060px;}
.ydd{bottom:242.811060px;}
.y10c{bottom:243.621060px;}
.y63{bottom:246.591060px;}
.ya4{bottom:246.771060px;}
.yfc{bottom:247.311060px;}
.y152{bottom:248.751060px;}
.y82{bottom:249.741060px;}
.y13a{bottom:252.711060px;}
.y189{bottom:253.071060px;}
.y1f{bottom:254.601060px;}
.y1e9{bottom:255.051060px;}
.y141{bottom:257.301060px;}
.y1c5{bottom:259.551060px;}
.y98{bottom:261.081060px;}
.y62{bottom:264.231060px;}
.y10b{bottom:264.591060px;}
.yc6{bottom:264.771060px;}
.y188{bottom:268.551060px;}
.y151{bottom:269.721060px;}
.ya3{bottom:271.341060px;}
.y139{bottom:273.681060px;}
.y81{bottom:274.311060px;}
.y1e8{bottom:276.111060px;}
.y1c4{bottom:276.831060px;}
.y140{bottom:278.361060px;}
.y1e{bottom:279.171060px;}
.y207{bottom:282.681060px;}
.yb9{bottom:282.861060px;}
.y187{bottom:284.121060px;}
.y61{bottom:285.561060px;}
.y10a{bottom:285.651060px;}
.y97{bottom:285.741060px;}
.ydc{bottom:288.441060px;}
.yc5{bottom:289.341060px;}
.y150{bottom:290.691060px;}
.yfb{bottom:292.941060px;}
.y1c3{bottom:294.111060px;}
.y138{bottom:294.741060px;}
.y1e7{bottom:297.081060px;}
.y80{bottom:298.971060px;}
.y13f{bottom:299.331060px;}
.y186{bottom:299.601060px;}
.y60{bottom:300.051060px;}
.y206{bottom:303.651060px;}
.y1d{bottom:303.831060px;}
.y109{bottom:306.621060px;}
.yb8{bottom:307.431060px;}
.y102{bottom:307.971060px;}
.y47{bottom:310.311060px;}
.y1c2{bottom:311.301060px;}
.y14f{bottom:311.751060px;}
.yd7{bottom:313.101060px;}
.yc4{bottom:314.001060px;}
.y13e{bottom:315.171060px;}
.y137{bottom:315.711060px;}
.ya2{bottom:316.971060px;}
.yfa{bottom:317.601060px;}
.y1e6{bottom:318.051060px;}
.y7f{bottom:323.631060px;}
.y205{bottom:324.711060px;}
.y108{bottom:327.591060px;}
.y1c1{bottom:328.221060px;}
.y1c{bottom:328.401060px;}
.y185{bottom:330.651060px;}
.yb7{bottom:332.091060px;}
.yd6{bottom:332.541060px;}
.y14e{bottom:332.721060px;}
.ydb{bottom:333.081060px;}
.y46{bottom:334.971060px;}
.y136{bottom:336.681060px;}
.y5f{bottom:337.311060px;}
.y1e5{bottom:339.111060px;}
.yf9{bottom:342.171060px;}
.y1c0{bottom:343.701060px;}
.y184{bottom:346.221060px;}
.y7e{bottom:348.201060px;}
.y107{bottom:348.651060px;}
.yd5{bottom:351.891060px;}
.yda{bottom:352.521060px;}
.y101{bottom:353.511060px;}
.y14d{bottom:353.691060px;}
.y96{bottom:355.941060px;}
.yb6{bottom:356.661060px;}
.y135{bottom:357.741060px;}
.ya1{bottom:357.921060px;}
.y1bf{bottom:359.271060px;}
.y45{bottom:359.631060px;}
.y1e4{bottom:360.081060px;}
.y183{bottom:361.701060px;}
.y5e{bottom:361.971060px;}
.yff{bottom:362.511060px;}
.y204{bottom:365.931060px;}
.yf8{bottom:366.831210px;}
.y106{bottom:369.621060px;}
.yd9{bottom:371.781060px;}
.y1b{bottom:374.031060px;}
.y14c{bottom:374.751060px;}
.y182{bottom:377.271060px;}
.y134{bottom:378.711060px;}
.y95{bottom:380.601060px;}
.y1e3{bottom:381.051060px;}
.yb5{bottom:381.321060px;}
.y44{bottom:384.201060px;}
.y203{bottom:384.651060px;}
.y5d{bottom:386.631060px;}
.yd4{bottom:388.431060px;}
.y1be{bottom:390.321060px;}
.y105{bottom:390.591060px;}
.yf7{bottom:391.401060px;}
.y181{bottom:392.751060px;}
.y7d{bottom:393.831210px;}
.y100{bottom:394.461060px;}
.y14b{bottom:395.721060px;}
.y1a{bottom:398.691060px;}
.y133{bottom:399.681060px;}
.y1e2{bottom:402.111060px;}
.yfe{bottom:403.461060px;}
.y94{bottom:405.171060px;}
.y1bd{bottom:405.801060px;}
.yb4{bottom:405.891060px;}
.y180{bottom:408.321060px;}
.yd8{bottom:408.411210px;}
.y43{bottom:408.861060px;}
.y5c{bottom:411.201060px;}
.y104{bottom:411.651060px;}
.yf6{bottom:416.061060px;}
.y14a{bottom:416.691060px;}
.y7c{bottom:418.401060px;}
.y132{bottom:420.741210px;}
.y1bc{bottom:421.371060px;}
.y1e1{bottom:423.081210px;}
.y19{bottom:423.261060px;}
.y17f{bottom:423.801060px;}
.y202{bottom:426.681060px;}
.y93{bottom:429.831210px;}
.y42{bottom:433.431060px;}
.y5b{bottom:435.861060px;}
.y1bb{bottom:436.851060px;}
.y149{bottom:437.751060px;}
.y17e{bottom:439.371060px;}
.y131{bottom:441.711060px;}
.y7b{bottom:443.061060px;}
.y1e0{bottom:444.051060px;}
.y201{bottom:447.651060px;}
.y18{bottom:447.921060px;}
.y103{bottom:448.371060px;}
.yb3{bottom:451.521060px;}
.y1ba{bottom:452.421060px;}
.y92{bottom:454.401060px;}
.y17d{bottom:454.851060px;}
.y41{bottom:458.091060px;}
.y148{bottom:458.721060px;}
.y5a{bottom:460.431060px;}
.yf5{bottom:461.691060px;}
.y130{bottom:462.681060px;}
.y1df{bottom:465.111060px;}
.y7a{bottom:467.721060px;}
.y1b9{bottom:467.901060px;}
.y17c{bottom:470.421060px;}
.y17{bottom:472.581210px;}
.y91{bottom:479.061060px;}
.y147{bottom:479.691060px;}
.y40{bottom:482.661210px;}
.y1b8{bottom:483.471060px;}
.y12f{bottom:483.741060px;}
.y59{bottom:485.091060px;}
.y17b{bottom:485.901060px;}
.yf4{bottom:486.261060px;}
.y200{bottom:489.681060px;}
.y79{bottom:492.291060px;}
.yb2{bottom:497.061060px;}
.y16{bottom:497.151060px;}
.y1b7{bottom:498.951060px;}
.y146{bottom:500.751060px;}
.y17a{bottom:501.471060px;}
.y90{bottom:503.721060px;}
.y12e{bottom:504.711060px;}
.y1de{bottom:507.051060px;}
.y3f{bottom:507.321060px;}
.y58{bottom:509.661210px;}
.y1ff{bottom:510.651060px;}
.yf3{bottom:510.921060px;}
.y1b6{bottom:514.521060px;}
.y78{bottom:516.951060px;}
.y145{bottom:521.721060px;}
.y15{bottom:521.811060px;}
.yd3{bottom:525.321060px;}
.y12d{bottom:525.681060px;}
.y8f{bottom:528.291060px;}
.y1b5{bottom:530.001060px;}
.y3e{bottom:531.891060px;}
.y179{bottom:532.431060px;}
.y57{bottom:534.321060px;}
.yf2{bottom:535.581210px;}
.y77{bottom:541.521060px;}
.y144{bottom:542.691060px;}
.yb1{bottom:542.781060px;}
.y1b4{bottom:545.571060px;}
.y14{bottom:546.381060px;}
.y12c{bottom:546.741060px;}
.y178{bottom:548.001060px;}
.y1dd{bottom:549.081210px;}
.y1fe{bottom:552.681060px;}
.y8e{bottom:552.951060px;}
.y3d{bottom:556.551060px;}
.y56{bottom:558.891060px;}
.yf1{bottom:560.151060px;}
.y1b3{bottom:561.051060px;}
.y177{bottom:563.481060px;}
.y143{bottom:563.751060px;}
.y76{bottom:566.181060px;}
.yb0{bottom:567.441060px;}
.y12b{bottom:567.711060px;}
.yd2{bottom:569.871060px;}
.y1dc{bottom:570.051060px;}
.y13{bottom:571.041060px;}
.y1fd{bottom:573.651060px;}
.y1b2{bottom:576.621060px;}
.y8d{bottom:577.521060px;}
.y176{bottom:579.051060px;}
.y142{bottom:579.501060px;}
.y3c{bottom:581.121060px;}
.y55{bottom:583.551060px;}
.yf0{bottom:584.811060px;}
.y12a{bottom:588.681060px;}
.y75{bottom:590.751060px;}
.y1db{bottom:591.111060px;}
.yaf{bottom:592.011060px;}
.y1b1{bottom:592.101060px;}
.y175{bottom:594.531060px;}
.y1fc{bottom:594.711060px;}
.y12{bottom:595.611060px;}
.y8c{bottom:602.181060px;}
.y3b{bottom:605.781060px;}
.yd1{bottom:606.501060px;}
.y1b0{bottom:607.671060px;}
.y54{bottom:608.121060px;}
.yef{bottom:609.381060px;}
.y129{bottom:609.741060px;}
.y174{bottom:610.101060px;}
.y1da{bottom:612.081060px;}
.yae{bottom:616.671060px;}
.y11{bottom:620.271060px;}
.y1af{bottom:623.151060px;}
.y173{bottom:625.581060px;}
.y8b{bottom:626.751060px;}
.y74{bottom:630.441060px;}
.y128{bottom:630.711060px;}
.y53{bottom:632.781060px;}
.y1d9{bottom:633.051060px;}
.yee{bottom:634.041060px;}
.y1fb{bottom:636.651060px;}
.y1ae{bottom:638.721060px;}
.y172{bottom:641.151060px;}
.y10{bottom:644.841060px;}
.y3a{bottom:651.411060px;}
.y127{bottom:651.681060px;}
.y1d8{bottom:654.111060px;}
.y1ad{bottom:654.201060px;}
.y73{bottom:655.011060px;}
.y171{bottom:656.631060px;}
.y52{bottom:657.441060px;}
.y1fa{bottom:657.711060px;}
.yed{bottom:658.611060px;}
.yad{bottom:662.301060px;}
.yf{bottom:669.501060px;}
.y1ac{bottom:669.771060px;}
.y170{bottom:672.201060px;}
.y126{bottom:672.741060px;}
.y1d7{bottom:675.081060px;}
.y39{bottom:675.981060px;}
.y1f9{bottom:678.681060px;}
.y72{bottom:679.671060px;}
.y51{bottom:682.011060px;}
.yec{bottom:683.271060px;}
.y1ab{bottom:685.251060px;}
.y16f{bottom:687.681060px;}
.y125{bottom:693.711060px;}
.ye{bottom:694.161060px;}
.y38{bottom:700.641060px;}
.y1aa{bottom:700.821060px;}
.y16e{bottom:703.251060px;}
.y71{bottom:704.241060px;}
.y50{bottom:706.671060px;}
.yac{bottom:707.841060px;}
.y124{bottom:714.681060px;}
.y1a9{bottom:716.301060px;}
.y1d6{bottom:717.111060px;}
.y16d{bottom:718.731060px;}
.y1f8{bottom:720.711060px;}
.y37{bottom:725.301060px;}
.y70{bottom:728.901060px;}
.y4f{bottom:731.241060px;}
.y1a8{bottom:731.871060px;}
.yeb{bottom:732.501060px;}
.y16c{bottom:734.301060px;}
.yd{bottom:739.701060px;}
.y1f7{bottom:741.681060px;}
.y1a7{bottom:747.351060px;}
.y16b{bottom:749.781060px;}
.y8a{bottom:749.871060px;}
.y6f{bottom:753.471210px;}
.y4e{bottom:755.901210px;}
.y123{bottom:756.711060px;}
.yea{bottom:757.161060px;}
.y1d5{bottom:759.051060px;}
.y1f6{bottom:762.651210px;}
.y1a6{bottom:762.921060px;}
.y16a{bottom:765.351060px;}
.y36{bottom:770.841060px;}
.y89{bottom:774.531060px;}
.y122{bottom:777.771060px;}
.y6e{bottom:778.131210px;}
.y1a5{bottom:778.401210px;}
.y1d4{bottom:780.111060px;}
.y4d{bottom:780.471210px;}
.y169{bottom:780.831210px;}
.ye9{bottom:781.731060px;}
.yc{bottom:785.331210px;}
.y1a4{bottom:793.881210px;}
.y35{bottom:795.501060px;}
.y168{bottom:796.401210px;}
.yc3{bottom:799.101060px;}
.y1d3{bottom:801.081210px;}
.y6d{bottom:802.701060px;}
.y1f5{bottom:804.681060px;}
.y4c{bottom:805.131210px;}
.ye8{bottom:806.391060px;}
.y1a3{bottom:809.451060px;}
.y167{bottom:811.881060px;}
.y121{bottom:819.711060px;}
.y34{bottom:820.161060px;}
.y1d2{bottom:822.051060px;}
.yc2{bottom:823.761060px;}
.y1a2{bottom:824.931060px;}
.y6c{bottom:827.361060px;}
.y166{bottom:827.451060px;}
.y4b{bottom:829.701060px;}
.yb{bottom:830.961060px;}
.y1a1{bottom:840.501060px;}
.y120{bottom:840.681060px;}
.y165{bottom:842.931060px;}
.y1d1{bottom:843.111060px;}
.y33{bottom:844.731060px;}
.y1f4{bottom:846.711060px;}
.ya0{bottom:848.331210px;}
.y6b{bottom:852.021060px;}
.y4a{bottom:854.361060px;}
.ya{bottom:855.621060px;}
.y1a0{bottom:855.981060px;}
.y164{bottom:858.501060px;}
.y11f{bottom:861.741210px;}
.y1f3{bottom:867.681060px;}
.y32{bottom:869.391060px;}
.y19f{bottom:871.551060px;}
.y9f{bottom:872.991210px;}
.y163{bottom:873.981060px;}
.yab{bottom:876.591060px;}
.y9{bottom:880.191060px;}
.y1d0{bottom:885.051060px;}
.y19e{bottom:887.031060px;}
.y1f2{bottom:888.651210px;}
.y162{bottom:889.551060px;}
.y31{bottom:893.961060px;}
.y6a{bottom:897.561210px;}
.ye7{bottom:901.251060px;}
.y19d{bottom:902.601060px;}
.y11e{bottom:903.681060px;}
.y8{bottom:904.851060px;}
.y161{bottom:905.031060px;}
.y19c{bottom:918.081210px;}
.y30{bottom:918.621060px;}
.y160{bottom:920.601060px;}
.y69{bottom:922.221210px;}
.y11d{bottom:924.741210px;}
.ye6{bottom:925.821060px;}
.y1cf{bottom:927.081210px;}
.y7{bottom:929.421060px;}
.y1f1{bottom:930.681060px;}
.y19b{bottom:933.651210px;}
.y210{bottom:933.741210px;}
.y15f{bottom:936.081210px;}
.y2f{bottom:943.191060px;}
.y11c{bottom:945.711060px;}
.y68{bottom:946.881060px;}
.y19a{bottom:949.131060px;}
.y15e{bottom:951.651210px;}
.y6{bottom:954.081210px;}
.y15d{bottom:967.131060px;}
.y199{bottom:967.221210px;}
.y2e{bottom:967.851060px;}
.y1ce{bottom:969.111060px;}
.y67{bottom:971.451060px;}
.y1f0{bottom:972.711060px;}
.y20f{bottom:973.341060px;}
.y15c{bottom:985.221060px;}
.y11b{bottom:987.741210px;}
.y1cd{bottom:990.081210px;}
.y2d{bottom:992.421060px;}
.y1ef{bottom:993.681060px;}
.y66{bottom:996.021060px;}
.yc1{bottom:996.111060px;}
.y5{bottom:999.621060px;}
.y11a{bottom:1008.711060px;}
.yd0{bottom:1010.241210px;}
.y1cc{bottom:1011.051060px;}
.y20e{bottom:1012.941060px;}
.y198{bottom:1014.111060px;}
.y1ee{bottom:1014.651210px;}
.y2c{bottom:1017.081210px;}
.yc0{bottom:1020.681060px;}
.y119{bottom:1029.771060px;}
.y15b{bottom:1031.481060px;}
.y1cb{bottom:1032.111060px;}
.y197{bottom:1035.171060px;}
.y1ed{bottom:1035.711060px;}
.y2b{bottom:1041.741210px;}
.y4{bottom:1045.341060px;}
.y20d{bottom:1052.541060px;}
.y1ca{bottom:1053.081210px;}
.ycf{bottom:1054.791060px;}
.y2a{bottom:1066.311210px;}
.y118{bottom:1069.731060px;}
.y3{bottom:1069.911060px;}
.y1c9{bottom:1074.051060px;}
.yce{bottom:1074.231060px;}
.y196{bottom:1075.581210px;}
.y15a{bottom:1077.651210px;}
.y211{bottom:1078.731060px;}
.y117{bottom:1087.011060px;}
.y29{bottom:1090.971060px;}
.y195{bottom:1091.061210px;}
.y159{bottom:1098.711060px;}
.y116{bottom:1104.291060px;}
.y194{bottom:1106.631060px;}
.y1c8{bottom:1115.451060px;}
.y2{bottom:1115.541060px;}
.y158{bottom:1119.681060px;}
.y115{bottom:1121.481060px;}
.y193{bottom:1122.111060px;}
.h5{height:36.878203px;}
.hb{height:36.878263px;}
.ha{height:37.520508px;}
.h9{height:41.522695px;}
.h6{height:51.998203px;}
.h7{height:57.323320px;}
.h3{height:59.060039px;}
.h4{height:62.648438px;}
.hc{height:64.582031px;}
.h2{height:72.985430px;}
.h8{height:75.238066px;}
.h1{height:1220.481150px;}
.h0{height:1263.000000px;}
.w3{width:275.421000px;}
.w2{width:286.380000px;}
.w4{width:323.190000px;}
.w1{width:849.981150px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xe{left:7.739850px;}
.x1{left:21.259500px;}
.x2{left:106.379880px;}
.x17{left:119.899500px;}
.xa{left:159.479700px;}
.x5{left:190.510950px;}
.x11{left:204.409800px;}
.x16{left:210.628050px;}
.x13{left:212.500200px;}
.x15{left:214.385400px;}
.x14{left:216.995700px;}
.x12{left:235.756050px;}
.x19{left:240.489900px;}
.x3{left:265.679850px;}
.xf{left:308.719500px;}
.x8{left:321.299550px;}
.x6{left:324.744900px;}
.x9{left:358.552050px;}
.x4{left:369.872250px;}
.x18{left:443.809500px;}
.x10{left:595.819500px;}
.xc{left:616.429650px;}
.xb{left:664.379850px;}
.x7{left:715.572450px;}
.xd{left:743.729700px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.v4{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls6b{letter-spacing:-0.057600pt;}
.ls4f{letter-spacing:-0.014912pt;}
.ls17{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.003733pt;}
.ls5{letter-spacing:0.007456pt;}
.lse{letter-spacing:0.012800pt;}
.lsb{letter-spacing:0.014912pt;}
.ls56{letter-spacing:0.017387pt;}
.ls1f{letter-spacing:0.020736pt;}
.ls0{letter-spacing:0.022368pt;}
.ls3a{letter-spacing:0.027733pt;}
.ls45{letter-spacing:0.028480pt;}
.ls4a{letter-spacing:0.029280pt;}
.ls3c{letter-spacing:0.029547pt;}
.ls9{letter-spacing:0.029824pt;}
.ls39{letter-spacing:0.031360pt;}
.ls50{letter-spacing:0.036800pt;}
.lsa{letter-spacing:0.037280pt;}
.ls55{letter-spacing:0.037333pt;}
.ls22{letter-spacing:0.037547pt;}
.ls2e{letter-spacing:0.038080pt;}
.lsd{letter-spacing:0.038933pt;}
.ls2{letter-spacing:0.039467pt;}
.ls4d{letter-spacing:0.040992pt;}
.ls1{letter-spacing:0.044736pt;}
.ls31{letter-spacing:0.046720pt;}
.ls49{letter-spacing:0.046848pt;}
.ls21{letter-spacing:0.046933pt;}
.ls36{letter-spacing:0.047808pt;}
.ls15{letter-spacing:0.048640pt;}
.lsc{letter-spacing:0.052192pt;}
.ls58{letter-spacing:0.052800pt;}
.ls59{letter-spacing:0.053120pt;}
.ls2d{letter-spacing:0.053333pt;}
.ls68{letter-spacing:0.055296pt;}
.ls34{letter-spacing:0.058133pt;}
.ls16{letter-spacing:0.058400pt;}
.ls4b{letter-spacing:0.058560pt;}
.ls7{letter-spacing:0.059648pt;}
.ls4c{letter-spacing:0.064416pt;}
.ls6{letter-spacing:0.067104pt;}
.ls66{letter-spacing:0.069056pt;}
.ls24{letter-spacing:0.074368pt;}
.ls18{letter-spacing:0.074560pt;}
.ls32{letter-spacing:0.079680pt;}
.ls20{letter-spacing:0.082016pt;}
.ls33{letter-spacing:0.084992pt;}
.ls67{letter-spacing:0.087573pt;}
.ls1a{letter-spacing:0.089472pt;}
.ls11{letter-spacing:0.090304pt;}
.ls12{letter-spacing:0.095616pt;}
.ls51{letter-spacing:0.100800pt;}
.ls14{letter-spacing:0.100928pt;}
.ls26{letter-spacing:0.106240pt;}
.ls25{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.111552pt;}
.ls23{letter-spacing:0.116864pt;}
.ls29{letter-spacing:0.119296pt;}
.ls13{letter-spacing:0.124907pt;}
.ls5e{letter-spacing:0.126752pt;}
.ls2b{letter-spacing:0.127488pt;}
.ls44{letter-spacing:0.130133pt;}
.ls2a{letter-spacing:0.132800pt;}
.ls54{letter-spacing:0.138112pt;}
.ls2f{letter-spacing:0.141333pt;}
.ls57{letter-spacing:0.145387pt;}
.ls64{letter-spacing:0.180608pt;}
.ls1e{letter-spacing:0.196544pt;}
.ls62{letter-spacing:0.235200pt;}
.ls61{letter-spacing:0.235733pt;}
.lsf{letter-spacing:0.257013pt;}
.ls5f{letter-spacing:0.298240pt;}
.ls2c{letter-spacing:1.482048pt;}
.ls53{letter-spacing:1.513568pt;}
.ls37{letter-spacing:1.588128pt;}
.ls4e{letter-spacing:1.834176pt;}
.ls38{letter-spacing:2.512672pt;}
.ls5d{letter-spacing:2.825824pt;}
.ls3e{letter-spacing:3.399936pt;}
.ls43{letter-spacing:3.698176pt;}
.ls42{letter-spacing:4.249920pt;}
.ls30{letter-spacing:5.558933pt;}
.ls41{letter-spacing:5.845504pt;}
.ls27{letter-spacing:5.912608pt;}
.ls3f{letter-spacing:6.277951pt;}
.ls1d{letter-spacing:7.813952pt;}
.ls40{letter-spacing:8.425280pt;}
.ls5c{letter-spacing:9.521312pt;}
.ls69{letter-spacing:9.677888pt;}
.ls35{letter-spacing:9.931392pt;}
.ls28{letter-spacing:10.334016pt;}
.ls65{letter-spacing:10.374400pt;}
.ls63{letter-spacing:11.440587pt;}
.ls1c{letter-spacing:14.305216pt;}
.ls52{letter-spacing:15.903648pt;}
.ls1b{letter-spacing:18.110624pt;}
.ls3b{letter-spacing:18.595733pt;}
.ls19{letter-spacing:20.958816pt;}
.ls6a{letter-spacing:21.324160pt;}
.ls47{letter-spacing:21.719328pt;}
.ls48{letter-spacing:22.040533pt;}
.ls3d{letter-spacing:35.408544pt;}
.ls46{letter-spacing:69.929824pt;}
.ls60{letter-spacing:170.159360pt;}
.ls8{letter-spacing:172.396160pt;}
.ls4{letter-spacing:172.396267pt;}
.ls5b{letter-spacing:175.519360pt;}
.ls5a{letter-spacing:175.519467pt;}
.ws3{word-spacing:-172.470827pt;}
.wsb6{word-spacing:-70.004384pt;}
.ws8d{word-spacing:-35.483104pt;}
.wscb{word-spacing:-21.793888pt;}
.wse{word-spacing:-21.033376pt;}
.ws10e{word-spacing:-18.714560pt;}
.ws102{word-spacing:-18.707104pt;}
.ws104{word-spacing:-18.692192pt;}
.ws103{word-spacing:-18.677280pt;}
.ws10d{word-spacing:-18.669824pt;}
.ws101{word-spacing:-18.654912pt;}
.ws1c{word-spacing:-18.185184pt;}
.ws109{word-spacing:-16.000000pt;}
.wse5{word-spacing:-15.978208pt;}
.ws23{word-spacing:-14.358336pt;}
.ws10b{word-spacing:-13.386240pt;}
.ws105{word-spacing:-13.364992pt;}
.ws3d{word-spacing:-10.408576pt;}
.ws5f{word-spacing:-10.005952pt;}
.ws9c{word-spacing:-8.499840pt;}
.ws25{word-spacing:-7.867072pt;}
.ws9b{word-spacing:-6.352511pt;}
.ws106{word-spacing:-6.000000pt;}
.ws35{word-spacing:-5.987168pt;}
.ws9e{word-spacing:-5.920064pt;}
.ws10c{word-spacing:-5.280000pt;}
.wsa0{word-spacing:-4.324480pt;}
.wsac{word-spacing:-3.772736pt;}
.ws9a{word-spacing:-3.474496pt;}
.ws85{word-spacing:-2.587232pt;}
.wse0{word-spacing:-1.908736pt;}
.ws76{word-spacing:-1.662688pt;}
.wse6{word-spacing:-1.588128pt;}
.ws4e{word-spacing:-1.535168pt;}
.ws29{word-spacing:-0.249664pt;}
.ws108{word-spacing:-0.233728pt;}
.ws46{word-spacing:-0.193856pt;}
.wsf6{word-spacing:-0.191232pt;}
.ws49{word-spacing:-0.185920pt;}
.ws4c{word-spacing:-0.180608pt;}
.ws6e{word-spacing:-0.169984pt;}
.ws26{word-spacing:-0.164672pt;}
.ws16{word-spacing:-0.164032pt;}
.ws4d{word-spacing:-0.159360pt;}
.ws3c{word-spacing:-0.156576pt;}
.ws28{word-spacing:-0.154048pt;}
.ws7{word-spacing:-0.149120pt;}
.ws24{word-spacing:-0.148736pt;}
.ws27{word-spacing:-0.143424pt;}
.ws5{word-spacing:-0.141664pt;}
.ws6d{word-spacing:-0.138112pt;}
.ws6{word-spacing:-0.134208pt;}
.ws6c{word-spacing:-0.132800pt;}
.ws4b{word-spacing:-0.127488pt;}
.ws19{word-spacing:-0.126752pt;}
.ws1{word-spacing:-0.119296pt;}
.wsd9{word-spacing:-0.117120pt;}
.wsb{word-spacing:-0.111840pt;}
.wsd7{word-spacing:-0.105408pt;}
.ws8{word-spacing:-0.104384pt;}
.ws71{word-spacing:-0.100928pt;}
.wsdc{word-spacing:-0.099552pt;}
.ws0{word-spacing:-0.096928pt;}
.ws10a{word-spacing:-0.089856pt;}
.ws11{word-spacing:-0.089472pt;}
.wsd8{word-spacing:-0.087840pt;}
.ws4{word-spacing:-0.082016pt;}
.ws20{word-spacing:-0.076800pt;}
.ws2{word-spacing:-0.074560pt;}
.wse1{word-spacing:-0.059648pt;}
.ws6f{word-spacing:-0.053120pt;}
.ws5a{word-spacing:-0.048000pt;}
.ws2c{word-spacing:0.000000pt;}
.ws4a{word-spacing:8.541696pt;}
.ws70{word-spacing:11.537664pt;}
.ws2a{word-spacing:11.962624pt;}
.ws45{word-spacing:12.101088pt;}
.ws54{word-spacing:12.160736pt;}
.wsab{word-spacing:12.168192pt;}
.ws5e{word-spacing:12.168363pt;}
.wsc0{word-spacing:12.317312pt;}
.wsae{word-spacing:12.384416pt;}
.wsad{word-spacing:12.414240pt;}
.ws47{word-spacing:12.458976pt;}
.ws72{word-spacing:12.503712pt;}
.wsf1{word-spacing:12.533536pt;}
.ws73{word-spacing:12.548448pt;}
.ws48{word-spacing:12.570816pt;}
.ws6a{word-spacing:13.279136pt;}
.wsb4{word-spacing:13.353696pt;}
.ws6b{word-spacing:13.383520pt;}
.wsc3{word-spacing:13.458080pt;}
.ws66{word-spacing:13.502816pt;}
.wsf5{word-spacing:13.651936pt;}
.wsf4{word-spacing:13.681760pt;}
.wsd2{word-spacing:13.726496pt;}
.wsdb{word-spacing:13.755744pt;}
.ws7c{word-spacing:13.756320pt;}
.wsda{word-spacing:13.761600pt;}
.wse8{word-spacing:13.830880pt;}
.ws21{word-spacing:14.018368pt;}
.wsb1{word-spacing:14.024736pt;}
.ws100{word-spacing:14.076928pt;}
.ws22{word-spacing:14.092736pt;}
.ws14{word-spacing:14.173856pt;}
.ws15{word-spacing:14.188768pt;}
.wsde{word-spacing:14.203680pt;}
.wsa5{word-spacing:14.360256pt;}
.wsed{word-spacing:14.472096pt;}
.wsf8{word-spacing:14.494464pt;}
.wsf7{word-spacing:14.501920pt;}
.ws44{word-spacing:14.576480pt;}
.ws86{word-spacing:14.599211pt;}
.wsf{word-spacing:14.621216pt;}
.ws87{word-spacing:14.658496pt;}
.ws10{word-spacing:14.733056pt;}
.wsb7{word-spacing:14.762880pt;}
.wsf3{word-spacing:14.844896pt;}
.ws40{word-spacing:14.867264pt;}
.ws57{word-spacing:14.912000pt;}
.ws34{word-spacing:14.994016pt;}
.wsdf{word-spacing:15.068576pt;}
.ws33{word-spacing:15.113312pt;}
.wsd6{word-spacing:15.240064pt;}
.ws79{word-spacing:15.739616pt;}
.wse4{word-spacing:15.769440pt;}
.ws7a{word-spacing:15.844000pt;}
.ws7e{word-spacing:15.963296pt;}
.ws77{word-spacing:16.037856pt;}
.ws7d{word-spacing:16.142240pt;}
.ws51{word-spacing:16.254080pt;}
.wsb0{word-spacing:16.351008pt;}
.ws53{word-spacing:16.373376pt;}
.ws52{word-spacing:16.395744pt;}
.ws8a{word-spacing:16.418112pt;}
.wsf0{word-spacing:16.433024pt;}
.wsaf{word-spacing:16.440480pt;}
.ws32{word-spacing:16.477760pt;}
.ws31{word-spacing:16.597056pt;}
.ws98{word-spacing:16.738720pt;}
.ws1a{word-spacing:16.783456pt;}
.ws99{word-spacing:16.820736pt;}
.wsc5{word-spacing:17.007136pt;}
.wsc4{word-spacing:17.044416pt;}
.wsa1{word-spacing:17.305376pt;}
.ws56{word-spacing:17.339840pt;}
.ws58{word-spacing:17.417216pt;}
.wsa2{word-spacing:17.447040pt;}
.wsa3{word-spacing:17.454496pt;}
.ws74{word-spacing:17.618528pt;}
.ws1f{word-spacing:17.916768pt;}
.ws7f{word-spacing:17.931680pt;}
.ws1d{word-spacing:18.013696pt;}
.ws1b{word-spacing:18.021152pt;}
.ws1e{word-spacing:18.037973pt;}
.wsbc{word-spacing:18.326848pt;}
.ws5c{word-spacing:18.379040pt;}
.ws92{word-spacing:18.423776pt;}
.ws94{word-spacing:18.438688pt;}
.ws93{word-spacing:18.475968pt;}
.wsa4{word-spacing:18.647456pt;}
.wse9{word-spacing:18.699648pt;}
.ws69{word-spacing:18.871136pt;}
.wscc{word-spacing:18.938240pt;}
.ws36{word-spacing:19.169376pt;}
.ws18{word-spacing:19.214112pt;}
.wsfa{word-spacing:19.318496pt;}
.wseb{word-spacing:19.847872pt;}
.ws8e{word-spacing:19.870240pt;}
.wsea{word-spacing:19.877696pt;}
.ws17{word-spacing:20.019360pt;}
.ws38{word-spacing:20.161024pt;}
.wse7{word-spacing:20.168480pt;}
.ws37{word-spacing:20.190848pt;}
.ws9{word-spacing:20.295232pt;}
.wsa{word-spacing:20.392160pt;}
.ws95{word-spacing:20.436896pt;}
.ws96{word-spacing:20.556192pt;}
.wsd1{word-spacing:20.578560pt;}
.wsc{word-spacing:20.821035pt;}
.wsd{word-spacing:20.839520pt;}
.ws5b{word-spacing:20.884256pt;}
.ws5d{word-spacing:20.914080pt;}
.ws55{word-spacing:20.936448pt;}
.ws89{word-spacing:20.996096pt;}
.ws8b{word-spacing:21.033376pt;}
.wsf9{word-spacing:21.286880pt;}
.ws41{word-spacing:21.331616pt;}
.ws43{word-spacing:21.368896pt;}
.ws42{word-spacing:21.376352pt;}
.ws97{word-spacing:21.383808pt;}
.wsfb{word-spacing:21.436000pt;}
.wsfc{word-spacing:21.458368pt;}
.wsce{word-spacing:21.480736pt;}
.ws3b{word-spacing:21.503104pt;}
.wsbe{word-spacing:21.555296pt;}
.wscd{word-spacing:21.581568pt;}
.wsca{word-spacing:21.592576pt;}
.wsbd{word-spacing:21.659680pt;}
.wsfd{word-spacing:21.734240pt;}
.ws63{word-spacing:21.778976pt;}
.ws65{word-spacing:21.786432pt;}
.ws64{word-spacing:21.816256pt;}
.wsd4{word-spacing:21.838624pt;}
.wsc8{word-spacing:22.576768pt;}
.wsc7{word-spacing:22.606592pt;}
.wsee{word-spacing:22.673696pt;}
.wsb3{word-spacing:23.866656pt;}
.wse3{word-spacing:23.933760pt;}
.wsb2{word-spacing:23.971040pt;}
.ws88{word-spacing:23.993408pt;}
.wse2{word-spacing:24.046720pt;}
.wsd3{word-spacing:24.399125pt;}
.wsd5{word-spacing:24.410944pt;}
.wsaa{word-spacing:24.910496pt;}
.wsc9{word-spacing:25.096896pt;}
.ws4f{word-spacing:25.191648pt;}
.ws107{word-spacing:25.226688pt;}
.ws50{word-spacing:25.231104pt;}
.ws59{word-spacing:25.275840pt;}
.ws7b{word-spacing:25.380224pt;}
.wsa8{word-spacing:25.611360pt;}
.wsa9{word-spacing:25.633728pt;}
.ws60{word-spacing:25.790304pt;}
.ws62{word-spacing:25.797760pt;}
.ws68{word-spacing:25.805216pt;}
.ws61{word-spacing:25.857408pt;}
.ws67{word-spacing:25.909600pt;}
.wsb8{word-spacing:26.058720pt;}
.ws3e{word-spacing:26.804320pt;}
.ws91{word-spacing:26.960896pt;}
.ws90{word-spacing:26.968352pt;}
.ws8f{word-spacing:26.975808pt;}
.wsba{word-spacing:27.221856pt;}
.wsb9{word-spacing:27.348608pt;}
.wsef{word-spacing:27.870528pt;}
.ws12{word-spacing:28.109120pt;}
.ws13{word-spacing:28.146400pt;}
.wsc2{word-spacing:28.862176pt;}
.wsc1{word-spacing:28.988928pt;}
.wsfe{word-spacing:29.451200pt;}
.wsff{word-spacing:29.473568pt;}
.ws75{word-spacing:31.397216pt;}
.ws9f{word-spacing:31.904224pt;}
.ws3f{word-spacing:32.135360pt;}
.ws2f{word-spacing:32.649824pt;}
.ws2d{word-spacing:32.657280pt;}
.ws2e{word-spacing:32.679648pt;}
.ws30{word-spacing:32.776576pt;}
.ws2b{word-spacing:33.162816pt;}
.wsd0{word-spacing:34.006816pt;}
.ws9d{word-spacing:34.036640pt;}
.ws8c{word-spacing:35.199776pt;}
.ws78{word-spacing:35.251968pt;}
.ws80{word-spacing:36.318176pt;}
.ws81{word-spacing:36.422560pt;}
.ws82{word-spacing:36.430016pt;}
.wsec{word-spacing:40.747040pt;}
.wsc6{word-spacing:42.737792pt;}
.wsbb{word-spacing:42.976384pt;}
.wscf{word-spacing:45.183360pt;}
.ws83{word-spacing:45.817120pt;}
.ws84{word-spacing:45.839488pt;}
.wsf2{word-spacing:53.220928pt;}
.wsa7{word-spacing:60.669472pt;}
.wsa6{word-spacing:60.676928pt;}
.wsb5{word-spacing:69.840352pt;}
.wsdd{word-spacing:81.486624pt;}
.ws39{word-spacing:95.138560pt;}
.ws3a{word-spacing:95.250400pt;}
.wsbf{word-spacing:172.321600pt;}
._22{margin-left:-89.963413pt;}
._1c{margin-left:-70.623040pt;}
._1b{margin-left:-69.557120pt;}
._18{margin-left:-35.276192pt;}
._5{margin-left:-21.715360pt;}
._4{margin-left:-20.646987pt;}
._c{margin-left:-18.027061pt;}
._1d{margin-left:-16.215413pt;}
._f{margin-left:-15.006805pt;}
._e{margin-left:-14.003659pt;}
._16{margin-left:-9.724821pt;}
._10{margin-left:-8.260288pt;}
._d{margin-left:-7.104533pt;}
._12{margin-left:-6.030677pt;}
._11{margin-left:-5.101035pt;}
._1a{margin-left:-4.046827pt;}
._19{margin-left:-3.103371pt;}
._17{margin-left:-2.075403pt;}
._7{margin-left:-0.894720pt;}
._0{width:0.932000pt;}
._3{width:1.835776pt;}
._14{width:2.941451pt;}
._6{width:3.951680pt;}
._8{width:4.846400pt;}
._b{width:5.890240pt;}
._a{width:6.934080pt;}
._9{width:7.903360pt;}
._13{width:8.798080pt;}
._15{width:9.715093pt;}
._1{width:11.012587pt;}
._2{width:12.137920pt;}
._2c{width:13.814933pt;}
._21{width:15.033067pt;}
._1e{width:16.179520pt;}
._23{width:17.724587pt;}
._27{width:20.056640pt;}
._2d{width:21.025920pt;}
._26{width:22.144320pt;}
._25{width:23.560960pt;}
._29{width:25.797760pt;}
._2e{width:27.214400pt;}
._1f{width:32.731840pt;}
._28{width:34.073920pt;}
._20{width:35.571147pt;}
._2f{width:37.429120pt;}
._2b{width:39.144000pt;}
._2a{width:43.221419pt;}
._24{width:175.519467pt;}
.fs7{font-size:21.120000pt;}
.fs6{font-size:24.000000pt;}
.fs3{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs5{font-size:58.560000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:18.897280pt;}
.ycd{bottom:77.752120pt;}
.y28{bottom:78.552107pt;}
.y192{bottom:78.632107pt;}
.y65{bottom:81.912107pt;}
.ye2{bottom:87.752120pt;}
.yaa{bottom:88.072107pt;}
.y114{bottom:88.792107pt;}
.y88{bottom:90.712120pt;}
.y27{bottom:94.152107pt;}
.ycc{bottom:94.712120pt;}
.y191{bottom:94.872107pt;}
.ye5{bottom:97.512107pt;}
.y9e{bottom:100.792107pt;}
.ybf{bottom:101.432107pt;}
.y113{bottom:104.152107pt;}
.ye1{bottom:109.672107pt;}
.y26{bottom:109.832107pt;}
.ya9{bottom:109.912107pt;}
.y157{bottom:110.392107pt;}
.y87{bottom:112.552107pt;}
.ye4{bottom:113.192107pt;}
.y190{bottom:113.592107pt;}
.y112{bottom:119.512053pt;}
.y20c{bottom:120.632053pt;}
.y9d{bottom:122.712053pt;}
.ybe{bottom:123.352053pt;}
.y25{bottom:125.432053pt;}
.ycb{bottom:125.912053pt;}
.ye3{bottom:125.992053pt;}
.y18f{bottom:126.472053pt;}
.ye0{bottom:131.512053pt;}
.ya8{bottom:131.832053pt;}
.y1ec{bottom:133.432053pt;}
.y86{bottom:134.472053pt;}
.y111{bottom:134.792053pt;}
.y20b{bottom:139.272053pt;}
.y49{bottom:141.032053pt;}
.y24{bottom:144.392053pt;}
.y9c{bottom:144.552053pt;}
.ybd{bottom:145.192053pt;}
.y156{bottom:146.392053pt;}
.yca{bottom:147.752053pt;}
.y110{bottom:150.152053pt;}
.y1eb{bottom:152.072053pt;}
.ydf{bottom:153.432053pt;}
.ya7{bottom:153.672053pt;}
.y18e{bottom:155.912053pt;}
.y85{bottom:156.312053pt;}
.y23{bottom:156.712053pt;}
.y20a{bottom:157.912053pt;}
.y155{bottom:165.112053pt;}
.y10f{bottom:165.512053pt;}
.y9b{bottom:166.472053pt;}
.ybc{bottom:167.112053pt;}
.y13d{bottom:168.632053pt;}
.yc9{bottom:169.672053pt;}
.y18d{bottom:169.752053pt;}
.y22{bottom:172.312053pt;}
.yde{bottom:175.352053pt;}
.ya6{bottom:175.592053pt;}
.y84{bottom:178.232053pt;}
.yfd{bottom:179.352053pt;}
.y10e{bottom:180.792053pt;}
.y18c{bottom:183.512053pt;}
.y154{bottom:183.752053pt;}
.y1c7{bottom:184.792053pt;}
.y13c{bottom:187.272053pt;}
.y48{bottom:187.992053pt;}
.y9a{bottom:188.312053pt;}
.ybb{bottom:188.952053pt;}
.y1ea{bottom:189.432053pt;}
.y21{bottom:191.352053pt;}
.yc8{bottom:191.512053pt;}
.y209{bottom:195.272053pt;}
.y18b{bottom:197.352053pt;}
.ya5{bottom:197.432053pt;}
.y10d{bottom:197.912053pt;}
.y83{bottom:200.072053pt;}
.y153{bottom:202.392053pt;}
.y64{bottom:203.592053pt;}
.y20{bottom:204.152053pt;}
.y13b{bottom:205.992053pt;}
.y99{bottom:210.232053pt;}
.yba{bottom:210.872053pt;}
.y18a{bottom:211.112053pt;}
.yc7{bottom:213.432053pt;}
.y208{bottom:213.912053pt;}
.y1c6{bottom:215.432053pt;}
.ydd{bottom:215.832053pt;}
.y10c{bottom:216.552053pt;}
.y63{bottom:219.192053pt;}
.ya4{bottom:219.352053pt;}
.yfc{bottom:219.832053pt;}
.y152{bottom:221.112053pt;}
.y82{bottom:221.992053pt;}
.y13a{bottom:224.632053pt;}
.y189{bottom:224.952053pt;}
.y1f{bottom:226.312053pt;}
.y1e9{bottom:226.712053pt;}
.y141{bottom:228.712053pt;}
.y1c5{bottom:230.712053pt;}
.y98{bottom:232.072053pt;}
.y62{bottom:234.872053pt;}
.y10b{bottom:235.192053pt;}
.yc6{bottom:235.352053pt;}
.y188{bottom:238.712053pt;}
.y151{bottom:239.752053pt;}
.ya3{bottom:241.192053pt;}
.y139{bottom:243.272053pt;}
.y81{bottom:243.832053pt;}
.y1e8{bottom:245.432053pt;}
.y1c4{bottom:246.072053pt;}
.y140{bottom:247.432053pt;}
.y1e{bottom:248.152053pt;}
.y207{bottom:251.272053pt;}
.yb9{bottom:251.432053pt;}
.y187{bottom:252.552053pt;}
.y61{bottom:253.832053pt;}
.y10a{bottom:253.912053pt;}
.y97{bottom:253.992053pt;}
.ydc{bottom:256.392053pt;}
.yc5{bottom:257.192053pt;}
.y150{bottom:258.392053pt;}
.yfb{bottom:260.392053pt;}
.y1c3{bottom:261.432053pt;}
.y138{bottom:261.992053pt;}
.y1e7{bottom:264.072053pt;}
.y80{bottom:265.752053pt;}
.y13f{bottom:266.072053pt;}
.y186{bottom:266.312053pt;}
.y60{bottom:266.712053pt;}
.y206{bottom:269.912053pt;}
.y1d{bottom:270.072053pt;}
.y109{bottom:272.552053pt;}
.yb8{bottom:273.272053pt;}
.y102{bottom:273.752053pt;}
.y47{bottom:275.832053pt;}
.y1c2{bottom:276.712053pt;}
.y14f{bottom:277.112053pt;}
.yd7{bottom:278.312053pt;}
.yc4{bottom:279.112053pt;}
.y13e{bottom:280.152053pt;}
.y137{bottom:280.632053pt;}
.ya2{bottom:281.752053pt;}
.yfa{bottom:282.312053pt;}
.y1e6{bottom:282.712053pt;}
.y7f{bottom:287.672053pt;}
.y205{bottom:288.632053pt;}
.y108{bottom:291.192053pt;}
.y1c1{bottom:291.752053pt;}
.y1c{bottom:291.912053pt;}
.y185{bottom:293.912053pt;}
.yb7{bottom:295.192053pt;}
.yd6{bottom:295.592053pt;}
.y14e{bottom:295.752053pt;}
.ydb{bottom:296.072053pt;}
.y46{bottom:297.752053pt;}
.y136{bottom:299.272053pt;}
.y5f{bottom:299.832053pt;}
.y1e5{bottom:301.432053pt;}
.yf9{bottom:304.152053pt;}
.y1c0{bottom:305.512053pt;}
.y184{bottom:307.752053pt;}
.y7e{bottom:309.512053pt;}
.y107{bottom:309.912053pt;}
.yd5{bottom:312.792053pt;}
.yda{bottom:313.352053pt;}
.y101{bottom:314.232053pt;}
.y14d{bottom:314.392053pt;}
.y96{bottom:316.392053pt;}
.yb6{bottom:317.032053pt;}
.y135{bottom:317.992053pt;}
.ya1{bottom:318.152053pt;}
.y1bf{bottom:319.352053pt;}
.y45{bottom:319.672053pt;}
.y1e4{bottom:320.072053pt;}
.y183{bottom:321.512053pt;}
.y5e{bottom:321.752053pt;}
.yff{bottom:322.232053pt;}
.y204{bottom:325.272053pt;}
.yf8{bottom:326.072187pt;}
.y106{bottom:328.552053pt;}
.yd9{bottom:330.472053pt;}
.y1b{bottom:332.472053pt;}
.y14c{bottom:333.112053pt;}
.y182{bottom:335.352053pt;}
.y134{bottom:336.632053pt;}
.y95{bottom:338.312053pt;}
.y1e3{bottom:338.712053pt;}
.yb5{bottom:338.952053pt;}
.y44{bottom:341.512053pt;}
.y203{bottom:341.912053pt;}
.y5d{bottom:343.672053pt;}
.yd4{bottom:345.272053pt;}
.y1be{bottom:346.952053pt;}
.y105{bottom:347.192053pt;}
.yf7{bottom:347.912053pt;}
.y181{bottom:349.112053pt;}
.y7d{bottom:350.072187pt;}
.y100{bottom:350.632053pt;}
.y14b{bottom:351.752053pt;}
.y1a{bottom:354.392053pt;}
.y133{bottom:355.272053pt;}
.y1e2{bottom:357.432053pt;}
.yfe{bottom:358.632053pt;}
.y94{bottom:360.152053pt;}
.y1bd{bottom:360.712053pt;}
.yb4{bottom:360.792053pt;}
.y180{bottom:362.952053pt;}
.yd8{bottom:363.032187pt;}
.y43{bottom:363.432053pt;}
.y5c{bottom:365.512053pt;}
.y104{bottom:365.912053pt;}
.yf6{bottom:369.832053pt;}
.y14a{bottom:370.392053pt;}
.y7c{bottom:371.912053pt;}
.y132{bottom:373.992187pt;}
.y1bc{bottom:374.552053pt;}
.y1e1{bottom:376.072187pt;}
.y19{bottom:376.232053pt;}
.y17f{bottom:376.712053pt;}
.y202{bottom:379.272053pt;}
.y93{bottom:382.072187pt;}
.y42{bottom:385.272053pt;}
.y5b{bottom:387.432053pt;}
.y1bb{bottom:388.312053pt;}
.y149{bottom:389.112053pt;}
.y17e{bottom:390.552053pt;}
.y131{bottom:392.632053pt;}
.y7b{bottom:393.832053pt;}
.y1e0{bottom:394.712053pt;}
.y201{bottom:397.912053pt;}
.y18{bottom:398.152053pt;}
.y103{bottom:398.552053pt;}
.yb3{bottom:401.352053pt;}
.y1ba{bottom:402.152053pt;}
.y92{bottom:403.912053pt;}
.y17d{bottom:404.312053pt;}
.y41{bottom:407.192053pt;}
.y148{bottom:407.752053pt;}
.y5a{bottom:409.272053pt;}
.yf5{bottom:410.392053pt;}
.y130{bottom:411.272053pt;}
.y1df{bottom:413.432053pt;}
.y7a{bottom:415.752053pt;}
.y1b9{bottom:415.912053pt;}
.y17c{bottom:418.152053pt;}
.y17{bottom:420.072187pt;}
.y91{bottom:425.832053pt;}
.y147{bottom:426.392053pt;}
.y40{bottom:429.032187pt;}
.y1b8{bottom:429.752053pt;}
.y12f{bottom:429.992053pt;}
.y59{bottom:431.192053pt;}
.y17b{bottom:431.912053pt;}
.yf4{bottom:432.232053pt;}
.y200{bottom:435.272053pt;}
.y79{bottom:437.592053pt;}
.yb2{bottom:441.832053pt;}
.y16{bottom:441.912053pt;}
.y1b7{bottom:443.512053pt;}
.y146{bottom:445.112053pt;}
.y17a{bottom:445.752053pt;}
.y90{bottom:447.752053pt;}
.y12e{bottom:448.632053pt;}
.y1de{bottom:450.712053pt;}
.y3f{bottom:450.952053pt;}
.y58{bottom:453.032187pt;}
.y1ff{bottom:453.912053pt;}
.yf3{bottom:454.152053pt;}
.y1b6{bottom:457.352053pt;}
.y78{bottom:459.512053pt;}
.y145{bottom:463.752053pt;}
.y15{bottom:463.832053pt;}
.yd3{bottom:466.952053pt;}
.y12d{bottom:467.272053pt;}
.y8f{bottom:469.592053pt;}
.y1b5{bottom:471.112053pt;}
.y3e{bottom:472.792053pt;}
.y179{bottom:473.272053pt;}
.y57{bottom:474.952053pt;}
.yf2{bottom:476.072187pt;}
.y77{bottom:481.352053pt;}
.y144{bottom:482.392053pt;}
.yb1{bottom:482.472053pt;}
.y1b4{bottom:484.952053pt;}
.y14{bottom:485.672053pt;}
.y12c{bottom:485.992053pt;}
.y178{bottom:487.112053pt;}
.y1dd{bottom:488.072187pt;}
.y1fe{bottom:491.272053pt;}
.y8e{bottom:491.512053pt;}
.y3d{bottom:494.712053pt;}
.y56{bottom:496.792053pt;}
.yf1{bottom:497.912053pt;}
.y1b3{bottom:498.712053pt;}
.y177{bottom:500.872053pt;}
.y143{bottom:501.112053pt;}
.y76{bottom:503.272053pt;}
.yb0{bottom:504.392053pt;}
.y12b{bottom:504.632053pt;}
.yd2{bottom:506.552053pt;}
.y1dc{bottom:506.712053pt;}
.y13{bottom:507.592053pt;}
.y1fd{bottom:509.912053pt;}
.y1b2{bottom:512.552053pt;}
.y8d{bottom:513.352053pt;}
.y176{bottom:514.712053pt;}
.y142{bottom:515.112053pt;}
.y3c{bottom:516.552053pt;}
.y55{bottom:518.712053pt;}
.yf0{bottom:519.832053pt;}
.y12a{bottom:523.272053pt;}
.y75{bottom:525.112053pt;}
.y1db{bottom:525.432053pt;}
.yaf{bottom:526.232053pt;}
.y1b1{bottom:526.312053pt;}
.y175{bottom:528.472053pt;}
.y1fc{bottom:528.632053pt;}
.y12{bottom:529.432053pt;}
.y8c{bottom:535.272053pt;}
.y3b{bottom:538.472053pt;}
.yd1{bottom:539.112053pt;}
.y1b0{bottom:540.152053pt;}
.y54{bottom:540.552053pt;}
.yef{bottom:541.672053pt;}
.y129{bottom:541.992053pt;}
.y174{bottom:542.312053pt;}
.y1da{bottom:544.072053pt;}
.yae{bottom:548.152053pt;}
.y11{bottom:551.352053pt;}
.y1af{bottom:553.912053pt;}
.y173{bottom:556.072053pt;}
.y8b{bottom:557.112053pt;}
.y74{bottom:560.392053pt;}
.y128{bottom:560.632053pt;}
.y53{bottom:562.472053pt;}
.y1d9{bottom:562.712053pt;}
.yee{bottom:563.592053pt;}
.y1fb{bottom:565.912053pt;}
.y1ae{bottom:567.752053pt;}
.y172{bottom:569.912053pt;}
.y10{bottom:573.192053pt;}
.y3a{bottom:579.032053pt;}
.y127{bottom:579.272053pt;}
.y1d8{bottom:581.432053pt;}
.y1ad{bottom:581.512053pt;}
.y73{bottom:582.232053pt;}
.y171{bottom:583.672053pt;}
.y52{bottom:584.392053pt;}
.y1fa{bottom:584.632053pt;}
.yed{bottom:585.432053pt;}
.yad{bottom:588.712053pt;}
.yf{bottom:595.112053pt;}
.y1ac{bottom:595.352053pt;}
.y170{bottom:597.512053pt;}
.y126{bottom:597.992053pt;}
.y1d7{bottom:600.072053pt;}
.y39{bottom:600.872053pt;}
.y1f9{bottom:603.272053pt;}
.y72{bottom:604.152053pt;}
.y51{bottom:606.232053pt;}
.yec{bottom:607.352053pt;}
.y1ab{bottom:609.112053pt;}
.y16f{bottom:611.272053pt;}
.y125{bottom:616.632053pt;}
.ye{bottom:617.032053pt;}
.y38{bottom:622.792053pt;}
.y1aa{bottom:622.952053pt;}
.y16e{bottom:625.112053pt;}
.y71{bottom:625.992053pt;}
.y50{bottom:628.152053pt;}
.yac{bottom:629.192053pt;}
.y124{bottom:635.272053pt;}
.y1a9{bottom:636.712053pt;}
.y1d6{bottom:637.432053pt;}
.y16d{bottom:638.872053pt;}
.y1f8{bottom:640.632053pt;}
.y37{bottom:644.712053pt;}
.y70{bottom:647.912053pt;}
.y4f{bottom:649.992053pt;}
.y1a8{bottom:650.552053pt;}
.yeb{bottom:651.112053pt;}
.y16c{bottom:652.712053pt;}
.yd{bottom:657.512053pt;}
.y1f7{bottom:659.272053pt;}
.y1a7{bottom:664.312053pt;}
.y16b{bottom:666.472053pt;}
.y8a{bottom:666.552053pt;}
.y6f{bottom:669.752187pt;}
.y4e{bottom:671.912187pt;}
.y123{bottom:672.632053pt;}
.yea{bottom:673.032053pt;}
.y1d5{bottom:674.712053pt;}
.y1f6{bottom:677.912187pt;}
.y1a6{bottom:678.152053pt;}
.y16a{bottom:680.312053pt;}
.y36{bottom:685.192053pt;}
.y89{bottom:688.472053pt;}
.y122{bottom:691.352053pt;}
.y6e{bottom:691.672187pt;}
.y1a5{bottom:691.912187pt;}
.y1d4{bottom:693.432053pt;}
.y4d{bottom:693.752187pt;}
.y169{bottom:694.072187pt;}
.ye9{bottom:694.872053pt;}
.yc{bottom:698.072187pt;}
.y1a4{bottom:705.672187pt;}
.y35{bottom:707.112053pt;}
.y168{bottom:707.912187pt;}
.yc3{bottom:710.312053pt;}
.y1d3{bottom:712.072187pt;}
.y6d{bottom:713.512053pt;}
.y1f5{bottom:715.272053pt;}
.y4c{bottom:715.672187pt;}
.ye8{bottom:716.792053pt;}
.y1a3{bottom:719.512053pt;}
.y167{bottom:721.672053pt;}
.y121{bottom:728.632053pt;}
.y34{bottom:729.032053pt;}
.y1d2{bottom:730.712053pt;}
.yc2{bottom:732.232053pt;}
.y1a2{bottom:733.272053pt;}
.y6c{bottom:735.432053pt;}
.y166{bottom:735.512053pt;}
.y4b{bottom:737.512053pt;}
.yb{bottom:738.632053pt;}
.y1a1{bottom:747.112053pt;}
.y120{bottom:747.272053pt;}
.y165{bottom:749.272053pt;}
.y1d1{bottom:749.432053pt;}
.y33{bottom:750.872053pt;}
.y1f4{bottom:752.632053pt;}
.ya0{bottom:754.072187pt;}
.y6b{bottom:757.352053pt;}
.y4a{bottom:759.432053pt;}
.ya{bottom:760.552053pt;}
.y1a0{bottom:760.872053pt;}
.y164{bottom:763.112053pt;}
.y11f{bottom:765.992187pt;}
.y1f3{bottom:771.272053pt;}
.y32{bottom:772.792053pt;}
.y19f{bottom:774.712053pt;}
.y9f{bottom:775.992187pt;}
.y163{bottom:776.872053pt;}
.yab{bottom:779.192053pt;}
.y9{bottom:782.392053pt;}
.y1d0{bottom:786.712053pt;}
.y19e{bottom:788.472053pt;}
.y1f2{bottom:789.912187pt;}
.y162{bottom:790.712053pt;}
.y31{bottom:794.632053pt;}
.y6a{bottom:797.832187pt;}
.ye7{bottom:801.112053pt;}
.y19d{bottom:802.312053pt;}
.y11e{bottom:803.272053pt;}
.y8{bottom:804.312053pt;}
.y161{bottom:804.472053pt;}
.y19c{bottom:816.072187pt;}
.y30{bottom:816.552053pt;}
.y160{bottom:818.312053pt;}
.y69{bottom:819.752187pt;}
.y11d{bottom:821.992187pt;}
.ye6{bottom:822.952053pt;}
.y1cf{bottom:824.072187pt;}
.y7{bottom:826.152053pt;}
.y1f1{bottom:827.272053pt;}
.y19b{bottom:829.912187pt;}
.y210{bottom:829.992187pt;}
.y15f{bottom:832.072187pt;}
.y2f{bottom:838.392053pt;}
.y11c{bottom:840.632053pt;}
.y68{bottom:841.672053pt;}
.y19a{bottom:843.672053pt;}
.y15e{bottom:845.912187pt;}
.y6{bottom:848.072187pt;}
.y15d{bottom:859.672053pt;}
.y199{bottom:859.752187pt;}
.y2e{bottom:860.312053pt;}
.y1ce{bottom:861.432053pt;}
.y67{bottom:863.512053pt;}
.y1f0{bottom:864.632053pt;}
.y20f{bottom:865.192053pt;}
.y15c{bottom:875.752053pt;}
.y11b{bottom:877.992187pt;}
.y1cd{bottom:880.072187pt;}
.y2d{bottom:882.152053pt;}
.y1ef{bottom:883.272053pt;}
.y66{bottom:885.352053pt;}
.yc1{bottom:885.432053pt;}
.y5{bottom:888.552053pt;}
.y11a{bottom:896.632053pt;}
.yd0{bottom:897.992187pt;}
.y1cc{bottom:898.712053pt;}
.y20e{bottom:900.392053pt;}
.y198{bottom:901.432053pt;}
.y1ee{bottom:901.912187pt;}
.y2c{bottom:904.072187pt;}
.yc0{bottom:907.272053pt;}
.y119{bottom:915.352053pt;}
.y15b{bottom:916.872053pt;}
.y1cb{bottom:917.432053pt;}
.y197{bottom:920.152053pt;}
.y1ed{bottom:920.632053pt;}
.y2b{bottom:925.992187pt;}
.y4{bottom:929.192053pt;}
.y20d{bottom:935.592053pt;}
.y1ca{bottom:936.072187pt;}
.ycf{bottom:937.592053pt;}
.y2a{bottom:947.832187pt;}
.y118{bottom:950.872053pt;}
.y3{bottom:951.032053pt;}
.y1c9{bottom:954.712053pt;}
.yce{bottom:954.872053pt;}
.y196{bottom:956.072187pt;}
.y15a{bottom:957.912187pt;}
.y211{bottom:958.872053pt;}
.y117{bottom:966.232053pt;}
.y29{bottom:969.752053pt;}
.y195{bottom:969.832187pt;}
.y159{bottom:976.632053pt;}
.y116{bottom:981.592053pt;}
.y194{bottom:983.672053pt;}
.y1c8{bottom:991.512053pt;}
.y2{bottom:991.592053pt;}
.y158{bottom:995.272053pt;}
.y115{bottom:996.872053pt;}
.y193{bottom:997.432053pt;}
.h5{height:32.780625pt;}
.hb{height:32.780678pt;}
.ha{height:33.351563pt;}
.h9{height:36.909063pt;}
.h6{height:46.220625pt;}
.h7{height:50.954063pt;}
.h3{height:52.497813pt;}
.h4{height:55.687500pt;}
.hc{height:57.406250pt;}
.h2{height:64.875938pt;}
.h8{height:66.878281pt;}
.h1{height:1084.872133pt;}
.h0{height:1122.666667pt;}
.w3{width:244.818667pt;}
.w2{width:254.560000pt;}
.w4{width:287.280000pt;}
.w1{width:755.538800pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xe{left:6.879867pt;}
.x1{left:18.897333pt;}
.x2{left:94.559893pt;}
.x17{left:106.577333pt;}
.xa{left:141.759733pt;}
.x5{left:169.343067pt;}
.x11{left:181.697600pt;}
.x16{left:187.224933pt;}
.x13{left:188.889067pt;}
.x15{left:190.564800pt;}
.x14{left:192.885067pt;}
.x12{left:209.560933pt;}
.x19{left:213.768800pt;}
.x3{left:236.159867pt;}
.xf{left:274.417333pt;}
.x8{left:285.599600pt;}
.x6{left:288.662133pt;}
.x9{left:318.712933pt;}
.x4{left:328.775333pt;}
.x18{left:394.497333pt;}
.x10{left:529.617333pt;}
.xc{left:547.937467pt;}
.xb{left:590.559867pt;}
.x7{left:636.064400pt;}
.xd{left:661.093067pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  