
    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_7544985e9416e84447e931e6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_5bcdf349dc6a9fa9bdd37870.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_79dd1dab68c6de322675d3ed.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_f34d4fef62df066667394a3c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a214994a53f3f58378e46b00.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_59f4c05901482cd341649a64.woff2')format("woff");}.ff6{font-family:ff6;line-height:2.979492;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_ce97417048fabdc35900add1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.238106,0.000000,-0.076194,0.238106,0,0);-ms-transform:matrix(0.238106,0.000000,-0.076194,0.238106,0,0);-webkit-transform:matrix(0.238106,0.000000,-0.076194,0.238106,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-50.649703px;}
.v9{vertical-align:-36.286354px;}
.v3{vertical-align:-34.774423px;}
.vc{vertical-align:-25.709134px;}
.v5{vertical-align:-15.875280px;}
.v7{vertical-align:-11.339486px;}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:2.880000px;}
.v11{vertical-align:5.760000px;}
.v8{vertical-align:9.827554px;}
.v2{vertical-align:21.600000px;}
.va{vertical-align:29.526000px;}
.v6{vertical-align:41.760000px;}
.v10{vertical-align:47.514000px;}
.ve{vertical-align:69.840000px;}
.vd{vertical-align:84.960000px;}
.vf{vertical-align:124.560000px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.002400px;}
.lse{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.078000px;}
.ls38{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.210000px;}
.lsd{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.222000px;}
.ls15{letter-spacing:0.354000px;}
.ls3{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.582000px;}
.ls2e{letter-spacing:2.748565px;}
.ls2b{letter-spacing:2.757000px;}
.ls1b{letter-spacing:3.225454px;}
.ls23{letter-spacing:3.231753px;}
.ls29{letter-spacing:3.522170px;}
.ls2c{letter-spacing:4.157811px;}
.ls30{letter-spacing:4.233408px;}
.ls1f{letter-spacing:4.605091px;}
.ls32{letter-spacing:4.611391px;}
.ls21{letter-spacing:4.617691px;}
.ls19{letter-spacing:4.762584px;}
.ls26{letter-spacing:4.983074px;}
.ls25{letter-spacing:4.989374px;}
.ls18{letter-spacing:5.004493px;}
.ls33{letter-spacing:5.334000px;}
.ls1e{letter-spacing:5.367357px;}
.ls22{letter-spacing:6.048000px;}
.ls36{letter-spacing:11.730000px;}
.ls2a{letter-spacing:12.837000px;}
.ls35{letter-spacing:17.634000px;}
.ls27{letter-spacing:18.000000px;}
.ls1a{letter-spacing:18.216000px;}
.ls14{letter-spacing:18.288000px;}
.ls13{letter-spacing:18.720000px;}
.lsa{letter-spacing:19.800000px;}
.ls5{letter-spacing:20.160000px;}
.ls6{letter-spacing:20.166000px;}
.ls12{letter-spacing:20.874000px;}
.ls34{letter-spacing:24.846000px;}
.lsb{letter-spacing:27.432000px;}
.ls2{letter-spacing:31.676400px;}
.ls20{letter-spacing:35.562000px;}
.ls7{letter-spacing:39.960000px;}
.ls8{letter-spacing:40.320000px;}
.ls37{letter-spacing:43.704000px;}
.ls16{letter-spacing:45.366000px;}
.ls31{letter-spacing:47.610091px;}
.lsc{letter-spacing:60.476400px;}
.ls1c{letter-spacing:61.993283px;}
.ls1{letter-spacing:64.806000px;}
.ls2d{letter-spacing:68.514748px;}
.ls28{letter-spacing:68.771272px;}
.ls24{letter-spacing:75.743544px;}
.ls17{letter-spacing:85.776280px;}
.ls2f{letter-spacing:86.780454px;}
.ls1d{letter-spacing:122.984282px;}
.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;}
}
.wsc{word-spacing:-55.944000px;}
.ws85{word-spacing:-48.528000px;}
.wsb2{word-spacing:-47.376000px;}
.ws11c{word-spacing:-43.200000px;}
.ws26{word-spacing:-40.536000px;}
.wsd5{word-spacing:-39.075300px;}
.ws27{word-spacing:-38.662200px;}
.ws6b{word-spacing:-38.660400px;}
.wsf8{word-spacing:-38.658600px;}
.ws6{word-spacing:-38.657700px;}
.wsa{word-spacing:-38.650500px;}
.ws5{word-spacing:-38.647800px;}
.wsb{word-spacing:-38.440800px;}
.ws3{word-spacing:-38.374200px;}
.wsa6{word-spacing:-38.368800px;}
.wsa5{word-spacing:-38.365200px;}
.wse1{word-spacing:-38.364300px;}
.ws9{word-spacing:-38.304600px;}
.wse2{word-spacing:-38.010600px;}
.wse5{word-spacing:-38.006100px;}
.ws0{word-spacing:-37.944000px;}
.wsd{word-spacing:-37.939500px;}
.ws4{word-spacing:-37.938600px;}
.ws2{word-spacing:-37.931400px;}
.wsf{word-spacing:-37.929600px;}
.wse7{word-spacing:-37.290600px;}
.wse3{word-spacing:-37.286100px;}
.wsd4{word-spacing:-35.484300px;}
.wsb0{word-spacing:-35.234302px;}
.wsac{word-spacing:-33.558000px;}
.ws8{word-spacing:-33.547800px;}
.ws24{word-spacing:-33.107400px;}
.wsa8{word-spacing:-31.543200px;}
.ws9a{word-spacing:-29.015100px;}
.wsba{word-spacing:-27.438600px;}
.wsa7{word-spacing:-26.348400px;}
.ws6a{word-spacing:-23.452200px;}
.wsf6{word-spacing:-23.249700px;}
.wsb7{word-spacing:-23.242800px;}
.ws9f{word-spacing:-23.242500px;}
.ws14{word-spacing:-23.238900px;}
.wscc{word-spacing:-23.229000px;}
.ws7d{word-spacing:-23.178600px;}
.ws57{word-spacing:-23.107500px;}
.ws10a{word-spacing:-23.036400px;}
.ws15{word-spacing:-23.033700px;}
.wsf4{word-spacing:-22.896000px;}
.wsbb{word-spacing:-22.895700px;}
.wsec{word-spacing:-22.894200px;}
.ws5b{word-spacing:-22.893000px;}
.ws35{word-spacing:-22.892400px;}
.ws45{word-spacing:-22.891500px;}
.wsb9{word-spacing:-22.891200px;}
.ws5f{word-spacing:-22.890300px;}
.wse9{word-spacing:-22.889700px;}
.ws76{word-spacing:-22.888500px;}
.ws108{word-spacing:-22.887000px;}
.wsc2{word-spacing:-22.886100px;}
.wse0{word-spacing:-22.885800px;}
.ws49{word-spacing:-22.885200px;}
.wsaf{word-spacing:-22.883700px;}
.wsaa{word-spacing:-22.883400px;}
.ws3a{word-spacing:-22.882500px;}
.wsbe{word-spacing:-22.881600px;}
.ws97{word-spacing:-22.879800px;}
.ws1c{word-spacing:-22.876200px;}
.wsb4{word-spacing:-22.874400px;}
.wsd9{word-spacing:-22.873500px;}
.wsa4{word-spacing:-22.865400px;}
.ws23{word-spacing:-22.754400px;}
.wsb8{word-spacing:-22.749300px;}
.ws17{word-spacing:-22.745700px;}
.ws1f{word-spacing:-22.744500px;}
.wsd3{word-spacing:-22.740300px;}
.wse{word-spacing:-22.536000px;}
.wsc1{word-spacing:-22.535100px;}
.ws112{word-spacing:-22.532400px;}
.ws10c{word-spacing:-22.531500px;}
.ws9e{word-spacing:-22.530600px;}
.wse6{word-spacing:-22.527300px;}
.ws10d{word-spacing:-22.518000px;}
.ws9d{word-spacing:-22.172400px;}
.ws34{word-spacing:-22.166700px;}
.wsea{word-spacing:-22.160700px;}
.ws99{word-spacing:-21.816600px;}
.ws109{word-spacing:-21.809700px;}
.ws36{word-spacing:-21.807900px;}
.ws59{word-spacing:-21.798900px;}
.ws30{word-spacing:-21.454800px;}
.wscb{word-spacing:-21.447000px;}
.wsb6{word-spacing:-21.442500px;}
.wsb5{word-spacing:-21.438000px;}
.ws21{word-spacing:-21.312000px;}
.ws9b{word-spacing:-21.309300px;}
.ws67{word-spacing:-21.305700px;}
.ws8a{word-spacing:-21.094800px;}
.ws8d{word-spacing:-21.091500px;}
.ws89{word-spacing:-21.090600px;}
.ws8b{word-spacing:-21.081600px;}
.ws88{word-spacing:-20.731500px;}
.wsed{word-spacing:-20.727000px;}
.wseb{word-spacing:-20.726100px;}
.wsc9{word-spacing:-20.721600px;}
.ws8e{word-spacing:-20.586300px;}
.wsad{word-spacing:-20.373300px;}
.ws47{word-spacing:-20.224800px;}
.wsae{word-spacing:-20.016000px;}
.ws5d{word-spacing:-19.866600px;}
.ws98{word-spacing:-19.656000px;}
.ws100{word-spacing:-19.645500px;}
.ws2a{word-spacing:-19.289700px;}
.wsd8{word-spacing:-19.081500px;}
.ws117{word-spacing:-19.080000px;}
.wsdb{word-spacing:-18.924300px;}
.ws84{word-spacing:-18.564300px;}
.ws7{word-spacing:-18.472500px;}
.ws25{word-spacing:-18.213000px;}
.wse8{word-spacing:-17.854200px;}
.ws7e{word-spacing:-17.848800px;}
.ws28{word-spacing:-17.847900px;}
.ws87{word-spacing:-17.712000px;}
.ws4e{word-spacing:-17.702100px;}
.ws107{word-spacing:-17.494800px;}
.ws86{word-spacing:-17.493300px;}
.ws60{word-spacing:-17.493000px;}
.ws39{word-spacing:-16.054200px;}
.ws22{word-spacing:-16.052400px;}
.wsce{word-spacing:-16.044300px;}
.wsd1{word-spacing:-15.688500px;}
.wsc0{word-spacing:-15.684300px;}
.ws5c{word-spacing:-15.679800px;}
.ws111{word-spacing:-15.550200px;}
.ws3e{word-spacing:-15.533400px;}
.ws6e{word-spacing:-15.533100px;}
.wsf7{word-spacing:-15.192600px;}
.wsa0{word-spacing:-14.975100px;}
.ws2c{word-spacing:-14.967900px;}
.ws48{word-spacing:-14.967000px;}
.ws110{word-spacing:-14.830200px;}
.wsd0{word-spacing:-14.616000px;}
.wsd7{word-spacing:-14.391000px;}
.ws5a{word-spacing:-14.250300px;}
.wsfe{word-spacing:-14.249700px;}
.ws2b{word-spacing:-14.244300px;}
.ws61{word-spacing:-14.110200px;}
.ws4c{word-spacing:-14.102100px;}
.wsff{word-spacing:-13.526100px;}
.ws8f{word-spacing:-13.521600px;}
.ws104{word-spacing:-13.519800px;}
.ws90{word-spacing:-13.396200px;}
.wsdc{word-spacing:-13.176000px;}
.wsbc{word-spacing:-13.088700px;}
.ws9c{word-spacing:-12.823200px;}
.ws53{word-spacing:-12.798000px;}
.wsbd{word-spacing:-12.671100px;}
.ws103{word-spacing:-12.456000px;}
.ws29{word-spacing:-12.098400px;}
.wsd6{word-spacing:-11.504700px;}
.ws73{word-spacing:-11.370600px;}
.wsda{word-spacing:-11.368500px;}
.ws5e{word-spacing:-11.359800px;}
.ws4d{word-spacing:-11.224200px;}
.ws42{word-spacing:-10.660200px;}
.ws31{word-spacing:-10.654200px;}
.ws3d{word-spacing:-10.641600px;}
.ws2d{word-spacing:-9.938400px;}
.wsb3{word-spacing:-9.936000px;}
.ws79{word-spacing:-9.924300px;}
.ws10e{word-spacing:-9.572400px;}
.ws118{word-spacing:-9.570000px;}
.ws115{word-spacing:-8.856000px;}
.wsca{word-spacing:-8.733000px;}
.ws81{word-spacing:-8.481600px;}
.wsdd{word-spacing:-8.136000px;}
.wsf9{word-spacing:-8.129700px;}
.ws7a{word-spacing:-7.411500px;}
.wsa1{word-spacing:-7.044900px;}
.ws16{word-spacing:-6.696000px;}
.wsd2{word-spacing:-6.690600px;}
.ws68{word-spacing:-5.971500px;}
.ws119{word-spacing:-5.885100px;}
.ws64{word-spacing:-5.620200px;}
.wsde{word-spacing:-4.893900px;}
.ws7f{word-spacing:-4.888800px;}
.ws55{word-spacing:-4.878000px;}
.ws4a{word-spacing:-4.536000px;}
.ws7b{word-spacing:-4.530600px;}
.ws93{word-spacing:-4.455900px;}
.ws95{word-spacing:-4.169700px;}
.wsc7{word-spacing:-4.165200px;}
.ws44{word-spacing:-4.159800px;}
.wsc5{word-spacing:-4.158900px;}
.ws96{word-spacing:-4.028100px;}
.ws32{word-spacing:-3.816000px;}
.ws92{word-spacing:-3.813300px;}
.ws91{word-spacing:-3.085200px;}
.wsf2{word-spacing:-2.733000px;}
.ws20{word-spacing:-2.588400px;}
.wsf0{word-spacing:-2.583600px;}
.ws8c{word-spacing:-1.284300px;}
.ws106{word-spacing:-1.135800px;}
.ws72{word-spacing:-0.931500px;}
.ws101{word-spacing:-0.928800px;}
.ws46{word-spacing:-0.568500px;}
.wsc3{word-spacing:-0.564000px;}
.ws40{word-spacing:-0.560700px;}
.wsef{word-spacing:-0.429900px;}
.ws3b{word-spacing:-0.423000px;}
.wsee{word-spacing:-0.222000px;}
.wsab{word-spacing:0.000000px;}
.wsc4{word-spacing:0.158400px;}
.ws13{word-spacing:0.159300px;}
.ws6f{word-spacing:0.726300px;}
.ws11a{word-spacing:1.009800px;}
.ws3c{word-spacing:1.224000px;}
.ws74{word-spacing:1.583400px;}
.ws33{word-spacing:1.593000px;}
.wsfd{word-spacing:1.599300px;}
.wsfc{word-spacing:1.938000px;}
.wscf{word-spacing:2.067000px;}
.ws10b{word-spacing:2.449800px;}
.wsfb{word-spacing:2.664000px;}
.ws51{word-spacing:3.024000px;}
.wscd{word-spacing:3.032400px;}
.wsa2{word-spacing:3.390000px;}
.ws2f{word-spacing:3.753300px;}
.wsa9{word-spacing:3.900900px;}
.wsbf{word-spacing:4.087800px;}
.ws71{word-spacing:4.467900px;}
.ws102{word-spacing:4.473900px;}
.wsf5{word-spacing:4.474800px;}
.ws113{word-spacing:4.824000px;}
.ws94{word-spacing:5.176800px;}
.ws58{word-spacing:5.908500px;}
.ws80{word-spacing:5.911200px;}
.ws18{word-spacing:5.912100px;}
.ws7c{word-spacing:6.269400px;}
.ws62{word-spacing:6.280200px;}
.ws70{word-spacing:7.353300px;}
.ws10{word-spacing:7.710300px;}
.wsdf{word-spacing:8.783400px;}
.ws65{word-spacing:8.938800px;}
.ws63{word-spacing:9.501600px;}
.ws38{word-spacing:9.864000px;}
.ws37{word-spacing:10.957500px;}
.wsf3{word-spacing:11.450700px;}
.ws12{word-spacing:12.392400px;}
.ws3f{word-spacing:13.105800px;}
.ws66{word-spacing:13.114800px;}
.ws4f{word-spacing:14.549400px;}
.ws1d{word-spacing:15.120000px;}
.ws2e{word-spacing:15.269400px;}
.ws1b{word-spacing:16.135200px;}
.ws78{word-spacing:16.498800px;}
.ws114{word-spacing:16.717500px;}
.ws43{word-spacing:18.158700px;}
.ws50{word-spacing:18.504000px;}
.ws6c{word-spacing:18.524700px;}
.ws4b{word-spacing:19.939800px;}
.ws77{word-spacing:22.897800px;}
.ws83{word-spacing:23.195700px;}
.ws82{word-spacing:23.203500px;}
.ws105{word-spacing:23.909400px;}
.wsc6{word-spacing:24.387000px;}
.ws54{word-spacing:26.784000px;}
.ws52{word-spacing:26.808900px;}
.wsf1{word-spacing:27.987000px;}
.ws19{word-spacing:29.678400px;}
.ws10f{word-spacing:30.528000px;}
.ws11{word-spacing:30.547800px;}
.ws1e{word-spacing:30.744000px;}
.wse4{word-spacing:31.828500px;}
.ws6d{word-spacing:34.360200px;}
.ws1a{word-spacing:35.431800px;}
.ws75{word-spacing:37.603500px;}
.ws116{word-spacing:37.938000px;}
.ws69{word-spacing:46.604700px;}
.ws56{word-spacing:49.468500px;}
.ws41{word-spacing:50.984100px;}
.wsa3{word-spacing:56.029500px;}
.ws11b{word-spacing:61.704000px;}
.wsb1{word-spacing:343.722000px;}
.wsc8{word-spacing:363.757800px;}
.wsfa{word-spacing:364.478400px;}
.ws1{word-spacing:455.092800px;}
._2d{margin-left:-69.120000px;}
._2f{margin-left:-57.003600px;}
._2e{margin-left:-12.246000px;}
._8{margin-left:-2.358600px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._16{width:2.396100px;}
._31{width:11.229000px;}
._30{width:16.200000px;}
._4{width:18.775800px;}
._d{width:20.592000px;}
._1c{width:21.723600px;}
._2b{width:22.728600px;}
._f{width:24.136800px;}
._e{width:25.670400px;}
._11{width:27.485700px;}
._2a{width:28.644000px;}
._10{width:30.372000px;}
._12{width:31.610400px;}
._13{width:32.778600px;}
._34{width:33.805200px;}
._27{width:34.843500px;}
._1{width:36.000000px;}
._28{width:37.019400px;}
._1d{width:38.032800px;}
._32{width:39.506400px;}
._29{width:40.599300px;}
._7{width:41.977500px;}
._15{width:43.551000px;}
._20{width:44.656800px;}
._14{width:45.782700px;}
._24{width:47.515500px;}
._9{width:48.528600px;}
._5{width:49.745700px;}
._18{width:51.444600px;}
._17{width:52.907100px;}
._6{width:54.000000px;}
._1f{width:56.265600px;}
._c{width:58.460400px;}
._1b{width:59.819400px;}
._1e{width:61.539000px;}
._26{width:65.368200px;}
._22{width:68.655000px;}
._a{width:71.337600px;}
._36{width:72.576000px;}
._b{width:77.680200px;}
._25{width:79.321800px;}
._35{width:80.563200px;}
._19{width:84.713100px;}
._37{width:85.875900px;}
._21{width:88.266000px;}
._23{width:91.069500px;}
._1a{width:92.713800px;}
._2c{width:97.831800px;}
._38{width:103.824000px;}
._33{width:405.778200px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.700000px;}
.fs6{font-size:43.783014px;}
.fs2{font-size:46.800000px;}
.fs4{font-size:51.000000px;}
.fs5{font-size:53.547571px;}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:75.596571px;}
.y0{bottom:0.000000px;}
.y7c{bottom:3.750000px;}
.y7e{bottom:3.780000px;}
.y80{bottom:3.811500px;}
.y82{bottom:3.840000px;}
.y84{bottom:3.871500px;}
.y7b{bottom:3.900000px;}
.yf3{bottom:3.945000px;}
.y134{bottom:3.990000px;}
.y7{bottom:4.471500px;}
.y87{bottom:4.575000px;}
.y79{bottom:4.650000px;}
.yf9{bottom:4.725000px;}
.yfb{bottom:4.755000px;}
.y102{bottom:4.786500px;}
.y13a{bottom:4.800000px;}
.y127{bottom:4.830000px;}
.yf7{bottom:4.875000px;}
.yf0{bottom:4.890000px;}
.y11b{bottom:5.580000px;}
.yfd{bottom:5.611500px;}
.y119{bottom:5.625000px;}
.y136{bottom:5.640000px;}
.y13d{bottom:5.655000px;}
.y138{bottom:5.670000px;}
.y106{bottom:5.671500px;}
.y12a{bottom:5.686500px;}
.y13b{bottom:5.700000px;}
.y128{bottom:5.730000px;}
.y116{bottom:5.746500px;}
.y108{bottom:5.775000px;}
.y11c{bottom:6.480000px;}
.y13e{bottom:6.555000px;}
.y12b{bottom:6.586500px;}
.y131{bottom:14.250000px;}
.y112{bottom:14.280000px;}
.yf5{bottom:14.386500px;}
.y104{bottom:24.540000px;}
.yf2{bottom:24.646500px;}
.y133{bottom:24.690000px;}
.y114{bottom:24.720000px;}
.y78{bottom:25.350000px;}
.yee{bottom:25.905000px;}
.y12e{bottom:25.950000px;}
.y100{bottom:25.980000px;}
.yf4{bottom:34.905000px;}
.y130{bottom:34.950000px;}
.y111{bottom:34.980000px;}
.y10e{bottom:36.240000px;}
.yf1{bottom:45.165000px;}
.y132{bottom:45.211500px;}
.y103{bottom:45.240000px;}
.yff{bottom:46.500000px;}
.yed{bottom:46.605000px;}
.y12d{bottom:46.650000px;}
.y110{bottom:55.680000px;}
.y10d{bottom:56.940000px;}
.y113{bottom:65.940000px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y2c{bottom:99.975000px;}
.y107{bottom:119.400000px;}
.y2b{bottom:120.675000px;}
.y6b{bottom:121.936500px;}
.y125{bottom:132.736500px;}
.y89{bottom:135.615000px;}
.y124{bottom:138.136500px;}
.yd2{bottom:138.315000px;}
.y2a{bottom:141.375000px;}
.y6a{bottom:142.636500px;}
.y105{bottom:142.725000px;}
.y55{bottom:143.536500px;}
.y167{bottom:143.715000px;}
.y88{bottom:156.315000px;}
.yd1{bottom:158.475000px;}
.y29{bottom:162.075000px;}
.y69{bottom:163.336500px;}
.ycf{bottom:163.696500px;}
.yd0{bottom:163.875000px;}
.y54{bottom:164.236500px;}
.y166{bottom:164.415000px;}
.yfe{bottom:165.975000px;}
.y123{bottom:179.175000px;}
.y28{bottom:182.775000px;}
.y68{bottom:184.036500px;}
.yce{bottom:184.575000px;}
.y53{bottom:184.936500px;}
.y27{bottom:203.475000px;}
.y67{bottom:204.736500px;}
.y52{bottom:205.636500px;}
.y165{bottom:206.175000px;}
.y26{bottom:224.175000px;}
.y51{bottom:226.336500px;}
.ycc{bottom:226.515000px;}
.ycd{bottom:226.696500px;}
.y164{bottom:226.875000px;}
.y101{bottom:228.750000px;}
.y86{bottom:235.800000px;}
.y25{bottom:244.875000px;}
.y66{bottom:246.496500px;}
.y50{bottom:247.036500px;}
.y163{bottom:247.575000px;}
.y85{bottom:258.075000px;}
.y24{bottom:265.575000px;}
.y65{bottom:267.196500px;}
.yca{bottom:267.555000px;}
.y4f{bottom:267.736500px;}
.ycb{bottom:272.775000px;}
.yc9{bottom:272.955000px;}
.y83{bottom:279.525000px;}
.yeb{bottom:279.615000px;}
.y64{bottom:287.896500px;}
.y122{bottom:288.795000px;}
.y162{bottom:289.155000px;}
.y81{bottom:300.975000px;}
.y23{bottom:307.336500px;}
.y63{bottom:308.596500px;}
.y4e{bottom:309.496500px;}
.y161{bottom:309.855000px;}
.yc8{bottom:314.896500px;}
.y7f{bottom:322.425000px;}
.y62{bottom:329.295000px;}
.y4d{bottom:330.196500px;}
.y121{bottom:330.375000px;}
.y160{bottom:330.555000px;}
.yc7{bottom:335.596500px;}
.yea{bottom:341.715000px;}
.y7d{bottom:343.875000px;}
.y22{bottom:349.096500px;}
.y61{bottom:349.996500px;}
.y4c{bottom:350.896500px;}
.y120{bottom:351.075000px;}
.y77{bottom:365.325000px;}
.y21{bottom:369.795000px;}
.y60{bottom:370.696500px;}
.y4b{bottom:371.596500px;}
.y15f{bottom:372.315000px;}
.yc6{bottom:376.455000px;}
.yc5{bottom:381.855000px;}
.y7a{bottom:386.775000px;}
.yc2{bottom:388.515000px;}
.y5f{bottom:391.396500px;}
.y4a{bottom:392.295000px;}
.y11f{bottom:392.836500px;}
.y15e{bottom:393.015000px;}
.yc1{bottom:393.915000px;}
.yc4{bottom:404.715000px;}
.yc3{bottom:410.115000px;}
.y20{bottom:411.375000px;}
.y5e{bottom:412.096500px;}
.y49{bottom:412.996500px;}
.y15d{bottom:413.715000px;}
.ye9{bottom:425.055000px;}
.y1f{bottom:432.075000px;}
.y5d{bottom:432.795000px;}
.y76{bottom:432.975000px;}
.y48{bottom:433.696500px;}
.y11e{bottom:434.596500px;}
.ye8{bottom:445.755000px;}
.yc0{bottom:449.355000px;}
.y1e{bottom:452.775000px;}
.y5c{bottom:453.496500px;}
.y47{bottom:454.396500px;}
.y11d{bottom:455.295000px;}
.y15c{bottom:455.475000px;}
.ye7{bottom:466.455000px;}
.y1d{bottom:473.475000px;}
.y15b{bottom:476.175000px;}
.ybf{bottom:487.515000px;}
.yfc{bottom:488.925000px;}
.yb8{bottom:493.996500px;}
.y46{bottom:495.975000px;}
.yb7{bottom:499.396500px;}
.yb9{bottom:510.375000px;}
.ybd{bottom:511.815000px;}
.yfa{bottom:513.000000px;}
.y1c{bottom:515.236500px;}
.ybb{bottom:516.315000px;}
.y75{bottom:516.496500px;}
.y45{bottom:516.675000px;}
.ybe{bottom:517.036500px;}
.ybc{bottom:517.215000px;}
.y15a{bottom:517.755000px;}
.yba{bottom:525.675000px;}
.y11a{bottom:534.675000px;}
.y1b{bottom:535.936500px;}
.yf8{bottom:536.250000px;}
.y5b{bottom:536.836500px;}
.y74{bottom:537.195000px;}
.y44{bottom:537.375000px;}
.y73{bottom:557.896500px;}
.y43{bottom:558.075000px;}
.y118{bottom:558.750000px;}
.yf6{bottom:559.500000px;}
.y159{bottom:559.515000px;}
.yb6{bottom:565.275000px;}
.yb2{bottom:568.875000px;}
.yb1{bottom:574.275000px;}
.y1a{bottom:577.695000px;}
.y72{bottom:578.596500px;}
.y42{bottom:578.775000px;}
.y158{bottom:580.215000px;}
.yb3{bottom:581.295000px;}
.y117{bottom:582.000000px;}
.yec{bottom:582.750000px;}
.yb5{bottom:585.795000px;}
.yb4{bottom:591.915000px;}
.y19{bottom:598.396500px;}
.y71{bottom:599.295000px;}
.yb0{bottom:600.736500px;}
.y157{bottom:600.915000px;}
.yae{bottom:603.255000px;}
.yaf{bottom:603.436500px;}
.y115{bottom:605.250000px;}
.y18{bottom:619.096500px;}
.y5a{bottom:620.175000px;}
.y41{bottom:620.536500px;}
.y156{bottom:621.615000px;}
.y10c{bottom:628.575000px;}
.y17{bottom:639.795000px;}
.y59{bottom:640.875000px;}
.y40{bottom:641.236500px;}
.y155{bottom:642.315000px;}
.yad{bottom:645.375000px;}
.yef{bottom:645.525000px;}
.y16{bottom:660.496500px;}
.y58{bottom:661.575000px;}
.y3f{bottom:661.936500px;}
.y154{bottom:663.015000px;}
.ye6{bottom:672.736500px;}
.y57{bottom:682.275000px;}
.y3e{bottom:682.636500px;}
.yab{bottom:683.355000px;}
.y153{bottom:683.715000px;}
.ya7{bottom:686.955000px;}
.yac{bottom:692.175000px;}
.ya6{bottom:692.355000px;}
.ye5{bottom:693.436500px;}
.ya8{bottom:699.375000px;}
.y171{bottom:699.915000px;}
.y15{bottom:702.075000px;}
.y70{bottom:702.975000px;}
.y3d{bottom:703.336500px;}
.yaa{bottom:703.875000px;}
.y152{bottom:704.415000px;}
.ya9{bottom:709.996500px;}
.y10f{bottom:712.050000px;}
.ye4{bottom:714.136500px;}
.y170{bottom:721.875000px;}
.y14{bottom:722.775000px;}
.y3c{bottom:724.036500px;}
.y151{bottom:725.115000px;}
.ye3{bottom:734.836500px;}
.y10b{bottom:739.155000px;}
.ya5{bottom:742.215000px;}
.y3b{bottom:744.736500px;}
.y150{bottom:745.815000px;}
.ye2{bottom:755.536500px;}
.y13c{bottom:761.400000px;}
.y16f{bottom:763.636500px;}
.y13{bottom:764.536500px;}
.y3a{bottom:765.436500px;}
.y14f{bottom:766.515000px;}
.ya4{bottom:783.975000px;}
.y12{bottom:785.236500px;}
.y139{bottom:785.475000px;}
.y16e{bottom:785.596500px;}
.y39{bottom:786.136500px;}
.y14e{bottom:787.215000px;}
.ye1{bottom:797.295000px;}
.ya2{bottom:804.675000px;}
.ya3{bottom:804.855000px;}
.y11{bottom:805.936500px;}
.y38{bottom:806.836500px;}
.y14d{bottom:807.915000px;}
.y137{bottom:808.725000px;}
.ye0{bottom:817.996500px;}
.y10{bottom:826.636500px;}
.y16d{bottom:827.175000px;}
.y37{bottom:827.536500px;}
.y6f{bottom:827.895000px;}
.y14c{bottom:828.615000px;}
.y135{bottom:831.975000px;}
.ydf{bottom:838.695000px;}
.y9f{bottom:846.795000px;}
.yf{bottom:847.336500px;}
.y16c{bottom:847.875000px;}
.y36{bottom:848.236500px;}
.y6e{bottom:848.596500px;}
.y12c{bottom:855.225000px;}
.y9b{bottom:857.955000px;}
.y9a{bottom:858.675000px;}
.ya0{bottom:858.855000px;}
.yde{bottom:859.395000px;}
.ya1{bottom:861.736500px;}
.y10a{bottom:862.996500px;}
.y9c{bottom:866.775000px;}
.y16b{bottom:868.575000px;}
.y56{bottom:868.936500px;}
.y6d{bottom:869.295000px;}
.y14b{bottom:870.195000px;}
.y9e{bottom:873.255000px;}
.y9d{bottom:881.895000px;}
.ye{bottom:889.095000px;}
.y35{bottom:889.995000px;}
.ydd{bottom:900.975000px;}
.y16a{bottom:910.336500px;}
.y34{bottom:910.695000px;}
.y149{bottom:911.055000px;}
.y99{bottom:915.195000px;}
.y148{bottom:916.455000px;}
.y14a{bottom:916.636500px;}
.y12f{bottom:918.000000px;}
.ydc{bottom:921.675000px;}
.y145{bottom:923.115000px;}
.y144{bottom:928.515000px;}
.yd{bottom:930.675000px;}
.y169{bottom:931.036500px;}
.y33{bottom:931.395000px;}
.y147{bottom:939.315000px;}
.y146{bottom:944.715000px;}
.y168{bottom:951.736500px;}
.y32{bottom:952.095000px;}
.y94{bottom:955.875000px;}
.y95{bottom:958.215000px;}
.ydb{bottom:963.436500px;}
.y97{bottom:964.155000px;}
.y93{bottom:964.875000px;}
.y98{bottom:967.755000px;}
.yc{bottom:972.436500px;}
.y31{bottom:972.795000px;}
.y96{bottom:973.515000px;}
.yda{bottom:984.136500px;}
.y109{bottom:987.915000px;}
.y6c{bottom:993.495000px;}
.yd9{bottom:1003.936500px;}
.y143{bottom:1004.836500px;}
.yd7{bottom:1009.155000px;}
.yd8{bottom:1009.336500px;}
.y92{bottom:1011.495000px;}
.y91{bottom:1011.675000px;}
.yb{bottom:1014.195000px;}
.y30{bottom:1014.375000px;}
.yd6{bottom:1030.215000px;}
.y90{bottom:1032.375000px;}
.ya{bottom:1034.895000px;}
.y2f{bottom:1035.075000px;}
.y142{bottom:1045.515000px;}
.y141{bottom:1050.915000px;}
.y9{bottom:1055.595000px;}
.y2e{bottom:1055.775000px;}
.y129{bottom:1066.650000px;}
.y8f{bottom:1070.355000px;}
.y140{bottom:1071.075000px;}
.yd5{bottom:1071.795000px;}
.y13f{bottom:1076.295000px;}
.y2d{bottom:1076.475000px;}
.y8b{bottom:1077.015000px;}
.y8a{bottom:1082.415000px;}
.y8c{bottom:1090.515000px;}
.y126{bottom:1090.725000px;}
.yd4{bottom:1091.595000px;}
.yd3{bottom:1096.815000px;}
.y8e{bottom:1096.995000px;}
.y8{bottom:1097.175000px;}
.y8d{bottom:1105.455000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h5{height:20.175000px;}
.h8{height:21.375000px;}
.ha{height:22.200000px;}
.h1d{height:23.250000px;}
.h20{height:23.325000px;}
.h1f{height:24.075000px;}
.h7{height:42.825000px;}
.h4{height:45.095654px;}
.h3{height:48.796875px;}
.h9{height:49.992188px;}
.h6{height:50.027344px;}
.h2{height:62.261719px;}
.h1e{height:62.775000px;}
.h22{height:83.475000px;}
.h1c{height:86.025000px;}
.h17{height:96.349805px;}
.h16{height:101.162707px;}
.h21{height:106.725000px;}
.he{height:117.837891px;}
.hd{height:123.724174px;}
.h11{height:133.551728px;}
.h12{height:138.383067px;}
.h19{height:139.139033px;}
.h14{height:139.145333px;}
.hf{height:139.894999px;}
.h10{height:166.359375px;}
.h15{height:167.079375px;}
.h13{height:169.239375px;}
.h1a{height:169.959375px;}
.hb{height:174.669422px;}
.h18{height:177.159375px;}
.hc{height:187.959375px;}
.h1b{height:202.797891px;}
.h24{height:213.873375px;}
.h23{height:290.919375px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:33.450000px;}
.w7{width:72.075000px;}
.w8{width:72.600000px;}
.wc{width:74.925000px;}
.wd{width:77.175000px;}
.we{width:77.475000px;}
.wf{width:79.050000px;}
.wb{width:84.675000px;}
.w5{width:100.800000px;}
.w9{width:101.775000px;}
.w3{width:140.250000px;}
.w10{width:161.400000px;}
.w11{width:504.075000px;}
.w6{width:504.600000px;}
.wa{width:537.000000px;}
.w4{width:560.775000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.145000px;}
.xb{left:119.475000px;}
.x1{left:127.620000px;}
.x4e{left:133.020000px;}
.x76{left:137.160000px;}
.x32{left:139.500000px;}
.x5b{left:142.560000px;}
.x18{left:143.638500px;}
.x4{left:146.880000px;}
.x17{left:148.138500px;}
.x5{left:151.380000px;}
.x19{left:160.020000px;}
.x1f{left:173.520000px;}
.x60{left:175.725000px;}
.xa{left:180.720000px;}
.x1b{left:186.300000px;}
.x56{left:189.900000px;}
.x1a{left:192.960000px;}
.x3d{left:196.020000px;}
.x57{left:199.980000px;}
.x35{left:207.538500px;}
.x69{left:210.238500px;}
.x33{left:216.538500px;}
.x34{left:219.420000px;}
.x6a{left:223.560000px;}
.x36{left:224.638500px;}
.x6b{left:231.120000px;}
.x1c{left:239.400000px;}
.x4f{left:240.660000px;}
.x6c{left:244.620000px;}
.x37{left:246.960000px;}
.x50{left:248.038500px;}
.x1d{left:252.900000px;}
.x1e{left:254.160000px;}
.x40{left:258.120000px;}
.xd{left:259.650000px;}
.x65{left:260.775000px;}
.x6d{left:263.160000px;}
.x3e{left:267.120000px;}
.x3f{left:270.000000px;}
.x41{left:273.960000px;}
.x61{left:276.450000px;}
.x6e{left:283.860000px;}
.x77{left:289.980000px;}
.x6f{left:291.420000px;}
.x51{left:293.938500px;}
.x42{left:299.700000px;}
.x78{left:304.020000px;}
.x20{left:305.638500px;}
.x21{left:310.680000px;}
.x70{left:312.300000px;}
.x71{left:322.200000px;}
.x24{left:324.000000px;}
.x5d{left:336.420000px;}
.x22{left:337.680000px;}
.x23{left:345.060000px;}
.x43{left:348.120000px;}
.x72{left:352.980000px;}
.x44{left:360.000000px;}
.x52{left:366.660000px;}
.x53{left:376.560000px;}
.x25{left:387.538500px;}
.x26{left:388.800000px;}
.x54{left:390.060000px;}
.x5e{left:393.120000px;}
.x55{left:397.438500px;}
.xe{left:399.825000px;}
.x5f{left:402.660000px;}
.x4b{left:405.900000px;}
.x7a{left:408.060000px;}
.x79{left:409.320000px;}
.x11{left:412.380000px;}
.x4c{left:415.620000px;}
.x29{left:416.880000px;}
.x62{left:420.450000px;}
.x12{left:424.260000px;}
.x5c{left:427.680000px;}
.x27{left:429.660000px;}
.x38{left:431.280000px;}
.x28{left:436.320000px;}
.x6{left:439.020000px;}
.x48{left:449.460000px;}
.x73{left:452.880000px;}
.x3{left:461.625000px;}
.x2f{left:465.300000px;}
.x39{left:468.538500px;}
.x30{left:470.520000px;}
.x3a{left:477.180000px;}
.x2a{left:478.438500px;}
.x4d{left:488.338500px;}
.x15{left:492.480000px;}
.x66{left:497.325000px;}
.x13{left:505.260000px;}
.x7b{left:506.880000px;}
.x14{left:508.680000px;}
.x45{left:512.638500px;}
.x49{left:513.720000px;}
.x16{left:514.800000px;}
.x3b{left:517.680000px;}
.x4a{left:521.100000px;}
.x2b{left:529.738500px;}
.x2c{left:534.780000px;}
.x46{left:537.660000px;}
.xf{left:540.000000px;}
.x3c{left:541.800000px;}
.x47{left:546.300000px;}
.x2e{left:548.100000px;}
.x58{left:558.000000px;}
.x2d{left:561.780000px;}
.x9{left:565.200000px;}
.x67{left:574.725000px;}
.x8{left:594.180000px;}
.x63{left:636.450000px;}
.x68{left:653.700000px;}
.x10{left:680.175000px;}
.x64{left:708.450000px;}
.x7{left:720.180000px;}
.x74{left:723.960000px;}
.x59{left:725.760000px;}
.x2{left:731.160000px;}
.x75{left:733.680000px;}
.x5a{left:748.978500px;}
.x31{left:814.860000px;}
@media print{
.v4{vertical-align:-45.021958pt;}
.v9{vertical-align:-32.254537pt;}
.v3{vertical-align:-30.910598pt;}
.vc{vertical-align:-22.852564pt;}
.v5{vertical-align:-14.111360pt;}
.v7{vertical-align:-10.079543pt;}
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:2.560000pt;}
.v11{vertical-align:5.120000pt;}
.v8{vertical-align:8.735604pt;}
.v2{vertical-align:19.200000pt;}
.va{vertical-align:26.245333pt;}
.v6{vertical-align:37.120000pt;}
.v10{vertical-align:42.234667pt;}
.ve{vertical-align:62.080000pt;}
.vd{vertical-align:75.520000pt;}
.vf{vertical-align:110.720000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.002133pt;}
.lse{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.069333pt;}
.ls38{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.186667pt;}
.lsd{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.197333pt;}
.ls15{letter-spacing:0.314667pt;}
.ls3{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.517333pt;}
.ls2e{letter-spacing:2.443169pt;}
.ls2b{letter-spacing:2.450667pt;}
.ls1b{letter-spacing:2.867070pt;}
.ls23{letter-spacing:2.872670pt;}
.ls29{letter-spacing:3.130818pt;}
.ls2c{letter-spacing:3.695832pt;}
.ls30{letter-spacing:3.763029pt;}
.ls1f{letter-spacing:4.093414pt;}
.ls32{letter-spacing:4.099014pt;}
.ls21{letter-spacing:4.104614pt;}
.ls19{letter-spacing:4.233408pt;}
.ls26{letter-spacing:4.429399pt;}
.ls25{letter-spacing:4.434999pt;}
.ls18{letter-spacing:4.448438pt;}
.ls33{letter-spacing:4.741333pt;}
.ls1e{letter-spacing:4.770984pt;}
.ls22{letter-spacing:5.376000pt;}
.ls36{letter-spacing:10.426667pt;}
.ls2a{letter-spacing:11.410667pt;}
.ls35{letter-spacing:15.674667pt;}
.ls27{letter-spacing:16.000000pt;}
.ls1a{letter-spacing:16.192000pt;}
.ls14{letter-spacing:16.256000pt;}
.ls13{letter-spacing:16.640000pt;}
.lsa{letter-spacing:17.600000pt;}
.ls5{letter-spacing:17.920000pt;}
.ls6{letter-spacing:17.925333pt;}
.ls12{letter-spacing:18.554667pt;}
.ls34{letter-spacing:22.085333pt;}
.lsb{letter-spacing:24.384000pt;}
.ls2{letter-spacing:28.156800pt;}
.ls20{letter-spacing:31.610667pt;}
.ls7{letter-spacing:35.520000pt;}
.ls8{letter-spacing:35.840000pt;}
.ls37{letter-spacing:38.848000pt;}
.ls16{letter-spacing:40.325333pt;}
.ls31{letter-spacing:42.320081pt;}
.lsc{letter-spacing:53.756800pt;}
.ls1c{letter-spacing:55.105141pt;}
.ls1{letter-spacing:57.605333pt;}
.ls2d{letter-spacing:60.901998pt;}
.ls28{letter-spacing:61.130019pt;}
.ls24{letter-spacing:67.327594pt;}
.ls17{letter-spacing:76.245582pt;}
.ls2f{letter-spacing:77.138181pt;}
.ls1d{letter-spacing:109.319362pt;}
.wsc{word-spacing:-49.728000pt;}
.ws85{word-spacing:-43.136000pt;}
.wsb2{word-spacing:-42.112000pt;}
.ws11c{word-spacing:-38.400000pt;}
.ws26{word-spacing:-36.032000pt;}
.wsd5{word-spacing:-34.733600pt;}
.ws27{word-spacing:-34.366400pt;}
.ws6b{word-spacing:-34.364800pt;}
.wsf8{word-spacing:-34.363200pt;}
.ws6{word-spacing:-34.362400pt;}
.wsa{word-spacing:-34.356000pt;}
.ws5{word-spacing:-34.353600pt;}
.wsb{word-spacing:-34.169600pt;}
.ws3{word-spacing:-34.110400pt;}
.wsa6{word-spacing:-34.105600pt;}
.wsa5{word-spacing:-34.102400pt;}
.wse1{word-spacing:-34.101600pt;}
.ws9{word-spacing:-34.048533pt;}
.wse2{word-spacing:-33.787200pt;}
.wse5{word-spacing:-33.783200pt;}
.ws0{word-spacing:-33.728000pt;}
.wsd{word-spacing:-33.724000pt;}
.ws4{word-spacing:-33.723200pt;}
.ws2{word-spacing:-33.716800pt;}
.wsf{word-spacing:-33.715200pt;}
.wse7{word-spacing:-33.147200pt;}
.wse3{word-spacing:-33.143200pt;}
.wsd4{word-spacing:-31.541600pt;}
.wsb0{word-spacing:-31.319380pt;}
.wsac{word-spacing:-29.829333pt;}
.ws8{word-spacing:-29.820267pt;}
.ws24{word-spacing:-29.428800pt;}
.wsa8{word-spacing:-28.038400pt;}
.ws9a{word-spacing:-25.791200pt;}
.wsba{word-spacing:-24.389867pt;}
.wsa7{word-spacing:-23.420800pt;}
.ws6a{word-spacing:-20.846400pt;}
.wsf6{word-spacing:-20.666400pt;}
.wsb7{word-spacing:-20.660267pt;}
.ws9f{word-spacing:-20.660000pt;}
.ws14{word-spacing:-20.656800pt;}
.wscc{word-spacing:-20.648000pt;}
.ws7d{word-spacing:-20.603200pt;}
.ws57{word-spacing:-20.540000pt;}
.ws10a{word-spacing:-20.476800pt;}
.ws15{word-spacing:-20.474400pt;}
.wsf4{word-spacing:-20.352000pt;}
.wsbb{word-spacing:-20.351733pt;}
.wsec{word-spacing:-20.350400pt;}
.ws5b{word-spacing:-20.349333pt;}
.ws35{word-spacing:-20.348800pt;}
.ws45{word-spacing:-20.348000pt;}
.wsb9{word-spacing:-20.347733pt;}
.ws5f{word-spacing:-20.346933pt;}
.wse9{word-spacing:-20.346400pt;}
.ws76{word-spacing:-20.345333pt;}
.ws108{word-spacing:-20.344000pt;}
.wsc2{word-spacing:-20.343200pt;}
.wse0{word-spacing:-20.342933pt;}
.ws49{word-spacing:-20.342400pt;}
.wsaf{word-spacing:-20.341067pt;}
.wsaa{word-spacing:-20.340800pt;}
.ws3a{word-spacing:-20.340000pt;}
.wsbe{word-spacing:-20.339200pt;}
.ws97{word-spacing:-20.337600pt;}
.ws1c{word-spacing:-20.334400pt;}
.wsb4{word-spacing:-20.332800pt;}
.wsd9{word-spacing:-20.332000pt;}
.wsa4{word-spacing:-20.324800pt;}
.ws23{word-spacing:-20.226133pt;}
.wsb8{word-spacing:-20.221600pt;}
.ws17{word-spacing:-20.218400pt;}
.ws1f{word-spacing:-20.217333pt;}
.wsd3{word-spacing:-20.213600pt;}
.wse{word-spacing:-20.032000pt;}
.wsc1{word-spacing:-20.031200pt;}
.ws112{word-spacing:-20.028800pt;}
.ws10c{word-spacing:-20.028000pt;}
.ws9e{word-spacing:-20.027200pt;}
.wse6{word-spacing:-20.024267pt;}
.ws10d{word-spacing:-20.016000pt;}
.ws9d{word-spacing:-19.708800pt;}
.ws34{word-spacing:-19.703733pt;}
.wsea{word-spacing:-19.698400pt;}
.ws99{word-spacing:-19.392533pt;}
.ws109{word-spacing:-19.386400pt;}
.ws36{word-spacing:-19.384800pt;}
.ws59{word-spacing:-19.376800pt;}
.ws30{word-spacing:-19.070933pt;}
.wscb{word-spacing:-19.064000pt;}
.wsb6{word-spacing:-19.060000pt;}
.wsb5{word-spacing:-19.056000pt;}
.ws21{word-spacing:-18.944000pt;}
.ws9b{word-spacing:-18.941600pt;}
.ws67{word-spacing:-18.938400pt;}
.ws8a{word-spacing:-18.750933pt;}
.ws8d{word-spacing:-18.748000pt;}
.ws89{word-spacing:-18.747200pt;}
.ws8b{word-spacing:-18.739200pt;}
.ws88{word-spacing:-18.428000pt;}
.wsed{word-spacing:-18.424000pt;}
.wseb{word-spacing:-18.423200pt;}
.wsc9{word-spacing:-18.419200pt;}
.ws8e{word-spacing:-18.298933pt;}
.wsad{word-spacing:-18.109600pt;}
.ws47{word-spacing:-17.977600pt;}
.wsae{word-spacing:-17.792000pt;}
.ws5d{word-spacing:-17.659200pt;}
.ws98{word-spacing:-17.472000pt;}
.ws100{word-spacing:-17.462667pt;}
.ws2a{word-spacing:-17.146400pt;}
.wsd8{word-spacing:-16.961333pt;}
.ws117{word-spacing:-16.960000pt;}
.wsdb{word-spacing:-16.821600pt;}
.ws84{word-spacing:-16.501600pt;}
.ws7{word-spacing:-16.420000pt;}
.ws25{word-spacing:-16.189333pt;}
.wse8{word-spacing:-15.870400pt;}
.ws7e{word-spacing:-15.865600pt;}
.ws28{word-spacing:-15.864800pt;}
.ws87{word-spacing:-15.744000pt;}
.ws4e{word-spacing:-15.735200pt;}
.ws107{word-spacing:-15.550933pt;}
.ws86{word-spacing:-15.549600pt;}
.ws60{word-spacing:-15.549333pt;}
.ws39{word-spacing:-14.270400pt;}
.ws22{word-spacing:-14.268800pt;}
.wsce{word-spacing:-14.261600pt;}
.wsd1{word-spacing:-13.945333pt;}
.wsc0{word-spacing:-13.941600pt;}
.ws5c{word-spacing:-13.937600pt;}
.ws111{word-spacing:-13.822400pt;}
.ws3e{word-spacing:-13.807467pt;}
.ws6e{word-spacing:-13.807200pt;}
.wsf7{word-spacing:-13.504533pt;}
.wsa0{word-spacing:-13.311200pt;}
.ws2c{word-spacing:-13.304800pt;}
.ws48{word-spacing:-13.304000pt;}
.ws110{word-spacing:-13.182400pt;}
.wsd0{word-spacing:-12.992000pt;}
.wsd7{word-spacing:-12.792000pt;}
.ws5a{word-spacing:-12.666933pt;}
.wsfe{word-spacing:-12.666400pt;}
.ws2b{word-spacing:-12.661600pt;}
.ws61{word-spacing:-12.542400pt;}
.ws4c{word-spacing:-12.535200pt;}
.wsff{word-spacing:-12.023200pt;}
.ws8f{word-spacing:-12.019200pt;}
.ws104{word-spacing:-12.017600pt;}
.ws90{word-spacing:-11.907733pt;}
.wsdc{word-spacing:-11.712000pt;}
.wsbc{word-spacing:-11.634400pt;}
.ws9c{word-spacing:-11.398400pt;}
.ws53{word-spacing:-11.376000pt;}
.wsbd{word-spacing:-11.263200pt;}
.ws103{word-spacing:-11.072000pt;}
.ws29{word-spacing:-10.754133pt;}
.wsd6{word-spacing:-10.226400pt;}
.ws73{word-spacing:-10.107200pt;}
.wsda{word-spacing:-10.105333pt;}
.ws5e{word-spacing:-10.097600pt;}
.ws4d{word-spacing:-9.977067pt;}
.ws42{word-spacing:-9.475733pt;}
.ws31{word-spacing:-9.470400pt;}
.ws3d{word-spacing:-9.459200pt;}
.ws2d{word-spacing:-8.834133pt;}
.wsb3{word-spacing:-8.832000pt;}
.ws79{word-spacing:-8.821600pt;}
.ws10e{word-spacing:-8.508800pt;}
.ws118{word-spacing:-8.506667pt;}
.ws115{word-spacing:-7.872000pt;}
.wsca{word-spacing:-7.762667pt;}
.ws81{word-spacing:-7.539200pt;}
.wsdd{word-spacing:-7.232000pt;}
.wsf9{word-spacing:-7.226400pt;}
.ws7a{word-spacing:-6.588000pt;}
.wsa1{word-spacing:-6.262133pt;}
.ws16{word-spacing:-5.952000pt;}
.wsd2{word-spacing:-5.947200pt;}
.ws68{word-spacing:-5.308000pt;}
.ws119{word-spacing:-5.231200pt;}
.ws64{word-spacing:-4.995733pt;}
.wsde{word-spacing:-4.350133pt;}
.ws7f{word-spacing:-4.345600pt;}
.ws55{word-spacing:-4.336000pt;}
.ws4a{word-spacing:-4.032000pt;}
.ws7b{word-spacing:-4.027200pt;}
.ws93{word-spacing:-3.960800pt;}
.ws95{word-spacing:-3.706400pt;}
.wsc7{word-spacing:-3.702400pt;}
.ws44{word-spacing:-3.697600pt;}
.wsc5{word-spacing:-3.696800pt;}
.ws96{word-spacing:-3.580533pt;}
.ws32{word-spacing:-3.392000pt;}
.ws92{word-spacing:-3.389600pt;}
.ws91{word-spacing:-2.742400pt;}
.wsf2{word-spacing:-2.429333pt;}
.ws20{word-spacing:-2.300800pt;}
.wsf0{word-spacing:-2.296533pt;}
.ws8c{word-spacing:-1.141600pt;}
.ws106{word-spacing:-1.009600pt;}
.ws72{word-spacing:-0.828000pt;}
.ws101{word-spacing:-0.825600pt;}
.ws46{word-spacing:-0.505333pt;}
.wsc3{word-spacing:-0.501333pt;}
.ws40{word-spacing:-0.498400pt;}
.wsef{word-spacing:-0.382133pt;}
.ws3b{word-spacing:-0.376000pt;}
.wsee{word-spacing:-0.197333pt;}
.wsab{word-spacing:0.000000pt;}
.wsc4{word-spacing:0.140800pt;}
.ws13{word-spacing:0.141600pt;}
.ws6f{word-spacing:0.645600pt;}
.ws11a{word-spacing:0.897600pt;}
.ws3c{word-spacing:1.088000pt;}
.ws74{word-spacing:1.407467pt;}
.ws33{word-spacing:1.416000pt;}
.wsfd{word-spacing:1.421600pt;}
.wsfc{word-spacing:1.722667pt;}
.wscf{word-spacing:1.837333pt;}
.ws10b{word-spacing:2.177600pt;}
.wsfb{word-spacing:2.368000pt;}
.ws51{word-spacing:2.688000pt;}
.wscd{word-spacing:2.695467pt;}
.wsa2{word-spacing:3.013333pt;}
.ws2f{word-spacing:3.336267pt;}
.wsa9{word-spacing:3.467467pt;}
.wsbf{word-spacing:3.633600pt;}
.ws71{word-spacing:3.971467pt;}
.ws102{word-spacing:3.976800pt;}
.wsf5{word-spacing:3.977600pt;}
.ws113{word-spacing:4.288000pt;}
.ws94{word-spacing:4.601600pt;}
.ws58{word-spacing:5.252000pt;}
.ws80{word-spacing:5.254400pt;}
.ws18{word-spacing:5.255200pt;}
.ws7c{word-spacing:5.572800pt;}
.ws62{word-spacing:5.582400pt;}
.ws70{word-spacing:6.536267pt;}
.ws10{word-spacing:6.853600pt;}
.wsdf{word-spacing:7.807467pt;}
.ws65{word-spacing:7.945600pt;}
.ws63{word-spacing:8.445867pt;}
.ws38{word-spacing:8.768000pt;}
.ws37{word-spacing:9.740000pt;}
.wsf3{word-spacing:10.178400pt;}
.ws12{word-spacing:11.015467pt;}
.ws3f{word-spacing:11.649600pt;}
.ws66{word-spacing:11.657600pt;}
.ws4f{word-spacing:12.932800pt;}
.ws1d{word-spacing:13.440000pt;}
.ws2e{word-spacing:13.572800pt;}
.ws1b{word-spacing:14.342400pt;}
.ws78{word-spacing:14.665600pt;}
.ws114{word-spacing:14.860000pt;}
.ws43{word-spacing:16.141067pt;}
.ws50{word-spacing:16.448000pt;}
.ws6c{word-spacing:16.466400pt;}
.ws4b{word-spacing:17.724267pt;}
.ws77{word-spacing:20.353600pt;}
.ws83{word-spacing:20.618400pt;}
.ws82{word-spacing:20.625333pt;}
.ws105{word-spacing:21.252800pt;}
.wsc6{word-spacing:21.677333pt;}
.ws54{word-spacing:23.808000pt;}
.ws52{word-spacing:23.830133pt;}
.wsf1{word-spacing:24.877333pt;}
.ws19{word-spacing:26.380800pt;}
.ws10f{word-spacing:27.136000pt;}
.ws11{word-spacing:27.153600pt;}
.ws1e{word-spacing:27.328000pt;}
.wse4{word-spacing:28.292000pt;}
.ws6d{word-spacing:30.542400pt;}
.ws1a{word-spacing:31.494933pt;}
.ws75{word-spacing:33.425333pt;}
.ws116{word-spacing:33.722667pt;}
.ws69{word-spacing:41.426400pt;}
.ws56{word-spacing:43.972000pt;}
.ws41{word-spacing:45.319200pt;}
.wsa3{word-spacing:49.804000pt;}
.ws11b{word-spacing:54.848000pt;}
.wsb1{word-spacing:305.530667pt;}
.wsc8{word-spacing:323.340267pt;}
.wsfa{word-spacing:323.980800pt;}
.ws1{word-spacing:404.526933pt;}
._2d{margin-left:-61.440000pt;}
._2f{margin-left:-50.669867pt;}
._2e{margin-left:-10.885333pt;}
._8{margin-left:-2.096533pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._16{width:2.129867pt;}
._31{width:9.981333pt;}
._30{width:14.400000pt;}
._4{width:16.689600pt;}
._d{width:18.304000pt;}
._1c{width:19.309867pt;}
._2b{width:20.203200pt;}
._f{width:21.454933pt;}
._e{width:22.818133pt;}
._11{width:24.431733pt;}
._2a{width:25.461333pt;}
._10{width:26.997333pt;}
._12{width:28.098133pt;}
._13{width:29.136533pt;}
._34{width:30.049067pt;}
._27{width:30.972000pt;}
._1{width:32.000000pt;}
._28{width:32.906133pt;}
._1d{width:33.806933pt;}
._32{width:35.116800pt;}
._29{width:36.088267pt;}
._7{width:37.313333pt;}
._15{width:38.712000pt;}
._20{width:39.694933pt;}
._14{width:40.695733pt;}
._24{width:42.236000pt;}
._9{width:43.136533pt;}
._5{width:44.218400pt;}
._18{width:45.728533pt;}
._17{width:47.028533pt;}
._6{width:48.000000pt;}
._1f{width:50.013867pt;}
._c{width:51.964800pt;}
._1b{width:53.172800pt;}
._1e{width:54.701333pt;}
._26{width:58.105067pt;}
._22{width:61.026667pt;}
._a{width:63.411200pt;}
._36{width:64.512000pt;}
._b{width:69.049067pt;}
._25{width:70.508267pt;}
._35{width:71.611733pt;}
._19{width:75.300533pt;}
._37{width:76.334133pt;}
._21{width:78.458667pt;}
._23{width:80.950667pt;}
._1a{width:82.412267pt;}
._2c{width:86.961600pt;}
._38{width:92.288000pt;}
._33{width:360.691733pt;}
._0{width:544.128000pt;}
.fs7{font-size:37.066667pt;}
.fs6{font-size:38.918235pt;}
.fs2{font-size:41.600000pt;}
.fs4{font-size:45.333333pt;}
.fs5{font-size:47.597841pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:67.196952pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:3.333333pt;}
.y7e{bottom:3.360000pt;}
.y80{bottom:3.388000pt;}
.y82{bottom:3.413333pt;}
.y84{bottom:3.441333pt;}
.y7b{bottom:3.466667pt;}
.yf3{bottom:3.506667pt;}
.y134{bottom:3.546667pt;}
.y7{bottom:3.974667pt;}
.y87{bottom:4.066667pt;}
.y79{bottom:4.133333pt;}
.yf9{bottom:4.200000pt;}
.yfb{bottom:4.226667pt;}
.y102{bottom:4.254667pt;}
.y13a{bottom:4.266667pt;}
.y127{bottom:4.293333pt;}
.yf7{bottom:4.333333pt;}
.yf0{bottom:4.346667pt;}
.y11b{bottom:4.960000pt;}
.yfd{bottom:4.988000pt;}
.y119{bottom:5.000000pt;}
.y136{bottom:5.013333pt;}
.y13d{bottom:5.026667pt;}
.y138{bottom:5.040000pt;}
.y106{bottom:5.041333pt;}
.y12a{bottom:5.054667pt;}
.y13b{bottom:5.066667pt;}
.y128{bottom:5.093333pt;}
.y116{bottom:5.108000pt;}
.y108{bottom:5.133333pt;}
.y11c{bottom:5.760000pt;}
.y13e{bottom:5.826667pt;}
.y12b{bottom:5.854667pt;}
.y131{bottom:12.666667pt;}
.y112{bottom:12.693333pt;}
.yf5{bottom:12.788000pt;}
.y104{bottom:21.813333pt;}
.yf2{bottom:21.908000pt;}
.y133{bottom:21.946667pt;}
.y114{bottom:21.973333pt;}
.y78{bottom:22.533333pt;}
.yee{bottom:23.026667pt;}
.y12e{bottom:23.066667pt;}
.y100{bottom:23.093333pt;}
.yf4{bottom:31.026667pt;}
.y130{bottom:31.066667pt;}
.y111{bottom:31.093333pt;}
.y10e{bottom:32.213333pt;}
.yf1{bottom:40.146667pt;}
.y132{bottom:40.188000pt;}
.y103{bottom:40.213333pt;}
.yff{bottom:41.333333pt;}
.yed{bottom:41.426667pt;}
.y12d{bottom:41.466667pt;}
.y110{bottom:49.493333pt;}
.y10d{bottom:50.613333pt;}
.y113{bottom:58.613333pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y2c{bottom:88.866667pt;}
.y107{bottom:106.133333pt;}
.y2b{bottom:107.266667pt;}
.y6b{bottom:108.388000pt;}
.y125{bottom:117.988000pt;}
.y89{bottom:120.546667pt;}
.y124{bottom:122.788000pt;}
.yd2{bottom:122.946667pt;}
.y2a{bottom:125.666667pt;}
.y6a{bottom:126.788000pt;}
.y105{bottom:126.866667pt;}
.y55{bottom:127.588000pt;}
.y167{bottom:127.746667pt;}
.y88{bottom:138.946667pt;}
.yd1{bottom:140.866667pt;}
.y29{bottom:144.066667pt;}
.y69{bottom:145.188000pt;}
.ycf{bottom:145.508000pt;}
.yd0{bottom:145.666667pt;}
.y54{bottom:145.988000pt;}
.y166{bottom:146.146667pt;}
.yfe{bottom:147.533333pt;}
.y123{bottom:159.266667pt;}
.y28{bottom:162.466667pt;}
.y68{bottom:163.588000pt;}
.yce{bottom:164.066667pt;}
.y53{bottom:164.388000pt;}
.y27{bottom:180.866667pt;}
.y67{bottom:181.988000pt;}
.y52{bottom:182.788000pt;}
.y165{bottom:183.266667pt;}
.y26{bottom:199.266667pt;}
.y51{bottom:201.188000pt;}
.ycc{bottom:201.346667pt;}
.ycd{bottom:201.508000pt;}
.y164{bottom:201.666667pt;}
.y101{bottom:203.333333pt;}
.y86{bottom:209.600000pt;}
.y25{bottom:217.666667pt;}
.y66{bottom:219.108000pt;}
.y50{bottom:219.588000pt;}
.y163{bottom:220.066667pt;}
.y85{bottom:229.400000pt;}
.y24{bottom:236.066667pt;}
.y65{bottom:237.508000pt;}
.yca{bottom:237.826667pt;}
.y4f{bottom:237.988000pt;}
.ycb{bottom:242.466667pt;}
.yc9{bottom:242.626667pt;}
.y83{bottom:248.466667pt;}
.yeb{bottom:248.546667pt;}
.y64{bottom:255.908000pt;}
.y122{bottom:256.706667pt;}
.y162{bottom:257.026667pt;}
.y81{bottom:267.533333pt;}
.y23{bottom:273.188000pt;}
.y63{bottom:274.308000pt;}
.y4e{bottom:275.108000pt;}
.y161{bottom:275.426667pt;}
.yc8{bottom:279.908000pt;}
.y7f{bottom:286.600000pt;}
.y62{bottom:292.706667pt;}
.y4d{bottom:293.508000pt;}
.y121{bottom:293.666667pt;}
.y160{bottom:293.826667pt;}
.yc7{bottom:298.308000pt;}
.yea{bottom:303.746667pt;}
.y7d{bottom:305.666667pt;}
.y22{bottom:310.308000pt;}
.y61{bottom:311.108000pt;}
.y4c{bottom:311.908000pt;}
.y120{bottom:312.066667pt;}
.y77{bottom:324.733333pt;}
.y21{bottom:328.706667pt;}
.y60{bottom:329.508000pt;}
.y4b{bottom:330.308000pt;}
.y15f{bottom:330.946667pt;}
.yc6{bottom:334.626667pt;}
.yc5{bottom:339.426667pt;}
.y7a{bottom:343.800000pt;}
.yc2{bottom:345.346667pt;}
.y5f{bottom:347.908000pt;}
.y4a{bottom:348.706667pt;}
.y11f{bottom:349.188000pt;}
.y15e{bottom:349.346667pt;}
.yc1{bottom:350.146667pt;}
.yc4{bottom:359.746667pt;}
.yc3{bottom:364.546667pt;}
.y20{bottom:365.666667pt;}
.y5e{bottom:366.308000pt;}
.y49{bottom:367.108000pt;}
.y15d{bottom:367.746667pt;}
.ye9{bottom:377.826667pt;}
.y1f{bottom:384.066667pt;}
.y5d{bottom:384.706667pt;}
.y76{bottom:384.866667pt;}
.y48{bottom:385.508000pt;}
.y11e{bottom:386.308000pt;}
.ye8{bottom:396.226667pt;}
.yc0{bottom:399.426667pt;}
.y1e{bottom:402.466667pt;}
.y5c{bottom:403.108000pt;}
.y47{bottom:403.908000pt;}
.y11d{bottom:404.706667pt;}
.y15c{bottom:404.866667pt;}
.ye7{bottom:414.626667pt;}
.y1d{bottom:420.866667pt;}
.y15b{bottom:423.266667pt;}
.ybf{bottom:433.346667pt;}
.yfc{bottom:434.600000pt;}
.yb8{bottom:439.108000pt;}
.y46{bottom:440.866667pt;}
.yb7{bottom:443.908000pt;}
.yb9{bottom:453.666667pt;}
.ybd{bottom:454.946667pt;}
.yfa{bottom:456.000000pt;}
.y1c{bottom:457.988000pt;}
.ybb{bottom:458.946667pt;}
.y75{bottom:459.108000pt;}
.y45{bottom:459.266667pt;}
.ybe{bottom:459.588000pt;}
.ybc{bottom:459.746667pt;}
.y15a{bottom:460.226667pt;}
.yba{bottom:467.266667pt;}
.y11a{bottom:475.266667pt;}
.y1b{bottom:476.388000pt;}
.yf8{bottom:476.666667pt;}
.y5b{bottom:477.188000pt;}
.y74{bottom:477.506667pt;}
.y44{bottom:477.666667pt;}
.y73{bottom:495.908000pt;}
.y43{bottom:496.066667pt;}
.y118{bottom:496.666667pt;}
.yf6{bottom:497.333333pt;}
.y159{bottom:497.346667pt;}
.yb6{bottom:502.466667pt;}
.yb2{bottom:505.666667pt;}
.yb1{bottom:510.466667pt;}
.y1a{bottom:513.506667pt;}
.y72{bottom:514.308000pt;}
.y42{bottom:514.466667pt;}
.y158{bottom:515.746667pt;}
.yb3{bottom:516.706667pt;}
.y117{bottom:517.333333pt;}
.yec{bottom:518.000000pt;}
.yb5{bottom:520.706667pt;}
.yb4{bottom:526.146667pt;}
.y19{bottom:531.908000pt;}
.y71{bottom:532.706667pt;}
.yb0{bottom:533.988000pt;}
.y157{bottom:534.146667pt;}
.yae{bottom:536.226667pt;}
.yaf{bottom:536.388000pt;}
.y115{bottom:538.000000pt;}
.y18{bottom:550.308000pt;}
.y5a{bottom:551.266667pt;}
.y41{bottom:551.588000pt;}
.y156{bottom:552.546667pt;}
.y10c{bottom:558.733333pt;}
.y17{bottom:568.706667pt;}
.y59{bottom:569.666667pt;}
.y40{bottom:569.988000pt;}
.y155{bottom:570.946667pt;}
.yad{bottom:573.666667pt;}
.yef{bottom:573.800000pt;}
.y16{bottom:587.108000pt;}
.y58{bottom:588.066667pt;}
.y3f{bottom:588.388000pt;}
.y154{bottom:589.346667pt;}
.ye6{bottom:597.988000pt;}
.y57{bottom:606.466667pt;}
.y3e{bottom:606.788000pt;}
.yab{bottom:607.426667pt;}
.y153{bottom:607.746667pt;}
.ya7{bottom:610.626667pt;}
.yac{bottom:615.266667pt;}
.ya6{bottom:615.426667pt;}
.ye5{bottom:616.388000pt;}
.ya8{bottom:621.666667pt;}
.y171{bottom:622.146667pt;}
.y15{bottom:624.066667pt;}
.y70{bottom:624.866667pt;}
.y3d{bottom:625.188000pt;}
.yaa{bottom:625.666667pt;}
.y152{bottom:626.146667pt;}
.ya9{bottom:631.108000pt;}
.y10f{bottom:632.933333pt;}
.ye4{bottom:634.788000pt;}
.y170{bottom:641.666667pt;}
.y14{bottom:642.466667pt;}
.y3c{bottom:643.588000pt;}
.y151{bottom:644.546667pt;}
.ye3{bottom:653.188000pt;}
.y10b{bottom:657.026667pt;}
.ya5{bottom:659.746667pt;}
.y3b{bottom:661.988000pt;}
.y150{bottom:662.946667pt;}
.ye2{bottom:671.588000pt;}
.y13c{bottom:676.800000pt;}
.y16f{bottom:678.788000pt;}
.y13{bottom:679.588000pt;}
.y3a{bottom:680.388000pt;}
.y14f{bottom:681.346667pt;}
.ya4{bottom:696.866667pt;}
.y12{bottom:697.988000pt;}
.y139{bottom:698.200000pt;}
.y16e{bottom:698.308000pt;}
.y39{bottom:698.788000pt;}
.y14e{bottom:699.746667pt;}
.ye1{bottom:708.706667pt;}
.ya2{bottom:715.266667pt;}
.ya3{bottom:715.426667pt;}
.y11{bottom:716.388000pt;}
.y38{bottom:717.188000pt;}
.y14d{bottom:718.146667pt;}
.y137{bottom:718.866667pt;}
.ye0{bottom:727.108000pt;}
.y10{bottom:734.788000pt;}
.y16d{bottom:735.266667pt;}
.y37{bottom:735.588000pt;}
.y6f{bottom:735.906667pt;}
.y14c{bottom:736.546667pt;}
.y135{bottom:739.533333pt;}
.ydf{bottom:745.506667pt;}
.y9f{bottom:752.706667pt;}
.yf{bottom:753.188000pt;}
.y16c{bottom:753.666667pt;}
.y36{bottom:753.988000pt;}
.y6e{bottom:754.308000pt;}
.y12c{bottom:760.200000pt;}
.y9b{bottom:762.626667pt;}
.y9a{bottom:763.266667pt;}
.ya0{bottom:763.426667pt;}
.yde{bottom:763.906667pt;}
.ya1{bottom:765.988000pt;}
.y10a{bottom:767.108000pt;}
.y9c{bottom:770.466667pt;}
.y16b{bottom:772.066667pt;}
.y56{bottom:772.388000pt;}
.y6d{bottom:772.706667pt;}
.y14b{bottom:773.506667pt;}
.y9e{bottom:776.226667pt;}
.y9d{bottom:783.906667pt;}
.ye{bottom:790.306667pt;}
.y35{bottom:791.106667pt;}
.ydd{bottom:800.866667pt;}
.y16a{bottom:809.188000pt;}
.y34{bottom:809.506667pt;}
.y149{bottom:809.826667pt;}
.y99{bottom:813.506667pt;}
.y148{bottom:814.626667pt;}
.y14a{bottom:814.788000pt;}
.y12f{bottom:816.000000pt;}
.ydc{bottom:819.266667pt;}
.y145{bottom:820.546667pt;}
.y144{bottom:825.346667pt;}
.yd{bottom:827.266667pt;}
.y169{bottom:827.588000pt;}
.y33{bottom:827.906667pt;}
.y147{bottom:834.946667pt;}
.y146{bottom:839.746667pt;}
.y168{bottom:845.988000pt;}
.y32{bottom:846.306667pt;}
.y94{bottom:849.666667pt;}
.y95{bottom:851.746667pt;}
.ydb{bottom:856.388000pt;}
.y97{bottom:857.026667pt;}
.y93{bottom:857.666667pt;}
.y98{bottom:860.226667pt;}
.yc{bottom:864.388000pt;}
.y31{bottom:864.706667pt;}
.y96{bottom:865.346667pt;}
.yda{bottom:874.788000pt;}
.y109{bottom:878.146667pt;}
.y6c{bottom:883.106667pt;}
.yd9{bottom:892.388000pt;}
.y143{bottom:893.188000pt;}
.yd7{bottom:897.026667pt;}
.yd8{bottom:897.188000pt;}
.y92{bottom:899.106667pt;}
.y91{bottom:899.266667pt;}
.yb{bottom:901.506667pt;}
.y30{bottom:901.666667pt;}
.yd6{bottom:915.746667pt;}
.y90{bottom:917.666667pt;}
.ya{bottom:919.906667pt;}
.y2f{bottom:920.066667pt;}
.y142{bottom:929.346667pt;}
.y141{bottom:934.146667pt;}
.y9{bottom:938.306667pt;}
.y2e{bottom:938.466667pt;}
.y129{bottom:948.133333pt;}
.y8f{bottom:951.426667pt;}
.y140{bottom:952.066667pt;}
.yd5{bottom:952.706667pt;}
.y13f{bottom:956.706667pt;}
.y2d{bottom:956.866667pt;}
.y8b{bottom:957.346667pt;}
.y8a{bottom:962.146667pt;}
.y8c{bottom:969.346667pt;}
.y126{bottom:969.533333pt;}
.yd4{bottom:970.306667pt;}
.yd3{bottom:974.946667pt;}
.y8e{bottom:975.106667pt;}
.y8{bottom:975.266667pt;}
.y8d{bottom:982.626667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h5{height:17.933333pt;}
.h8{height:19.000000pt;}
.ha{height:19.733333pt;}
.h1d{height:20.666667pt;}
.h20{height:20.733333pt;}
.h1f{height:21.400000pt;}
.h7{height:38.066667pt;}
.h4{height:40.085026pt;}
.h3{height:43.375000pt;}
.h9{height:44.437500pt;}
.h6{height:44.468750pt;}
.h2{height:55.343750pt;}
.h1e{height:55.800000pt;}
.h22{height:74.200000pt;}
.h1c{height:76.466667pt;}
.h17{height:85.644271pt;}
.h16{height:89.922406pt;}
.h21{height:94.866667pt;}
.he{height:104.744792pt;}
.hd{height:109.977043pt;}
.h11{height:118.712647pt;}
.h12{height:123.007171pt;}
.h19{height:123.679141pt;}
.h14{height:123.684740pt;}
.hf{height:124.351110pt;}
.h10{height:147.875000pt;}
.h15{height:148.515000pt;}
.h13{height:150.435000pt;}
.h1a{height:151.075000pt;}
.hb{height:155.261708pt;}
.h18{height:157.475000pt;}
.hc{height:167.075000pt;}
.h1b{height:180.264792pt;}
.h24{height:190.109667pt;}
.h23{height:258.595000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:29.733333pt;}
.w7{width:64.066667pt;}
.w8{width:64.533333pt;}
.wc{width:66.600000pt;}
.wd{width:68.600000pt;}
.we{width:68.866667pt;}
.wf{width:70.266667pt;}
.wb{width:75.266667pt;}
.w5{width:89.600000pt;}
.w9{width:90.466667pt;}
.w3{width:124.666667pt;}
.w10{width:143.466667pt;}
.w11{width:448.066667pt;}
.w6{width:448.533333pt;}
.wa{width:477.333333pt;}
.w4{width:498.466667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.240000pt;}
.xb{left:106.200000pt;}
.x1{left:113.440000pt;}
.x4e{left:118.240000pt;}
.x76{left:121.920000pt;}
.x32{left:124.000000pt;}
.x5b{left:126.720000pt;}
.x18{left:127.678667pt;}
.x4{left:130.560000pt;}
.x17{left:131.678667pt;}
.x5{left:134.560000pt;}
.x19{left:142.240000pt;}
.x1f{left:154.240000pt;}
.x60{left:156.200000pt;}
.xa{left:160.640000pt;}
.x1b{left:165.600000pt;}
.x56{left:168.800000pt;}
.x1a{left:171.520000pt;}
.x3d{left:174.240000pt;}
.x57{left:177.760000pt;}
.x35{left:184.478667pt;}
.x69{left:186.878667pt;}
.x33{left:192.478667pt;}
.x34{left:195.040000pt;}
.x6a{left:198.720000pt;}
.x36{left:199.678667pt;}
.x6b{left:205.440000pt;}
.x1c{left:212.800000pt;}
.x4f{left:213.920000pt;}
.x6c{left:217.440000pt;}
.x37{left:219.520000pt;}
.x50{left:220.478667pt;}
.x1d{left:224.800000pt;}
.x1e{left:225.920000pt;}
.x40{left:229.440000pt;}
.xd{left:230.800000pt;}
.x65{left:231.800000pt;}
.x6d{left:233.920000pt;}
.x3e{left:237.440000pt;}
.x3f{left:240.000000pt;}
.x41{left:243.520000pt;}
.x61{left:245.733333pt;}
.x6e{left:252.320000pt;}
.x77{left:257.760000pt;}
.x6f{left:259.040000pt;}
.x51{left:261.278667pt;}
.x42{left:266.400000pt;}
.x78{left:270.240000pt;}
.x20{left:271.678667pt;}
.x21{left:276.160000pt;}
.x70{left:277.600000pt;}
.x71{left:286.400000pt;}
.x24{left:288.000000pt;}
.x5d{left:299.040000pt;}
.x22{left:300.160000pt;}
.x23{left:306.720000pt;}
.x43{left:309.440000pt;}
.x72{left:313.760000pt;}
.x44{left:320.000000pt;}
.x52{left:325.920000pt;}
.x53{left:334.720000pt;}
.x25{left:344.478667pt;}
.x26{left:345.600000pt;}
.x54{left:346.720000pt;}
.x5e{left:349.440000pt;}
.x55{left:353.278667pt;}
.xe{left:355.400000pt;}
.x5f{left:357.920000pt;}
.x4b{left:360.800000pt;}
.x7a{left:362.720000pt;}
.x79{left:363.840000pt;}
.x11{left:366.560000pt;}
.x4c{left:369.440000pt;}
.x29{left:370.560000pt;}
.x62{left:373.733333pt;}
.x12{left:377.120000pt;}
.x5c{left:380.160000pt;}
.x27{left:381.920000pt;}
.x38{left:383.360000pt;}
.x28{left:387.840000pt;}
.x6{left:390.240000pt;}
.x48{left:399.520000pt;}
.x73{left:402.560000pt;}
.x3{left:410.333333pt;}
.x2f{left:413.600000pt;}
.x39{left:416.478667pt;}
.x30{left:418.240000pt;}
.x3a{left:424.160000pt;}
.x2a{left:425.278667pt;}
.x4d{left:434.078667pt;}
.x15{left:437.760000pt;}
.x66{left:442.066667pt;}
.x13{left:449.120000pt;}
.x7b{left:450.560000pt;}
.x14{left:452.160000pt;}
.x45{left:455.678667pt;}
.x49{left:456.640000pt;}
.x16{left:457.600000pt;}
.x3b{left:460.160000pt;}
.x4a{left:463.200000pt;}
.x2b{left:470.878667pt;}
.x2c{left:475.360000pt;}
.x46{left:477.920000pt;}
.xf{left:480.000000pt;}
.x3c{left:481.600000pt;}
.x47{left:485.600000pt;}
.x2e{left:487.200000pt;}
.x58{left:496.000000pt;}
.x2d{left:499.360000pt;}
.x9{left:502.400000pt;}
.x67{left:510.866667pt;}
.x8{left:528.160000pt;}
.x63{left:565.733333pt;}
.x68{left:581.066667pt;}
.x10{left:604.600000pt;}
.x64{left:629.733333pt;}
.x7{left:640.160000pt;}
.x74{left:643.520000pt;}
.x59{left:645.120000pt;}
.x2{left:649.920000pt;}
.x75{left:652.160000pt;}
.x5a{left:665.758667pt;}
.x31{left:724.320000pt;}
}




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