
    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_a04be6c240071dd5c8836c25.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.897000;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_f73de1da8ca387f07ffd4ce9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_a34d64ceb4db5d32ae865381.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.431000;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_0dce4858956cb23c802ebace.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.922000;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_7bc5089774a05a1baf354e2d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.364258;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_548aa9e455678c249f5ea454.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758000;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_f48247bc80b80b69951947fd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.899000;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_eedfccb4026a9e75eaea1cb4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_d2e7d3953eecdea514a0334a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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('chunks/assets/font_7bbdba0c09023e22c37a1ca6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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('chunks/assets/font_a8e8edd66ecf5c7794a083fb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.806000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f7625d15ff22c84a056ba90e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b602f9403e61352970fae46a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.890000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-22.854000px;}
.v3{vertical-align:-16.878000px;}
.v7{vertical-align:-5.072358px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.092632px;}
.v8{vertical-align:4.367232px;}
.v6{vertical-align:13.647600px;}
.v5{vertical-align:16.172406px;}
.v1{vertical-align:22.854000px;}
.v9{vertical-align:36.486000px;}
.va{vertical-align:71.280000px;}
.vb{vertical-align:94.134000px;}
.ls5e{letter-spacing:-0.019334px;}
.ls40{letter-spacing:0.000000px;}
.ls54{letter-spacing:0.003630px;}
.ls5d{letter-spacing:0.020244px;}
.ls50{letter-spacing:1.933037px;}
.ls0{letter-spacing:2.985000px;}
.ls51{letter-spacing:2.987065px;}
.ls1{letter-spacing:2.991000px;}
.lsd{letter-spacing:10.621380px;}
.lsc{letter-spacing:10.626120px;}
.lse{letter-spacing:10.627355px;}
.lsf{letter-spacing:10.632455px;}
.ls24{letter-spacing:11.208999px;}
.ls25{letter-spacing:11.227380px;}
.ls37{letter-spacing:11.458500px;}
.ls36{letter-spacing:11.503380px;}
.ls35{letter-spacing:11.511690px;}
.ls38{letter-spacing:11.514030px;}
.ls42{letter-spacing:11.955000px;}
.ls41{letter-spacing:11.966293px;}
.ls30{letter-spacing:12.277380px;}
.ls31{letter-spacing:12.283712px;}
.ls46{letter-spacing:12.285630px;}
.ls47{letter-spacing:12.289242px;}
.ls2d{letter-spacing:12.292454px;}
.ls2e{letter-spacing:12.337380px;}
.ls2f{letter-spacing:12.341891px;}
.ls16{letter-spacing:12.559380px;}
.ls15{letter-spacing:12.560195px;}
.ls18{letter-spacing:12.560754px;}
.ls17{letter-spacing:12.567399px;}
.ls2{letter-spacing:12.663000px;}
.lsa{letter-spacing:13.168380px;}
.lsb{letter-spacing:13.177975px;}
.ls11{letter-spacing:13.642931px;}
.ls12{letter-spacing:13.663380px;}
.ls13{letter-spacing:13.667405px;}
.ls4f{letter-spacing:13.822500px;}
.ls14{letter-spacing:13.842175px;}
.ls10{letter-spacing:14.611336px;}
.ls59{letter-spacing:15.287065px;}
.ls49{letter-spacing:15.357478px;}
.ls5b{letter-spacing:15.466101px;}
.ls5c{letter-spacing:15.483000px;}
.ls1a{letter-spacing:15.541380px;}
.ls1b{letter-spacing:15.548324px;}
.ls19{letter-spacing:15.560354px;}
.ls4{letter-spacing:16.034100px;}
.ls5{letter-spacing:16.109130px;}
.ls26{letter-spacing:17.201760px;}
.ls28{letter-spacing:17.206470px;}
.ls2a{letter-spacing:17.207564px;}
.ls27{letter-spacing:17.257380px;}
.ls29{letter-spacing:17.260380px;}
.ls2b{letter-spacing:17.260620px;}
.ls48{letter-spacing:17.293037px;}
.ls4b{letter-spacing:17.799630px;}
.ls5a{letter-spacing:17.973000px;}
.ls44{letter-spacing:18.104256px;}
.ls39{letter-spacing:18.123504px;}
.ls4d{letter-spacing:18.357630px;}
.ls5f{letter-spacing:18.909180px;}
.ls53{letter-spacing:19.455478px;}
.ls4c{letter-spacing:19.729037px;}
.ls2c{letter-spacing:19.810645px;}
.ls45{letter-spacing:20.125560px;}
.ls4e{letter-spacing:20.287037px;}
.ls3e{letter-spacing:20.461380px;}
.ls3f{letter-spacing:20.490464px;}
.ls8{letter-spacing:20.851380px;}
.ls6{letter-spacing:20.862371px;}
.ls7{letter-spacing:20.905500px;}
.ls9{letter-spacing:20.918781px;}
.ls22{letter-spacing:21.130620px;}
.ls23{letter-spacing:21.141595px;}
.ls21{letter-spacing:21.146691px;}
.ls43{letter-spacing:21.503218px;}
.ls57{letter-spacing:21.669630px;}
.ls3{letter-spacing:21.879000px;}
.ls33{letter-spacing:23.227380px;}
.ls32{letter-spacing:23.293336px;}
.ls34{letter-spacing:23.293666px;}
.ls56{letter-spacing:23.596580px;}
.ls58{letter-spacing:23.599037px;}
.ls1f{letter-spacing:24.903935px;}
.ls3d{letter-spacing:25.613136px;}
.ls3b{letter-spacing:25.615655px;}
.ls3a{letter-spacing:25.660620px;}
.ls3c{letter-spacing:25.663380px;}
.ls1e{letter-spacing:25.937721px;}
.ls1c{letter-spacing:25.939341px;}
.ls1d{letter-spacing:25.939380px;}
.ls20{letter-spacing:29.886000px;}
.ls55{letter-spacing:35.486236px;}
.ls52{letter-spacing:48.418580px;}
.ls4a{letter-spacing:533.486236px;}
.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;}
}
.ws34{word-spacing:-13.822500px;}
.ws6a{word-spacing:-7.588066px;}
.ws6c{word-spacing:-6.313271px;}
.ws69{word-spacing:-6.298094px;}
.ws6f{word-spacing:-5.084004px;}
.ws94{word-spacing:-3.317566px;}
.ws21{word-spacing:-3.262331px;}
.ws7f{word-spacing:-3.206820px;}
.ws55{word-spacing:-3.151364px;}
.wsf9{word-spacing:-2.930370px;}
.wse3{word-spacing:-2.709210px;}
.wscc{word-spacing:-2.683350px;}
.ws3f{word-spacing:-2.653975px;}
.wscd{word-spacing:-2.653920px;}
.ws3e{word-spacing:-2.598796px;}
.ws49{word-spacing:-2.322180px;}
.wsc1{word-spacing:-2.267001px;}
.wsde{word-spacing:-2.156310px;}
.wsf5{word-spacing:-2.100799px;}
.ws74{word-spacing:-1.990385px;}
.wseb{word-spacing:-1.935205px;}
.ws6{word-spacing:-1.824791px;}
.ws90{word-spacing:-1.824570px;}
.wse9{word-spacing:-1.769612px;}
.ws107{word-spacing:-1.658700px;}
.wsa2{word-spacing:-1.658645px;}
.ws5f{word-spacing:-1.603410px;}
.ws46{word-spacing:-1.548231px;}
.ws86{word-spacing:-1.548120px;}
.ws62{word-spacing:-1.493051px;}
.wsb4{word-spacing:-1.492443px;}
.ws108{word-spacing:-1.327458px;}
.ws64{word-spacing:-1.326960px;}
.ws8d{word-spacing:-1.326849px;}
.ws2c{word-spacing:-1.271615px;}
.wsce{word-spacing:-1.216435px;}
.ws5c{word-spacing:-1.216380px;}
.wsae{word-spacing:-1.161256px;}
.wsd1{word-spacing:-1.106021px;}
.wsa8{word-spacing:-0.939875px;}
.ws82{word-spacing:-0.884640px;}
.ws1b{word-spacing:-0.719046px;}
.wse8{word-spacing:-0.696000px;}
.ws1c{word-spacing:-0.663259px;}
.wscf{word-spacing:-0.608190px;}
.ws4c{word-spacing:-0.608079px;}
.ws4b{word-spacing:-0.601830px;}
.wsb1{word-spacing:-0.552900px;}
.wsda{word-spacing:-0.552845px;}
.wsb0{word-spacing:-0.527220px;}
.wse7{word-spacing:-0.497665px;}
.ws92{word-spacing:-0.442486px;}
.ws91{word-spacing:-0.442265px;}
.wsc8{word-spacing:-0.387251px;}
.wsd2{word-spacing:-0.276284px;}
.wse2{word-spacing:-0.221160px;}
.ws2a{word-spacing:-0.221105px;}
.ws29{word-spacing:-0.165870px;}
.ws4e{word-spacing:-0.110691px;}
.ws4{word-spacing:-0.055290px;}
.ws87{word-spacing:-0.053796px;}
.ws36{word-spacing:-0.047820px;}
.ws58{word-spacing:-0.047533px;}
.ws2{word-spacing:-0.000276px;}
.ws59{word-spacing:-0.000143px;}
.ws1{word-spacing:0.000000px;}
.wse{word-spacing:0.000332px;}
.ws5a{word-spacing:0.004740px;}
.wsf6{word-spacing:0.005654px;}
.wsfa{word-spacing:0.007050px;}
.wsca{word-spacing:0.007481px;}
.wsb3{word-spacing:0.009150px;}
.wsee{word-spacing:0.009944px;}
.ws8{word-spacing:0.055290px;}
.ws66{word-spacing:0.110691px;}
.ws65{word-spacing:0.165870px;}
.ws9e{word-spacing:0.165925px;}
.wsd{word-spacing:0.387030px;}
.ws2b{word-spacing:0.442486px;}
.wsef{word-spacing:0.497665px;}
.ws105{word-spacing:0.552900px;}
.wsbf{word-spacing:0.608079px;}
.ws25{word-spacing:0.773673px;}
.ws26{word-spacing:0.774281px;}
.wsbe{word-spacing:0.829461px;}
.ws45{word-spacing:0.995054px;}
.ws98{word-spacing:0.995275px;}
.ws99{word-spacing:0.995662px;}
.ws80{word-spacing:1.050289px;}
.ws75{word-spacing:1.050510px;}
.ws96{word-spacing:1.105468px;}
.wsc{word-spacing:1.271670px;}
.wsa5{word-spacing:1.326849px;}
.wsd8{word-spacing:1.382029px;}
.wsd9{word-spacing:1.382250px;}
.wsf0{word-spacing:1.437264px;}
.wsa7{word-spacing:1.493051px;}
.ws40{word-spacing:1.548231px;}
.wsaf{word-spacing:1.603355px;}
.ws8a{word-spacing:1.658645px;}
.ws32{word-spacing:1.713824px;}
.ws5d{word-spacing:1.769280px;}
.ws8e{word-spacing:1.824570px;}
.ws2d{word-spacing:1.824846px;}
.wsc9{word-spacing:1.879418px;}
.ws8f{word-spacing:1.880026px;}
.ws7e{word-spacing:1.935150px;}
.wsea{word-spacing:1.935205px;}
.wsf1{word-spacing:1.990440px;}
.wsc4{word-spacing:2.045619px;}
.ws57{word-spacing:2.100799px;}
.ws16{word-spacing:2.211600px;}
.ws17{word-spacing:2.211821px;}
.wsc7{word-spacing:2.267001px;}
.wsa9{word-spacing:2.377470px;}
.ws9{word-spacing:2.432594px;}
.ws44{word-spacing:2.487829px;}
.ws4a{word-spacing:2.543616px;}
.ws85{word-spacing:2.598630px;}
.wse4{word-spacing:2.598796px;}
.wsec{word-spacing:2.653975px;}
.wscb{word-spacing:2.709210px;}
.ws20{word-spacing:2.764389px;}
.ws103{word-spacing:2.874804px;}
.ws102{word-spacing:2.875080px;}
.ws88{word-spacing:2.930591px;}
.wse0{word-spacing:3.023520px;}
.wse1{word-spacing:3.040895px;}
.wsbd{word-spacing:3.041005px;}
.ws79{word-spacing:3.096185px;}
.wsf4{word-spacing:3.206599px;}
.ws37{word-spacing:3.206820px;}
.ws8b{word-spacing:3.227760px;}
.ws76{word-spacing:3.317400px;}
.wsa4{word-spacing:3.372690px;}
.ws42{word-spacing:3.427980px;}
.wsd6{word-spacing:3.483159px;}
.ws93{word-spacing:3.594182px;}
.ws7{word-spacing:3.649361px;}
.wsa{word-spacing:3.704541px;}
.ws5e{word-spacing:3.759665px;}
.ws9b{word-spacing:3.814955px;}
.ws28{word-spacing:3.870134px;}
.ws60{word-spacing:3.925590px;}
.ws1d{word-spacing:3.925922px;}
.ws70{word-spacing:3.980880px;}
.ws78{word-spacing:4.036170px;}
.ws9c{word-spacing:4.036336px;}
.ws77{word-spacing:4.091515px;}
.ws89{word-spacing:4.146750px;}
.ws9a{word-spacing:4.201929px;}
.ws4f{word-spacing:4.257109px;}
.ws2e{word-spacing:4.312344px;}
.ws14{word-spacing:4.423200px;}
.ws15{word-spacing:4.423311px;}
.wsf2{word-spacing:4.478545px;}
.ws71{word-spacing:4.533725px;}
.ws73{word-spacing:4.533780px;}
.ws72{word-spacing:4.534740px;}
.ws81{word-spacing:4.588904px;}
.wsb{word-spacing:4.699926px;}
.wsa3{word-spacing:4.810230px;}
.ws5{word-spacing:4.865520px;}
.wsbb{word-spacing:4.920699px;}
.ws63{word-spacing:4.920810px;}
.wsba{word-spacing:4.975879px;}
.ws11{word-spacing:5.031390px;}
.ws4d{word-spacing:5.086293px;}
.ws12{word-spacing:5.086680px;}
.wsf7{word-spacing:5.086901px;}
.ws8c{word-spacing:5.141970px;}
.ws56{word-spacing:5.197315px;}
.ws43{word-spacing:5.252495px;}
.wsdf{word-spacing:5.252550px;}
.ws41{word-spacing:5.362909px;}
.wsa6{word-spacing:5.418088px;}
.ws100{word-spacing:5.418696px;}
.wsac{word-spacing:5.473710px;}
.ws31{word-spacing:5.529055px;}
.ws3b{word-spacing:5.584290px;}
.ws23{word-spacing:5.694649px;}
.wsa1{word-spacing:5.750160px;}
.wsf3{word-spacing:5.750492px;}
.wsa0{word-spacing:5.805063px;}
.ws9f{word-spacing:5.805450px;}
.wsc6{word-spacing:5.805671px;}
.wsf8{word-spacing:5.860740px;}
.ws27{word-spacing:5.971265px;}
.ws18{word-spacing:6.026444px;}
.ws1e{word-spacing:6.192646px;}
.ws61{word-spacing:6.247770px;}
.ws30{word-spacing:6.247825px;}
.ws97{word-spacing:6.303060px;}
.wsc2{word-spacing:6.358239px;}
.wse6{word-spacing:6.413419px;}
.wsb2{word-spacing:6.413640px;}
.ws9d{word-spacing:6.468930px;}
.ws5b{word-spacing:6.524165px;}
.wsd0{word-spacing:6.579621px;}
.ws54{word-spacing:6.634800px;}
.wsc3{word-spacing:6.690035px;}
.ws95{word-spacing:6.745214px;}
.wsd4{word-spacing:6.966540px;}
.ws1a{word-spacing:7.021830px;}
.ws19{word-spacing:7.077009px;}
.ws39{word-spacing:7.242935px;}
.ws3a{word-spacing:7.243211px;}
.ws3d{word-spacing:7.519772px;}
.ws35{word-spacing:7.575006px;}
.ws10{word-spacing:7.795890px;}
.ws7b{word-spacing:7.849650px;}
.ws83{word-spacing:7.850959px;}
.ws7c{word-spacing:7.851180px;}
.ws7d{word-spacing:7.852740px;}
.wsfe{word-spacing:8.016552px;}
.ws1f{word-spacing:8.182754px;}
.wsc5{word-spacing:8.404135px;}
.ws109{word-spacing:8.556000px;}
.ws10a{word-spacing:8.569729px;}
.ws38{word-spacing:8.625240px;}
.ws3c{word-spacing:8.846345px;}
.ws106{word-spacing:9.067726px;}
.ws22{word-spacing:9.178140px;}
.ws13{word-spacing:9.233319px;}
.ws47{word-spacing:9.398913px;}
.ws48{word-spacing:9.399521px;}
.wsb5{word-spacing:9.509880px;}
.wsed{word-spacing:9.731316px;}
.wsad{word-spacing:9.841620px;}
.wsfc{word-spacing:9.841675px;}
.wsd3{word-spacing:9.952089px;}
.wse5{word-spacing:10.560445px;}
.wsb6{word-spacing:11.002655px;}
.ws101{word-spacing:11.113014px;}
.wsdc{word-spacing:11.168856px;}
.wsdb{word-spacing:11.219970px;}
.wsff{word-spacing:11.223428px;}
.wsdd{word-spacing:11.224036px;}
.wsbc{word-spacing:11.555831px;}
.ws51{word-spacing:11.611011px;}
.ws52{word-spacing:11.776604px;}
.ws53{word-spacing:11.777212px;}
.ws2f{word-spacing:11.831784px;}
.wsc0{word-spacing:11.942806px;}
.ws33{word-spacing:12.108399px;}
.wsb9{word-spacing:12.273993px;}
.ws24{word-spacing:12.274601px;}
.wsb8{word-spacing:12.288240px;}
.wsb7{word-spacing:12.329781px;}
.wsaa{word-spacing:12.495540px;}
.wsfd{word-spacing:12.827169px;}
.ws3{word-spacing:13.767210px;}
.ws84{word-spacing:13.767542px;}
.wsfb{word-spacing:15.757429px;}
.ws50{word-spacing:16.200246px;}
.ws104{word-spacing:16.918740px;}
.wsd7{word-spacing:17.305991px;}
.ws0{word-spacing:17.860770px;}
.wsab{word-spacing:18.798711px;}
.wsd5{word-spacing:26.649393px;}
.ws6b{word-spacing:45.088896px;}
.wsf{word-spacing:46.941210px;}
.ws6d{word-spacing:82.864451px;}
.ws6e{word-spacing:133.451555px;}
.ws68{word-spacing:215.491601px;}
.ws67{word-spacing:348.613839px;}
.ws7a{word-spacing:416.884388px;}
._1{margin-left:-9.683550px;}
._2{margin-left:-7.172641px;}
._1e{margin-left:-6.137135px;}
._4{margin-left:-5.086680px;}
._0{margin-left:-3.945150px;}
._7{margin-left:-2.339382px;}
._3{margin-left:-1.291212px;}
._19{width:1.033442px;}
._12{width:2.917068px;}
._14{width:4.064431px;}
._1f{width:10.525213px;}
._17{width:13.656170px;}
._9{width:14.890267px;}
._5{width:16.460895px;}
._d{width:18.135175px;}
._b{width:19.626623px;}
._c{width:21.635647px;}
._13{width:23.294015px;}
._a{width:24.383332px;}
._e{width:25.395201px;}
._6{width:27.478909px;}
._8{width:28.748018px;}
._10{width:29.873968px;}
._1b{width:31.220709px;}
._16{width:32.915305px;}
._f{width:34.466446px;}
._15{width:35.828141px;}
._11{width:39.990102px;}
._20{width:41.799019px;}
._1c{width:46.996500px;}
._1d{width:55.290000px;}
._1a{width:176.472566px;}
._18{width:272.307742px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:18.287784px;}
.fs7{font-size:22.655016px;}
.fs9{font-size:22.709606px;}
.fs8{font-size:27.295200px;}
.fs3{font-size:35.868000px;}
.fs2{font-size:38.706000px;}
.fs4{font-size:47.820000px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:53.796000px;}
.fs1{font-size:55.290000px;}
.fs0{font-size:71.730000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:2.526000px;}
.y74{bottom:4.171616px;}
.y73{bottom:12.206641px;}
.y59{bottom:16.926000px;}
.y5b{bottom:35.760095px;}
.y8d{bottom:67.632956px;}
.y81{bottom:85.170122px;}
.y7c{bottom:91.897252px;}
.y83{bottom:92.238442px;}
.y8f{bottom:92.482961px;}
.y7b{bottom:94.501669px;}
.y90{bottom:94.791680px;}
.y80{bottom:95.076005px;}
.y82{bottom:97.913569px;}
.y8e{bottom:102.803959px;}
.y35{bottom:106.299000px;}
.yd5{bottom:110.518500px;}
.y8c{bottom:111.743137px;}
.y89{bottom:111.919418px;}
.y86{bottom:118.999111px;}
.y34{bottom:120.496500px;}
.y8b{bottom:121.950404px;}
.y57{bottom:122.472000px;}
.yb7{bottom:124.714500px;}
.y78{bottom:126.562156px;}
.y87{bottom:127.887110px;}
.y7d{bottom:128.063392px;}
.yd4{bottom:130.419000px;}
.y7e{bottom:131.691379px;}
.y77{bottom:132.254342px;}
.y56{bottom:138.645000px;}
.y33{bottom:138.912000px;}
.y88{bottom:139.567181px;}
.yb6{bottom:141.622500px;}
.yd3{bottom:146.592000px;}
.y8a{bottom:149.205799px;}
.y85{bottom:152.287882px;}
.y32{bottom:153.505500px;}
.y55{bottom:154.818000px;}
.yb5{bottom:157.795500px;}
.y7f{bottom:160.789199px;}
.y7a{bottom:161.539817px;}
.y84{bottom:161.829829px;}
.yd2{bottom:162.766500px;}
.y124{bottom:168.232500px;}
.y71{bottom:169.536000px;}
.y31{bottom:170.911500px;}
.y54{bottom:170.991000px;}
.yb4{bottom:173.968500px;}
.yd1{bottom:178.939500px;}
.y155{bottom:183.564000px;}
.y123{bottom:184.405500px;}
.y70{bottom:185.709000px;}
.y76{bottom:185.792740px;}
.y30{bottom:187.084500px;}
.y53{bottom:187.164000px;}
.y79{bottom:189.204640px;}
.yb3{bottom:190.141500px;}
.y75{bottom:192.616540px;}
.yd0{bottom:195.112500px;}
.y154{bottom:199.737000px;}
.y122{bottom:200.578500px;}
.y6f{bottom:201.882000px;}
.y181{bottom:202.132500px;}
.y2f{bottom:203.257500px;}
.y52{bottom:203.337000px;}
.yb2{bottom:206.314500px;}
.ycf{bottom:211.285500px;}
.y153{bottom:215.910000px;}
.y6e{bottom:218.055000px;}
.y180{bottom:218.305500px;}
.y2e{bottom:219.430500px;}
.y51{bottom:219.510000px;}
.yb1{bottom:222.487500px;}
.yda{bottom:223.665000px;}
.yce{bottom:227.458500px;}
.y121{bottom:230.167500px;}
.y152{bottom:232.083000px;}
.yf2{bottom:233.296500px;}
.y17f{bottom:234.478500px;}
.y2d{bottom:235.603500px;}
.y50{bottom:235.683000px;}
.yb0{bottom:238.660500px;}
.yd9{bottom:240.103500px;}
.ycd{bottom:243.631500px;}
.y120{bottom:246.340500px;}
.y151{bottom:248.256000px;}
.y17e{bottom:250.651500px;}
.y2c{bottom:251.776500px;}
.y4f{bottom:251.856000px;}
.y6d{bottom:252.546000px;}
.yaf{bottom:254.833500px;}
.ycc{bottom:259.804500px;}
.y11f{bottom:262.513500px;}
.y17d{bottom:266.824500px;}
.y2b{bottom:267.949500px;}
.y4e{bottom:268.029000px;}
.yf1{bottom:270.724500px;}
.ycb{bottom:275.977500px;}
.yd8{bottom:276.615000px;}
.y150{bottom:277.000500px;}
.y11e{bottom:278.686500px;}
.y2a{bottom:284.122500px;}
.yae{bottom:284.659500px;}
.yf0{bottom:286.897500px;}
.yca{bottom:292.150500px;}
.y14f{bottom:293.173500px;}
.y6c{bottom:295.624500px;}
.y4d{bottom:297.150000px;}
.y17c{bottom:297.964500px;}
.y29{bottom:300.295500px;}
.yef{bottom:303.070500px;}
.y11d{bottom:308.274000px;}
.y14e{bottom:309.348000px;}
.y6b{bottom:311.797500px;}
.y4c{bottom:313.323000px;}
.y17b{bottom:314.137500px;}
.yad{bottom:316.222500px;}
.y28{bottom:316.468500px;}
.yee{bottom:319.243500px;}
.yc9{bottom:322.216500px;}
.y11c{bottom:324.447000px;}
.y14d{bottom:325.521000px;}
.y6a{bottom:327.970500px;}
.y4b{bottom:329.496000px;}
.y17a{bottom:330.310500px;}
.y11b{bottom:340.620000px;}
.y27{bottom:343.891500px;}
.y69{bottom:344.143500px;}
.y4a{bottom:345.669000px;}
.yed{bottom:345.729000px;}
.y179{bottom:346.483500px;}
.yc8{bottom:350.964000px;}
.y14c{bottom:354.265500px;}
.yac{bottom:355.669500px;}
.y26{bottom:360.064500px;}
.y49{bottom:361.842000px;}
.yec{bottom:361.902000px;}
.y178{bottom:362.658000px;}
.yc7{bottom:367.137000px;}
.y11a{bottom:370.207500px;}
.y14b{bottom:370.438500px;}
.yab{bottom:371.842500px;}
.y68{bottom:375.034500px;}
.y25{bottom:376.237500px;}
.y48{bottom:378.015000px;}
.yeb{bottom:378.075000px;}
.y177{bottom:378.831000px;}
.yc6{bottom:383.310000px;}
.y119{bottom:386.380500px;}
.y14a{bottom:386.611500px;}
.yaa{bottom:388.015500px;}
.y67{bottom:391.207500px;}
.y24{bottom:392.410500px;}
.y47{bottom:394.188000px;}
.yea{bottom:394.248000px;}
.yc5{bottom:399.483000px;}
.y118{bottom:402.553500px;}
.y149{bottom:402.784500px;}
.ya9{bottom:404.188500px;}
.y66{bottom:407.380500px;}
.y23{bottom:408.583500px;}
.y176{bottom:409.971000px;}
.y46{bottom:410.361000px;}
.ye9{bottom:410.421000px;}
.yc4{bottom:415.656000px;}
.ya8{bottom:420.361500px;}
.y65{bottom:423.553500px;}
.y22{bottom:424.758000px;}
.y175{bottom:426.144000px;}
.y45{bottom:426.534000px;}
.ye8{bottom:426.594000px;}
.y148{bottom:431.530500px;}
.yc3{bottom:431.829000px;}
.y117{bottom:432.142500px;}
.ya7{bottom:436.534500px;}
.y64{bottom:439.726500px;}
.y21{bottom:440.931000px;}
.y174{bottom:442.317000px;}
.y44{bottom:442.707000px;}
.ye7{bottom:442.767000px;}
.y147{bottom:447.703500px;}
.yc2{bottom:448.002000px;}
.y116{bottom:448.315500px;}
.ya6{bottom:452.707500px;}
.y20{bottom:457.104000px;}
.y43{bottom:458.880000px;}
.ye6{bottom:458.940000px;}
.y146{bottom:463.876500px;}
.yc1{bottom:464.175000px;}
.y115{bottom:464.488500px;}
.ya5{bottom:468.880500px;}
.y1f{bottom:473.277000px;}
.y173{bottom:473.458500px;}
.y42{bottom:475.053000px;}
.ye5{bottom:475.113000px;}
.y63{bottom:477.139500px;}
.y145{bottom:480.049500px;}
.yc0{bottom:480.348000px;}
.y114{bottom:480.661500px;}
.y1e{bottom:489.450000px;}
.y172{bottom:489.631500px;}
.y41{bottom:491.227500px;}
.y144{bottom:496.222500px;}
.ybf{bottom:496.521000px;}
.y113{bottom:496.834500px;}
.ya4{bottom:496.968000px;}
.ye4{bottom:505.071000px;}
.y1d{bottom:505.623000px;}
.y171{bottom:505.804500px;}
.y62{bottom:506.361000px;}
.y40{bottom:507.400500px;}
.ybe{bottom:512.694000px;}
.ya3{bottom:513.141000px;}
.y1c{bottom:521.796000px;}
.y3f{bottom:523.573500px;}
.y143{bottom:524.968500px;}
.y112{bottom:526.422000px;}
.ybd{bottom:528.867000px;}
.ya2{bottom:529.314000px;}
.y61{bottom:535.581000px;}
.y170{bottom:536.946000px;}
.y1b{bottom:537.969000px;}
.y3e{bottom:539.746500px;}
.y142{bottom:541.141500px;}
.y111{bottom:542.595000px;}
.ye3{bottom:543.693000px;}
.ybc{bottom:545.040000px;}
.ya1{bottom:545.487000px;}
.yd7{bottom:546.831000px;}
.y16f{bottom:553.119000px;}
.y1a{bottom:554.142000px;}
.y141{bottom:557.314500px;}
.y110{bottom:558.768000px;}
.ye2{bottom:560.130000px;}
.y3d{bottom:568.866000px;}
.y16e{bottom:569.292000px;}
.y19{bottom:570.315000px;}
.y60{bottom:572.994000px;}
.y140{bottom:573.487500px;}
.ya0{bottom:573.576000px;}
.y10f{bottom:574.941000px;}
.ybb{bottom:575.106000px;}
.y3c{bottom:585.039000px;}
.y16d{bottom:585.465000px;}
.y18{bottom:586.488000px;}
.y5f{bottom:589.167000px;}
.y13f{bottom:589.660500px;}
.y9f{bottom:589.749000px;}
.y10e{bottom:591.114000px;}
.ye1{bottom:596.641500px;}
.y3b{bottom:601.212000px;}
.y17{bottom:602.661000px;}
.yba{bottom:606.109500px;}
.y16c{bottom:616.605000px;}
.y3a{bottom:617.385000px;}
.y13e{bottom:618.406500px;}
.y16{bottom:618.834000px;}
.y10d{bottom:620.701500px;}
.y5e{bottom:623.038500px;}
.y9e{bottom:625.692000px;}
.y16b{bottom:632.778000px;}
.y39{bottom:633.558000px;}
.y13d{bottom:634.579500px;}
.y15{bottom:635.007000px;}
.y10c{bottom:636.874500px;}
.y9d{bottom:643.512000px;}
.y16a{bottom:648.951000px;}
.y38{bottom:649.731000px;}
.y13c{bottom:650.752500px;}
.y14{bottom:651.180000px;}
.y10b{bottom:653.049000px;}
.y5d{bottom:659.550000px;}
.y169{bottom:665.124000px;}
.y37{bottom:665.904000px;}
.y13b{bottom:666.925500px;}
.y13{bottom:667.353000px;}
.y36{bottom:682.078500px;}
.y10a{bottom:682.636500px;}
.y9c{bottom:684.585000px;}
.y13a{bottom:695.671500px;}
.y168{bottom:696.265500px;}
.y12{bottom:698.251500px;}
.y109{bottom:698.809500px;}
.y9b{bottom:700.759500px;}
.y139{bottom:711.844500px;}
.y167{bottom:712.438500px;}
.y108{bottom:714.982500px;}
.y9a{bottom:716.932500px;}
.y138{bottom:728.017500px;}
.y166{bottom:728.611500px;}
.y107{bottom:731.155500px;}
.y137{bottom:744.190500px;}
.y99{bottom:745.020000px;}
.y11{bottom:747.039000px;}
.y165{bottom:759.753000px;}
.y106{bottom:760.743000px;}
.y98{bottom:761.193000px;}
.y10{bottom:763.212000px;}
.y136{bottom:772.935000px;}
.y164{bottom:775.926000px;}
.y105{bottom:776.916000px;}
.y97{bottom:777.366000px;}
.yf{bottom:779.385000px;}
.y135{bottom:789.108000px;}
.y163{bottom:792.099000px;}
.y104{bottom:793.089000px;}
.y96{bottom:793.539000px;}
.ye{bottom:795.558000px;}
.y134{bottom:805.281000px;}
.y162{bottom:808.272000px;}
.y103{bottom:809.262000px;}
.y95{bottom:809.712000px;}
.yd{bottom:811.731000px;}
.y133{bottom:821.454000px;}
.y161{bottom:824.445000px;}
.y94{bottom:825.885000px;}
.yc{bottom:827.904000px;}
.y102{bottom:838.851000px;}
.y160{bottom:840.618000px;}
.ye0{bottom:840.909000px;}
.yb{bottom:844.077000px;}
.yd6{bottom:845.956500px;}
.y132{bottom:850.200000px;}
.y101{bottom:855.024000px;}
.ya{bottom:860.250000px;}
.y93{bottom:864.463500px;}
.y131{bottom:866.373000px;}
.y100{bottom:871.197000px;}
.y15f{bottom:871.759500px;}
.yb9{bottom:874.605000px;}
.y9{bottom:876.424500px;}
.y130{bottom:882.546000px;}
.yff{bottom:887.370000px;}
.y15e{bottom:887.932500px;}
.yb8{bottom:891.043500px;}
.y8{bottom:892.597500px;}
.y12f{bottom:898.719000px;}
.yfe{bottom:903.543000px;}
.y15d{bottom:904.105500px;}
.y5c{bottom:908.122500px;}
.y92{bottom:911.319000px;}
.y12e{bottom:914.892000px;}
.y7{bottom:924.943500px;}
.y91{bottom:927.757500px;}
.yfd{bottom:933.130500px;}
.y15c{bottom:935.245500px;}
.y12d{bottom:943.638000px;}
.yfc{bottom:949.303500px;}
.y15b{bottom:951.418500px;}
.y72{bottom:954.208500px;}
.y12c{bottom:959.811000px;}
.yfb{bottom:965.476500px;}
.y15a{bottom:967.591500px;}
.y6{bottom:975.951000px;}
.y12b{bottom:975.984000px;}
.y187{bottom:978.759000px;}
.yfa{bottom:995.064000px;}
.y159{bottom:998.733000px;}
.y186{bottom:1004.316000px;}
.y12a{bottom:1004.730000px;}
.y18c{bottom:1004.886000px;}
.yf9{bottom:1011.237000px;}
.y158{bottom:1014.906000px;}
.y185{bottom:1020.490500px;}
.y129{bottom:1020.903000px;}
.y18b{bottom:1021.059000px;}
.yf8{bottom:1027.410000px;}
.y5{bottom:1030.131000px;}
.y157{bottom:1031.079000px;}
.y184{bottom:1036.663500px;}
.y128{bottom:1037.076000px;}
.y18a{bottom:1037.232000px;}
.yf7{bottom:1043.583000px;}
.y156{bottom:1047.252000px;}
.y4{bottom:1047.295500px;}
.y183{bottom:1052.836500px;}
.y127{bottom:1053.249000px;}
.y189{bottom:1053.405000px;}
.yf6{bottom:1059.756000px;}
.y182{bottom:1069.009500px;}
.y188{bottom:1069.578000px;}
.y3{bottom:1074.919500px;}
.yf5{bottom:1075.930500px;}
.ydf{bottom:1078.393500px;}
.y126{bottom:1081.995000px;}
.yf4{bottom:1092.103500px;}
.yde{bottom:1094.566500px;}
.y125{bottom:1098.168000px;}
.yf3{bottom:1108.276500px;}
.ydd{bottom:1110.739500px;}
.y2{bottom:1122.193500px;}
.ydc{bottom:1126.912500px;}
.ydb{bottom:1143.085500px;}
.y1{bottom:1143.175500px;}
.y58{bottom:1198.034784px;}
.h7{height:16.678620px;}
.h15{height:19.073587px;}
.h12{height:23.628474px;}
.h14{height:23.685410px;}
.h8{height:24.677184px;}
.h4{height:26.629728px;}
.h16{height:28.052642px;}
.h11{height:28.468041px;}
.hb{height:29.040150px;}
.hd{height:32.900160px;}
.h9{height:33.187080px;}
.he{height:37.011648px;}
.h1a{height:37.763070px;}
.h6{height:38.039520px;}
.h5{height:38.260680px;}
.ha{height:38.315520px;}
.h10{height:39.800880px;}
.h13{height:42.115641px;}
.h17{height:46.706220px;}
.h3{height:49.483728px;}
.h2{height:49.637160px;}
.hc{height:49.898438px;}
.h19{height:74.525520px;}
.h18{height:117.986220px;}
.hf{height:202.325670px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:20.022000px;}
.w5{width:361.403460px;}
.w3{width:564.241500px;}
.w2{width:685.020000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:7.992603px;}
.x29{left:12.251792px;}
.x11{left:20.022000px;}
.x17{left:28.748328px;}
.x1a{left:32.012379px;}
.x19{left:33.524988px;}
.x2d{left:35.026224px;}
.x26{left:36.749234px;}
.x32{left:38.398319px;}
.x1b{left:43.123800px;}
.x33{left:50.192120px;}
.x1c{left:51.801399px;}
.x28{left:66.131379px;}
.x2c{left:68.559515px;}
.x2a{left:71.237856px;}
.x27{left:74.035614px;}
.x2b{left:76.082754px;}
.x7{left:85.039500px;}
.x15{left:94.846500px;}
.x9{left:96.994500px;}
.x4e{left:98.862000px;}
.xc{left:103.947006px;}
.x1f{left:105.083904px;}
.x2f{left:107.131044px;}
.x1e{left:109.911743px;}
.x1d{left:117.457728px;}
.x13{left:121.285500px;}
.x44{left:125.865000px;}
.x12{left:141.525000px;}
.x3c{left:146.131500px;}
.x14{left:159.414000px;}
.xe{left:164.336243px;}
.xd{left:166.410000px;}
.x47{left:167.626500px;}
.xf{left:170.391000px;}
.x2e{left:175.573758px;}
.x43{left:178.729500px;}
.x31{left:184.825694px;}
.x5{left:186.210000px;}
.x16{left:191.091000px;}
.x3d{left:196.030500px;}
.x8{left:198.424500px;}
.x20{left:199.849427px;}
.x46{left:201.465000px;}
.x45{left:216.748500px;}
.x30{left:218.017794px;}
.x2{left:236.358000px;}
.x6{left:243.451500px;}
.x3{left:250.996500px;}
.x18{left:267.120722px;}
.x24{left:271.760906px;}
.x1{left:280.087500px;}
.x22{left:284.549844px;}
.x21{left:294.017867px;}
.x4{left:302.916000px;}
.x23{left:335.125575px;}
.xa{left:459.213000px;}
.x41{left:463.704000px;}
.x34{left:465.493500px;}
.x3b{left:471.168000px;}
.x49{left:473.035500px;}
.x3a{left:534.072000px;}
.x4a{left:547.656000px;}
.x3e{left:551.857500px;}
.x3f{left:566.646000px;}
.x40{left:568.510500px;}
.x50{left:569.599500px;}
.x37{left:581.356500px;}
.x38{left:588.112500px;}
.x35{left:590.922000px;}
.x48{left:601.432500px;}
.x36{left:608.701500px;}
.x42{left:610.195500px;}
.x39{left:625.663500px;}
.x4c{left:641.035500px;}
.x4d{left:682.489500px;}
.x4b{left:705.586500px;}
.x4f{left:715.059000px;}
.x10{left:787.852295px;}
.xb{left:789.822000px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v3{vertical-align:-15.002667pt;}
.v7{vertical-align:-4.508763pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.860117pt;}
.v8{vertical-align:3.881984pt;}
.v6{vertical-align:12.131200pt;}
.v5{vertical-align:14.375472pt;}
.v1{vertical-align:20.314667pt;}
.v9{vertical-align:32.432000pt;}
.va{vertical-align:63.360000pt;}
.vb{vertical-align:83.674667pt;}
.ls5e{letter-spacing:-0.017186pt;}
.ls40{letter-spacing:0.000000pt;}
.ls54{letter-spacing:0.003227pt;}
.ls5d{letter-spacing:0.017995pt;}
.ls50{letter-spacing:1.718255pt;}
.ls0{letter-spacing:2.653333pt;}
.ls51{letter-spacing:2.655169pt;}
.ls1{letter-spacing:2.658667pt;}
.lsd{letter-spacing:9.441227pt;}
.lsc{letter-spacing:9.445440pt;}
.lse{letter-spacing:9.446538pt;}
.lsf{letter-spacing:9.451071pt;}
.ls24{letter-spacing:9.963555pt;}
.ls25{letter-spacing:9.979893pt;}
.ls37{letter-spacing:10.185333pt;}
.ls36{letter-spacing:10.225227pt;}
.ls35{letter-spacing:10.232613pt;}
.ls38{letter-spacing:10.234693pt;}
.ls42{letter-spacing:10.626667pt;}
.ls41{letter-spacing:10.636705pt;}
.ls30{letter-spacing:10.913227pt;}
.ls31{letter-spacing:10.918855pt;}
.ls46{letter-spacing:10.920560pt;}
.ls47{letter-spacing:10.923771pt;}
.ls2d{letter-spacing:10.926626pt;}
.ls2e{letter-spacing:10.966560pt;}
.ls2f{letter-spacing:10.970570pt;}
.ls16{letter-spacing:11.163893pt;}
.ls15{letter-spacing:11.164618pt;}
.ls18{letter-spacing:11.165114pt;}
.ls17{letter-spacing:11.171022pt;}
.ls2{letter-spacing:11.256000pt;}
.lsa{letter-spacing:11.705227pt;}
.lsb{letter-spacing:11.713756pt;}
.ls11{letter-spacing:12.127050pt;}
.ls12{letter-spacing:12.145227pt;}
.ls13{letter-spacing:12.148804pt;}
.ls4f{letter-spacing:12.286667pt;}
.ls14{letter-spacing:12.304156pt;}
.ls10{letter-spacing:12.987854pt;}
.ls59{letter-spacing:13.588502pt;}
.ls49{letter-spacing:13.651091pt;}
.ls5b{letter-spacing:13.747646pt;}
.ls5c{letter-spacing:13.762667pt;}
.ls1a{letter-spacing:13.814560pt;}
.ls1b{letter-spacing:13.820733pt;}
.ls19{letter-spacing:13.831426pt;}
.ls4{letter-spacing:14.252533pt;}
.ls5{letter-spacing:14.319227pt;}
.ls26{letter-spacing:15.290453pt;}
.ls28{letter-spacing:15.294640pt;}
.ls2a{letter-spacing:15.295613pt;}
.ls27{letter-spacing:15.339893pt;}
.ls29{letter-spacing:15.342560pt;}
.ls2b{letter-spacing:15.342773pt;}
.ls48{letter-spacing:15.371588pt;}
.ls4b{letter-spacing:15.821893pt;}
.ls5a{letter-spacing:15.976000pt;}
.ls44{letter-spacing:16.092672pt;}
.ls39{letter-spacing:16.109781pt;}
.ls4d{letter-spacing:16.317893pt;}
.ls5f{letter-spacing:16.808160pt;}
.ls53{letter-spacing:17.293758pt;}
.ls4c{letter-spacing:17.536922pt;}
.ls2c{letter-spacing:17.609462pt;}
.ls45{letter-spacing:17.889387pt;}
.ls4e{letter-spacing:18.032922pt;}
.ls3e{letter-spacing:18.187893pt;}
.ls3f{letter-spacing:18.213746pt;}
.ls8{letter-spacing:18.534560pt;}
.ls6{letter-spacing:18.544330pt;}
.ls7{letter-spacing:18.582667pt;}
.ls9{letter-spacing:18.594472pt;}
.ls22{letter-spacing:18.782773pt;}
.ls23{letter-spacing:18.792529pt;}
.ls21{letter-spacing:18.797058pt;}
.ls43{letter-spacing:19.113971pt;}
.ls57{letter-spacing:19.261893pt;}
.ls3{letter-spacing:19.448000pt;}
.ls33{letter-spacing:20.646560pt;}
.ls32{letter-spacing:20.705187pt;}
.ls34{letter-spacing:20.705481pt;}
.ls56{letter-spacing:20.974738pt;}
.ls58{letter-spacing:20.976922pt;}
.ls1f{letter-spacing:22.136831pt;}
.ls3d{letter-spacing:22.767232pt;}
.ls3b{letter-spacing:22.769471pt;}
.ls3a{letter-spacing:22.809440pt;}
.ls3c{letter-spacing:22.811893pt;}
.ls1e{letter-spacing:23.055752pt;}
.ls1c{letter-spacing:23.057192pt;}
.ls1d{letter-spacing:23.057227pt;}
.ls20{letter-spacing:26.565333pt;}
.ls55{letter-spacing:31.543321pt;}
.ls52{letter-spacing:43.038738pt;}
.ls4a{letter-spacing:474.209987pt;}
.ws34{word-spacing:-12.286667pt;}
.ws6a{word-spacing:-6.744947pt;}
.ws6c{word-spacing:-5.611796pt;}
.ws69{word-spacing:-5.598306pt;}
.ws6f{word-spacing:-4.519115pt;}
.ws94{word-spacing:-2.948947pt;}
.ws21{word-spacing:-2.899850pt;}
.ws7f{word-spacing:-2.850507pt;}
.ws55{word-spacing:-2.801213pt;}
.wsf9{word-spacing:-2.604773pt;}
.wse3{word-spacing:-2.408187pt;}
.wscc{word-spacing:-2.385200pt;}
.ws3f{word-spacing:-2.359089pt;}
.wscd{word-spacing:-2.359040pt;}
.ws3e{word-spacing:-2.310041pt;}
.ws49{word-spacing:-2.064160pt;}
.wsc1{word-spacing:-2.015112pt;}
.wsde{word-spacing:-1.916720pt;}
.wsf5{word-spacing:-1.867377pt;}
.ws74{word-spacing:-1.769231pt;}
.wseb{word-spacing:-1.720182pt;}
.ws6{word-spacing:-1.622037pt;}
.ws90{word-spacing:-1.621840pt;}
.wse9{word-spacing:-1.572988pt;}
.ws107{word-spacing:-1.474400pt;}
.wsa2{word-spacing:-1.474351pt;}
.ws5f{word-spacing:-1.425253pt;}
.ws46{word-spacing:-1.376205pt;}
.ws86{word-spacing:-1.376107pt;}
.ws62{word-spacing:-1.327157pt;}
.wsb4{word-spacing:-1.326616pt;}
.ws108{word-spacing:-1.179962pt;}
.ws64{word-spacing:-1.179520pt;}
.ws8d{word-spacing:-1.179422pt;}
.ws2c{word-spacing:-1.130324pt;}
.wsce{word-spacing:-1.081276pt;}
.ws5c{word-spacing:-1.081227pt;}
.wsae{word-spacing:-1.032227pt;}
.wsd1{word-spacing:-0.983130pt;}
.wsa8{word-spacing:-0.835444pt;}
.ws82{word-spacing:-0.786347pt;}
.ws1b{word-spacing:-0.639152pt;}
.wse8{word-spacing:-0.618667pt;}
.ws1c{word-spacing:-0.589563pt;}
.wscf{word-spacing:-0.540613pt;}
.ws4c{word-spacing:-0.540515pt;}
.ws4b{word-spacing:-0.534960pt;}
.wsb1{word-spacing:-0.491467pt;}
.wsda{word-spacing:-0.491418pt;}
.wsb0{word-spacing:-0.468640pt;}
.wse7{word-spacing:-0.442369pt;}
.ws92{word-spacing:-0.393321pt;}
.ws91{word-spacing:-0.393124pt;}
.wsc8{word-spacing:-0.344223pt;}
.wsd2{word-spacing:-0.245586pt;}
.wse2{word-spacing:-0.196587pt;}
.ws2a{word-spacing:-0.196538pt;}
.ws29{word-spacing:-0.147440pt;}
.ws4e{word-spacing:-0.098392pt;}
.ws4{word-spacing:-0.049147pt;}
.ws87{word-spacing:-0.047819pt;}
.ws36{word-spacing:-0.042507pt;}
.ws58{word-spacing:-0.042252pt;}
.ws2{word-spacing:-0.000246pt;}
.ws59{word-spacing:-0.000128pt;}
.ws1{word-spacing:0.000000pt;}
.wse{word-spacing:0.000295pt;}
.ws5a{word-spacing:0.004213pt;}
.wsf6{word-spacing:0.005026pt;}
.wsfa{word-spacing:0.006267pt;}
.wsca{word-spacing:0.006650pt;}
.wsb3{word-spacing:0.008133pt;}
.wsee{word-spacing:0.008839pt;}
.ws8{word-spacing:0.049147pt;}
.ws66{word-spacing:0.098392pt;}
.ws65{word-spacing:0.147440pt;}
.ws9e{word-spacing:0.147489pt;}
.wsd{word-spacing:0.344027pt;}
.ws2b{word-spacing:0.393321pt;}
.wsef{word-spacing:0.442369pt;}
.ws105{word-spacing:0.491467pt;}
.wsbf{word-spacing:0.540515pt;}
.ws25{word-spacing:0.687709pt;}
.ws26{word-spacing:0.688250pt;}
.wsbe{word-spacing:0.737298pt;}
.ws45{word-spacing:0.884493pt;}
.ws98{word-spacing:0.884689pt;}
.ws99{word-spacing:0.885033pt;}
.ws80{word-spacing:0.933590pt;}
.ws75{word-spacing:0.933787pt;}
.ws96{word-spacing:0.982638pt;}
.wsc{word-spacing:1.130373pt;}
.wsa5{word-spacing:1.179422pt;}
.wsd8{word-spacing:1.228470pt;}
.wsd9{word-spacing:1.228667pt;}
.wsf0{word-spacing:1.277568pt;}
.wsa7{word-spacing:1.327157pt;}
.ws40{word-spacing:1.376205pt;}
.wsaf{word-spacing:1.425204pt;}
.ws8a{word-spacing:1.474351pt;}
.ws32{word-spacing:1.523399pt;}
.ws5d{word-spacing:1.572693pt;}
.ws8e{word-spacing:1.621840pt;}
.ws2d{word-spacing:1.622086pt;}
.wsc9{word-spacing:1.670593pt;}
.ws8f{word-spacing:1.671134pt;}
.ws7e{word-spacing:1.720133pt;}
.wsea{word-spacing:1.720182pt;}
.wsf1{word-spacing:1.769280pt;}
.wsc4{word-spacing:1.818328pt;}
.ws57{word-spacing:1.867377pt;}
.ws16{word-spacing:1.965867pt;}
.ws17{word-spacing:1.966063pt;}
.wsc7{word-spacing:2.015112pt;}
.wsa9{word-spacing:2.113307pt;}
.ws9{word-spacing:2.162306pt;}
.ws44{word-spacing:2.211403pt;}
.ws4a{word-spacing:2.260992pt;}
.ws85{word-spacing:2.309893pt;}
.wse4{word-spacing:2.310041pt;}
.wsec{word-spacing:2.359089pt;}
.wscb{word-spacing:2.408187pt;}
.ws20{word-spacing:2.457235pt;}
.ws103{word-spacing:2.555381pt;}
.ws102{word-spacing:2.555627pt;}
.ws88{word-spacing:2.604970pt;}
.wse0{word-spacing:2.687573pt;}
.wse1{word-spacing:2.703018pt;}
.wsbd{word-spacing:2.703116pt;}
.ws79{word-spacing:2.752164pt;}
.wsf4{word-spacing:2.850310pt;}
.ws37{word-spacing:2.850507pt;}
.ws8b{word-spacing:2.869120pt;}
.ws76{word-spacing:2.948800pt;}
.wsa4{word-spacing:2.997947pt;}
.ws42{word-spacing:3.047093pt;}
.wsd6{word-spacing:3.096142pt;}
.ws93{word-spacing:3.194828pt;}
.ws7{word-spacing:3.243877pt;}
.wsa{word-spacing:3.292925pt;}
.ws5e{word-spacing:3.341924pt;}
.ws9b{word-spacing:3.391071pt;}
.ws28{word-spacing:3.440119pt;}
.ws60{word-spacing:3.489413pt;}
.ws1d{word-spacing:3.489708pt;}
.ws70{word-spacing:3.538560pt;}
.ws78{word-spacing:3.587707pt;}
.ws9c{word-spacing:3.587854pt;}
.ws77{word-spacing:3.636902pt;}
.ws89{word-spacing:3.686000pt;}
.ws9a{word-spacing:3.735048pt;}
.ws4f{word-spacing:3.784097pt;}
.ws2e{word-spacing:3.833194pt;}
.ws14{word-spacing:3.931733pt;}
.ws15{word-spacing:3.931832pt;}
.wsf2{word-spacing:3.980929pt;}
.ws71{word-spacing:4.029978pt;}
.ws73{word-spacing:4.030027pt;}
.ws72{word-spacing:4.030880pt;}
.ws81{word-spacing:4.079026pt;}
.wsb{word-spacing:4.177712pt;}
.wsa3{word-spacing:4.275760pt;}
.ws5{word-spacing:4.324907pt;}
.wsbb{word-spacing:4.373955pt;}
.ws63{word-spacing:4.374053pt;}
.wsba{word-spacing:4.423003pt;}
.ws11{word-spacing:4.472347pt;}
.ws4d{word-spacing:4.521149pt;}
.ws12{word-spacing:4.521493pt;}
.wsf7{word-spacing:4.521690pt;}
.ws8c{word-spacing:4.570640pt;}
.ws56{word-spacing:4.619836pt;}
.ws43{word-spacing:4.668884pt;}
.wsdf{word-spacing:4.668933pt;}
.ws41{word-spacing:4.767030pt;}
.wsa6{word-spacing:4.816078pt;}
.ws100{word-spacing:4.816619pt;}
.wsac{word-spacing:4.865520pt;}
.ws31{word-spacing:4.914716pt;}
.ws3b{word-spacing:4.963813pt;}
.ws23{word-spacing:5.061910pt;}
.wsa1{word-spacing:5.111253pt;}
.wsf3{word-spacing:5.111548pt;}
.wsa0{word-spacing:5.160056pt;}
.ws9f{word-spacing:5.160400pt;}
.wsc6{word-spacing:5.160597pt;}
.wsf8{word-spacing:5.209547pt;}
.ws27{word-spacing:5.307791pt;}
.ws18{word-spacing:5.356839pt;}
.ws1e{word-spacing:5.504574pt;}
.ws61{word-spacing:5.553573pt;}
.ws30{word-spacing:5.553622pt;}
.ws97{word-spacing:5.602720pt;}
.wsc2{word-spacing:5.651768pt;}
.wse6{word-spacing:5.700817pt;}
.wsb2{word-spacing:5.701013pt;}
.ws9d{word-spacing:5.750160pt;}
.ws5b{word-spacing:5.799258pt;}
.wsd0{word-spacing:5.848552pt;}
.ws54{word-spacing:5.897600pt;}
.wsc3{word-spacing:5.946698pt;}
.ws95{word-spacing:5.995746pt;}
.wsd4{word-spacing:6.192480pt;}
.ws1a{word-spacing:6.241627pt;}
.ws19{word-spacing:6.290675pt;}
.ws39{word-spacing:6.438164pt;}
.ws3a{word-spacing:6.438410pt;}
.ws3d{word-spacing:6.684242pt;}
.ws35{word-spacing:6.733339pt;}
.ws10{word-spacing:6.929680pt;}
.ws7b{word-spacing:6.977467pt;}
.ws83{word-spacing:6.978630pt;}
.ws7c{word-spacing:6.978827pt;}
.ws7d{word-spacing:6.980213pt;}
.wsfe{word-spacing:7.125824pt;}
.ws1f{word-spacing:7.273559pt;}
.wsc5{word-spacing:7.470342pt;}
.ws109{word-spacing:7.605333pt;}
.ws10a{word-spacing:7.617537pt;}
.ws38{word-spacing:7.666880pt;}
.ws3c{word-spacing:7.863418pt;}
.ws106{word-spacing:8.060201pt;}
.ws22{word-spacing:8.158347pt;}
.ws13{word-spacing:8.207395pt;}
.ws47{word-spacing:8.354589pt;}
.ws48{word-spacing:8.355130pt;}
.wsb5{word-spacing:8.453227pt;}
.wsed{word-spacing:8.650059pt;}
.wsad{word-spacing:8.748107pt;}
.wsfc{word-spacing:8.748156pt;}
.wsd3{word-spacing:8.846302pt;}
.wse5{word-spacing:9.387062pt;}
.wsb6{word-spacing:9.780138pt;}
.ws101{word-spacing:9.878234pt;}
.wsdc{word-spacing:9.927872pt;}
.wsdb{word-spacing:9.973307pt;}
.wsff{word-spacing:9.976380pt;}
.wsdd{word-spacing:9.976921pt;}
.wsbc{word-spacing:10.271850pt;}
.ws51{word-spacing:10.320898pt;}
.ws52{word-spacing:10.468093pt;}
.ws53{word-spacing:10.468633pt;}
.ws2f{word-spacing:10.517141pt;}
.wsc0{word-spacing:10.615827pt;}
.ws33{word-spacing:10.763022pt;}
.wsb9{word-spacing:10.910216pt;}
.ws24{word-spacing:10.910757pt;}
.wsb8{word-spacing:10.922880pt;}
.wsb7{word-spacing:10.959805pt;}
.wsaa{word-spacing:11.107147pt;}
.wsfd{word-spacing:11.401928pt;}
.ws3{word-spacing:12.237520pt;}
.ws84{word-spacing:12.237815pt;}
.wsfb{word-spacing:14.006603pt;}
.ws50{word-spacing:14.400219pt;}
.ws104{word-spacing:15.038880pt;}
.wsd7{word-spacing:15.383103pt;}
.ws0{word-spacing:15.876240pt;}
.wsab{word-spacing:16.709965pt;}
.wsd5{word-spacing:23.688349pt;}
.ws6b{word-spacing:40.079018pt;}
.wsf{word-spacing:41.725520pt;}
.ws6d{word-spacing:73.657290pt;}
.ws6e{word-spacing:118.623605pt;}
.ws68{word-spacing:191.548090pt;}
.ws67{word-spacing:309.878968pt;}
.ws7a{word-spacing:370.563901pt;}
._1{margin-left:-8.607600pt;}
._2{margin-left:-6.375681pt;}
._1e{margin-left:-5.455231pt;}
._4{margin-left:-4.521493pt;}
._0{margin-left:-3.506800pt;}
._7{margin-left:-2.079450pt;}
._3{margin-left:-1.147744pt;}
._19{width:0.918615pt;}
._12{width:2.592949pt;}
._14{width:3.612828pt;}
._1f{width:9.355745pt;}
._17{width:12.138818pt;}
._9{width:13.235793pt;}
._5{width:14.631907pt;}
._d{width:16.120156pt;}
._b{width:17.445887pt;}
._c{width:19.231686pt;}
._13{width:20.705791pt;}
._a{width:21.674073pt;}
._e{width:22.573512pt;}
._6{width:24.425697pt;}
._8{width:25.553794pt;}
._10{width:26.554638pt;}
._1b{width:27.751741pt;}
._16{width:29.258049pt;}
._f{width:30.636841pt;}
._15{width:31.847237pt;}
._11{width:35.546758pt;}
._20{width:37.154683pt;}
._1c{width:41.774667pt;}
._1d{width:49.146667pt;}
._1a{width:156.864503pt;}
._18{width:242.051326pt;}
.fsa{font-size:16.255808pt;}
.fs7{font-size:20.137792pt;}
.fs9{font-size:20.186317pt;}
.fs8{font-size:24.262400pt;}
.fs3{font-size:31.882667pt;}
.fs2{font-size:34.405333pt;}
.fs4{font-size:42.506667pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:47.818667pt;}
.fs1{font-size:49.146667pt;}
.fs0{font-size:63.760000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:2.245333pt;}
.y74{bottom:3.708103pt;}
.y73{bottom:10.850347pt;}
.y59{bottom:15.045333pt;}
.y5b{bottom:31.786751pt;}
.y8d{bottom:60.118183pt;}
.y81{bottom:75.706775pt;}
.y7c{bottom:81.686446pt;}
.y83{bottom:81.989726pt;}
.y8f{bottom:82.207077pt;}
.y7b{bottom:84.001483pt;}
.y90{bottom:84.259271pt;}
.y80{bottom:84.512005pt;}
.y82{bottom:87.034283pt;}
.y8e{bottom:91.381297pt;}
.y35{bottom:94.488000pt;}
.yd5{bottom:98.238667pt;}
.y8c{bottom:99.327233pt;}
.y89{bottom:99.483927pt;}
.y86{bottom:105.776987pt;}
.y34{bottom:107.108000pt;}
.y8b{bottom:108.400359pt;}
.y57{bottom:108.864000pt;}
.yb7{bottom:110.857333pt;}
.y78{bottom:112.499694pt;}
.y87{bottom:113.677431pt;}
.y7d{bottom:113.834126pt;}
.yd4{bottom:115.928000pt;}
.y7e{bottom:117.059003pt;}
.y77{bottom:117.559415pt;}
.y56{bottom:123.240000pt;}
.y33{bottom:123.477333pt;}
.y88{bottom:124.059717pt;}
.yb6{bottom:125.886667pt;}
.yd3{bottom:130.304000pt;}
.y8a{bottom:132.627377pt;}
.y85{bottom:135.367006pt;}
.y32{bottom:136.449333pt;}
.y55{bottom:137.616000pt;}
.yb5{bottom:140.262667pt;}
.y7f{bottom:142.923733pt;}
.y7a{bottom:143.590949pt;}
.y84{bottom:143.848737pt;}
.yd2{bottom:144.681333pt;}
.y124{bottom:149.540000pt;}
.y71{bottom:150.698667pt;}
.y31{bottom:151.921333pt;}
.y54{bottom:151.992000pt;}
.yb4{bottom:154.638667pt;}
.yd1{bottom:159.057333pt;}
.y155{bottom:163.168000pt;}
.y123{bottom:163.916000pt;}
.y70{bottom:165.074667pt;}
.y76{bottom:165.149102pt;}
.y30{bottom:166.297333pt;}
.y53{bottom:166.368000pt;}
.y79{bottom:168.181902pt;}
.yb3{bottom:169.014667pt;}
.y75{bottom:171.214702pt;}
.yd0{bottom:173.433333pt;}
.y154{bottom:177.544000pt;}
.y122{bottom:178.292000pt;}
.y6f{bottom:179.450667pt;}
.y181{bottom:179.673333pt;}
.y2f{bottom:180.673333pt;}
.y52{bottom:180.744000pt;}
.yb2{bottom:183.390667pt;}
.ycf{bottom:187.809333pt;}
.y153{bottom:191.920000pt;}
.y6e{bottom:193.826667pt;}
.y180{bottom:194.049333pt;}
.y2e{bottom:195.049333pt;}
.y51{bottom:195.120000pt;}
.yb1{bottom:197.766667pt;}
.yda{bottom:198.813333pt;}
.yce{bottom:202.185333pt;}
.y121{bottom:204.593333pt;}
.y152{bottom:206.296000pt;}
.yf2{bottom:207.374667pt;}
.y17f{bottom:208.425333pt;}
.y2d{bottom:209.425333pt;}
.y50{bottom:209.496000pt;}
.yb0{bottom:212.142667pt;}
.yd9{bottom:213.425333pt;}
.ycd{bottom:216.561333pt;}
.y120{bottom:218.969333pt;}
.y151{bottom:220.672000pt;}
.y17e{bottom:222.801333pt;}
.y2c{bottom:223.801333pt;}
.y4f{bottom:223.872000pt;}
.y6d{bottom:224.485333pt;}
.yaf{bottom:226.518667pt;}
.ycc{bottom:230.937333pt;}
.y11f{bottom:233.345333pt;}
.y17d{bottom:237.177333pt;}
.y2b{bottom:238.177333pt;}
.y4e{bottom:238.248000pt;}
.yf1{bottom:240.644000pt;}
.ycb{bottom:245.313333pt;}
.yd8{bottom:245.880000pt;}
.y150{bottom:246.222667pt;}
.y11e{bottom:247.721333pt;}
.y2a{bottom:252.553333pt;}
.yae{bottom:253.030667pt;}
.yf0{bottom:255.020000pt;}
.yca{bottom:259.689333pt;}
.y14f{bottom:260.598667pt;}
.y6c{bottom:262.777333pt;}
.y4d{bottom:264.133333pt;}
.y17c{bottom:264.857333pt;}
.y29{bottom:266.929333pt;}
.yef{bottom:269.396000pt;}
.y11d{bottom:274.021333pt;}
.y14e{bottom:274.976000pt;}
.y6b{bottom:277.153333pt;}
.y4c{bottom:278.509333pt;}
.y17b{bottom:279.233333pt;}
.yad{bottom:281.086667pt;}
.y28{bottom:281.305333pt;}
.yee{bottom:283.772000pt;}
.yc9{bottom:286.414667pt;}
.y11c{bottom:288.397333pt;}
.y14d{bottom:289.352000pt;}
.y6a{bottom:291.529333pt;}
.y4b{bottom:292.885333pt;}
.y17a{bottom:293.609333pt;}
.y11b{bottom:302.773333pt;}
.y27{bottom:305.681333pt;}
.y69{bottom:305.905333pt;}
.y4a{bottom:307.261333pt;}
.yed{bottom:307.314667pt;}
.y179{bottom:307.985333pt;}
.yc8{bottom:311.968000pt;}
.y14c{bottom:314.902667pt;}
.yac{bottom:316.150667pt;}
.y26{bottom:320.057333pt;}
.y49{bottom:321.637333pt;}
.yec{bottom:321.690667pt;}
.y178{bottom:322.362667pt;}
.yc7{bottom:326.344000pt;}
.y11a{bottom:329.073333pt;}
.y14b{bottom:329.278667pt;}
.yab{bottom:330.526667pt;}
.y68{bottom:333.364000pt;}
.y25{bottom:334.433333pt;}
.y48{bottom:336.013333pt;}
.yeb{bottom:336.066667pt;}
.y177{bottom:336.738667pt;}
.yc6{bottom:340.720000pt;}
.y119{bottom:343.449333pt;}
.y14a{bottom:343.654667pt;}
.yaa{bottom:344.902667pt;}
.y67{bottom:347.740000pt;}
.y24{bottom:348.809333pt;}
.y47{bottom:350.389333pt;}
.yea{bottom:350.442667pt;}
.yc5{bottom:355.096000pt;}
.y118{bottom:357.825333pt;}
.y149{bottom:358.030667pt;}
.ya9{bottom:359.278667pt;}
.y66{bottom:362.116000pt;}
.y23{bottom:363.185333pt;}
.y176{bottom:364.418667pt;}
.y46{bottom:364.765333pt;}
.ye9{bottom:364.818667pt;}
.yc4{bottom:369.472000pt;}
.ya8{bottom:373.654667pt;}
.y65{bottom:376.492000pt;}
.y22{bottom:377.562667pt;}
.y175{bottom:378.794667pt;}
.y45{bottom:379.141333pt;}
.ye8{bottom:379.194667pt;}
.y148{bottom:383.582667pt;}
.yc3{bottom:383.848000pt;}
.y117{bottom:384.126667pt;}
.ya7{bottom:388.030667pt;}
.y64{bottom:390.868000pt;}
.y21{bottom:391.938667pt;}
.y174{bottom:393.170667pt;}
.y44{bottom:393.517333pt;}
.ye7{bottom:393.570667pt;}
.y147{bottom:397.958667pt;}
.yc2{bottom:398.224000pt;}
.y116{bottom:398.502667pt;}
.ya6{bottom:402.406667pt;}
.y20{bottom:406.314667pt;}
.y43{bottom:407.893333pt;}
.ye6{bottom:407.946667pt;}
.y146{bottom:412.334667pt;}
.yc1{bottom:412.600000pt;}
.y115{bottom:412.878667pt;}
.ya5{bottom:416.782667pt;}
.y1f{bottom:420.690667pt;}
.y173{bottom:420.852000pt;}
.y42{bottom:422.269333pt;}
.ye5{bottom:422.322667pt;}
.y63{bottom:424.124000pt;}
.y145{bottom:426.710667pt;}
.yc0{bottom:426.976000pt;}
.y114{bottom:427.254667pt;}
.y1e{bottom:435.066667pt;}
.y172{bottom:435.228000pt;}
.y41{bottom:436.646667pt;}
.y144{bottom:441.086667pt;}
.ybf{bottom:441.352000pt;}
.y113{bottom:441.630667pt;}
.ya4{bottom:441.749333pt;}
.ye4{bottom:448.952000pt;}
.y1d{bottom:449.442667pt;}
.y171{bottom:449.604000pt;}
.y62{bottom:450.098667pt;}
.y40{bottom:451.022667pt;}
.ybe{bottom:455.728000pt;}
.ya3{bottom:456.125333pt;}
.y1c{bottom:463.818667pt;}
.y3f{bottom:465.398667pt;}
.y143{bottom:466.638667pt;}
.y112{bottom:467.930667pt;}
.ybd{bottom:470.104000pt;}
.ya2{bottom:470.501333pt;}
.y61{bottom:476.072000pt;}
.y170{bottom:477.285333pt;}
.y1b{bottom:478.194667pt;}
.y3e{bottom:479.774667pt;}
.y142{bottom:481.014667pt;}
.y111{bottom:482.306667pt;}
.ye3{bottom:483.282667pt;}
.ybc{bottom:484.480000pt;}
.ya1{bottom:484.877333pt;}
.yd7{bottom:486.072000pt;}
.y16f{bottom:491.661333pt;}
.y1a{bottom:492.570667pt;}
.y141{bottom:495.390667pt;}
.y110{bottom:496.682667pt;}
.ye2{bottom:497.893333pt;}
.y3d{bottom:505.658667pt;}
.y16e{bottom:506.037333pt;}
.y19{bottom:506.946667pt;}
.y60{bottom:509.328000pt;}
.y140{bottom:509.766667pt;}
.ya0{bottom:509.845333pt;}
.y10f{bottom:511.058667pt;}
.ybb{bottom:511.205333pt;}
.y3c{bottom:520.034667pt;}
.y16d{bottom:520.413333pt;}
.y18{bottom:521.322667pt;}
.y5f{bottom:523.704000pt;}
.y13f{bottom:524.142667pt;}
.y9f{bottom:524.221333pt;}
.y10e{bottom:525.434667pt;}
.ye1{bottom:530.348000pt;}
.y3b{bottom:534.410667pt;}
.y17{bottom:535.698667pt;}
.yba{bottom:538.764000pt;}
.y16c{bottom:548.093333pt;}
.y3a{bottom:548.786667pt;}
.y13e{bottom:549.694667pt;}
.y16{bottom:550.074667pt;}
.y10d{bottom:551.734667pt;}
.y5e{bottom:553.812000pt;}
.y9e{bottom:556.170667pt;}
.y16b{bottom:562.469333pt;}
.y39{bottom:563.162667pt;}
.y13d{bottom:564.070667pt;}
.y15{bottom:564.450667pt;}
.y10c{bottom:566.110667pt;}
.y9d{bottom:572.010667pt;}
.y16a{bottom:576.845333pt;}
.y38{bottom:577.538667pt;}
.y13c{bottom:578.446667pt;}
.y14{bottom:578.826667pt;}
.y10b{bottom:580.488000pt;}
.y5d{bottom:586.266667pt;}
.y169{bottom:591.221333pt;}
.y37{bottom:591.914667pt;}
.y13b{bottom:592.822667pt;}
.y13{bottom:593.202667pt;}
.y36{bottom:606.292000pt;}
.y10a{bottom:606.788000pt;}
.y9c{bottom:608.520000pt;}
.y13a{bottom:618.374667pt;}
.y168{bottom:618.902667pt;}
.y12{bottom:620.668000pt;}
.y109{bottom:621.164000pt;}
.y9b{bottom:622.897333pt;}
.y139{bottom:632.750667pt;}
.y167{bottom:633.278667pt;}
.y108{bottom:635.540000pt;}
.y9a{bottom:637.273333pt;}
.y138{bottom:647.126667pt;}
.y166{bottom:647.654667pt;}
.y107{bottom:649.916000pt;}
.y137{bottom:661.502667pt;}
.y99{bottom:662.240000pt;}
.y11{bottom:664.034667pt;}
.y165{bottom:675.336000pt;}
.y106{bottom:676.216000pt;}
.y98{bottom:676.616000pt;}
.y10{bottom:678.410667pt;}
.y136{bottom:687.053333pt;}
.y164{bottom:689.712000pt;}
.y105{bottom:690.592000pt;}
.y97{bottom:690.992000pt;}
.yf{bottom:692.786667pt;}
.y135{bottom:701.429333pt;}
.y163{bottom:704.088000pt;}
.y104{bottom:704.968000pt;}
.y96{bottom:705.368000pt;}
.ye{bottom:707.162667pt;}
.y134{bottom:715.805333pt;}
.y162{bottom:718.464000pt;}
.y103{bottom:719.344000pt;}
.y95{bottom:719.744000pt;}
.yd{bottom:721.538667pt;}
.y133{bottom:730.181333pt;}
.y161{bottom:732.840000pt;}
.y94{bottom:734.120000pt;}
.yc{bottom:735.914667pt;}
.y102{bottom:745.645333pt;}
.y160{bottom:747.216000pt;}
.ye0{bottom:747.474667pt;}
.yb{bottom:750.290667pt;}
.yd6{bottom:751.961333pt;}
.y132{bottom:755.733333pt;}
.y101{bottom:760.021333pt;}
.ya{bottom:764.666667pt;}
.y93{bottom:768.412000pt;}
.y131{bottom:770.109333pt;}
.y100{bottom:774.397333pt;}
.y15f{bottom:774.897333pt;}
.yb9{bottom:777.426667pt;}
.y9{bottom:779.044000pt;}
.y130{bottom:784.485333pt;}
.yff{bottom:788.773333pt;}
.y15e{bottom:789.273333pt;}
.yb8{bottom:792.038667pt;}
.y8{bottom:793.420000pt;}
.y12f{bottom:798.861333pt;}
.yfe{bottom:803.149333pt;}
.y15d{bottom:803.649333pt;}
.y5c{bottom:807.220000pt;}
.y92{bottom:810.061333pt;}
.y12e{bottom:813.237333pt;}
.y7{bottom:822.172000pt;}
.y91{bottom:824.673333pt;}
.yfd{bottom:829.449333pt;}
.y15c{bottom:831.329333pt;}
.y12d{bottom:838.789333pt;}
.yfc{bottom:843.825333pt;}
.y15b{bottom:845.705333pt;}
.y72{bottom:848.185333pt;}
.y12c{bottom:853.165333pt;}
.yfb{bottom:858.201333pt;}
.y15a{bottom:860.081333pt;}
.y6{bottom:867.512000pt;}
.y12b{bottom:867.541333pt;}
.y187{bottom:870.008000pt;}
.yfa{bottom:884.501333pt;}
.y159{bottom:887.762667pt;}
.y186{bottom:892.725333pt;}
.y12a{bottom:893.093333pt;}
.y18c{bottom:893.232000pt;}
.yf9{bottom:898.877333pt;}
.y158{bottom:902.138667pt;}
.y185{bottom:907.102667pt;}
.y129{bottom:907.469333pt;}
.y18b{bottom:907.608000pt;}
.yf8{bottom:913.253333pt;}
.y5{bottom:915.672000pt;}
.y157{bottom:916.514667pt;}
.y184{bottom:921.478667pt;}
.y128{bottom:921.845333pt;}
.y18a{bottom:921.984000pt;}
.yf7{bottom:927.629333pt;}
.y156{bottom:930.890667pt;}
.y4{bottom:930.929333pt;}
.y183{bottom:935.854667pt;}
.y127{bottom:936.221333pt;}
.y189{bottom:936.360000pt;}
.yf6{bottom:942.005333pt;}
.y182{bottom:950.230667pt;}
.y188{bottom:950.736000pt;}
.y3{bottom:955.484000pt;}
.yf5{bottom:956.382667pt;}
.ydf{bottom:958.572000pt;}
.y126{bottom:961.773333pt;}
.yf4{bottom:970.758667pt;}
.yde{bottom:972.948000pt;}
.y125{bottom:976.149333pt;}
.yf3{bottom:985.134667pt;}
.ydd{bottom:987.324000pt;}
.y2{bottom:997.505333pt;}
.ydc{bottom:1001.700000pt;}
.ydb{bottom:1016.076000pt;}
.y1{bottom:1016.156000pt;}
.y58{bottom:1064.919808pt;}
.h7{height:14.825440pt;}
.h15{height:16.954300pt;}
.h12{height:21.003088pt;}
.h14{height:21.053698pt;}
.h8{height:21.935275pt;}
.h4{height:23.670869pt;}
.h16{height:24.935682pt;}
.h11{height:25.304925pt;}
.hb{height:25.813467pt;}
.hd{height:29.244587pt;}
.h9{height:29.499627pt;}
.he{height:32.899243pt;}
.h1a{height:33.567173pt;}
.h6{height:33.812907pt;}
.h5{height:34.009493pt;}
.ha{height:34.058240pt;}
.h10{height:35.378560pt;}
.h13{height:37.436125pt;}
.h17{height:41.516640pt;}
.h3{height:43.985536pt;}
.h2{height:44.121920pt;}
.hc{height:44.354167pt;}
.h19{height:66.244907pt;}
.h18{height:104.876640pt;}
.hf{height:179.845040pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:17.797333pt;}
.w5{width:321.247520pt;}
.w3{width:501.548000pt;}
.w2{width:608.906667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:7.104536pt;}
.x29{left:10.890482pt;}
.x11{left:17.797333pt;}
.x17{left:25.554070pt;}
.x1a{left:28.455448pt;}
.x19{left:29.799990pt;}
.x2d{left:31.134422pt;}
.x26{left:32.665986pt;}
.x32{left:34.131839pt;}
.x1b{left:38.332267pt;}
.x33{left:44.615218pt;}
.x1c{left:46.045688pt;}
.x28{left:58.783448pt;}
.x2c{left:60.941791pt;}
.x2a{left:63.322539pt;}
.x27{left:65.809435pt;}
.x2b{left:67.629115pt;}
.x7{left:75.590667pt;}
.x15{left:84.308000pt;}
.x9{left:86.217333pt;}
.x4e{left:87.877333pt;}
.xc{left:92.397339pt;}
.x1f{left:93.407915pt;}
.x2f{left:95.227595pt;}
.x1e{left:97.699327pt;}
.x1d{left:104.406870pt;}
.x13{left:107.809333pt;}
.x44{left:111.880000pt;}
.x12{left:125.800000pt;}
.x3c{left:129.894667pt;}
.x14{left:141.701333pt;}
.xe{left:146.076660pt;}
.xd{left:147.920000pt;}
.x47{left:149.001333pt;}
.xf{left:151.458667pt;}
.x2e{left:156.065563pt;}
.x43{left:158.870667pt;}
.x31{left:164.289506pt;}
.x5{left:165.520000pt;}
.x16{left:169.858667pt;}
.x3d{left:174.249333pt;}
.x8{left:176.377333pt;}
.x20{left:177.643935pt;}
.x46{left:179.080000pt;}
.x45{left:192.665333pt;}
.x30{left:193.793595pt;}
.x2{left:210.096000pt;}
.x6{left:216.401333pt;}
.x3{left:223.108000pt;}
.x18{left:237.440642pt;}
.x24{left:241.565250pt;}
.x1{left:248.966667pt;}
.x22{left:252.933195pt;}
.x21{left:261.349215pt;}
.x4{left:269.258667pt;}
.x23{left:297.889400pt;}
.xa{left:408.189333pt;}
.x41{left:412.181333pt;}
.x34{left:413.772000pt;}
.x3b{left:418.816000pt;}
.x49{left:420.476000pt;}
.x3a{left:474.730667pt;}
.x4a{left:486.805333pt;}
.x3e{left:490.540000pt;}
.x3f{left:503.685333pt;}
.x40{left:505.342667pt;}
.x50{left:506.310667pt;}
.x37{left:516.761333pt;}
.x38{left:522.766667pt;}
.x35{left:525.264000pt;}
.x48{left:534.606667pt;}
.x36{left:541.068000pt;}
.x42{left:542.396000pt;}
.x39{left:556.145333pt;}
.x4c{left:569.809333pt;}
.x4d{left:606.657333pt;}
.x4b{left:627.188000pt;}
.x4f{left:635.608000pt;}
.x10{left:700.313151pt;}
.xb{left:702.064000pt;}
}




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