
    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_ade6b90ed7411ff7470d1dce.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_33490ca20a4fb7195db69fcd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_19cd883c36182338109ee0a6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e0cd2743e138dc923be28aab.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_fd93078a32f5f13fccddbb28.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.867676;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_ba64973a108136fcdfe5946f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_aa4c489eb04a0d8154c68636.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.891113;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_7147331917615ce9194fdeca.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.873535;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_3d86ee9acc9562e540c758dc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.871094;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_9f093a2c19eb9f6c984d61be.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.857910;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_f51936e4323f21773bf192c8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.922363;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_187c0cb4c73f91815168732a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.992188;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.074400px;}
.ls3{letter-spacing:0.215100px;}
.ls7{letter-spacing:18.577200px;}
.ls1{letter-spacing:22.400400px;}
.ls2{letter-spacing:35.137200px;}
.lsf{letter-spacing:36.515700px;}
.ls15{letter-spacing:40.668000px;}
.ls6{letter-spacing:76.848300px;}
.ls5{letter-spacing:77.568300px;}
.ls13{letter-spacing:81.875700px;}
.ls14{letter-spacing:89.075700px;}
.lsd{letter-spacing:99.875700px;}
.lsc{letter-spacing:103.475700px;}
.ls8{letter-spacing:114.995700px;}
.ls12{letter-spacing:125.795700px;}
.ls10{letter-spacing:132.275700px;}
.ls11{letter-spacing:148.115700px;}
.lse{letter-spacing:151.715700px;}
.lsb{letter-spacing:155.315700px;}
.ls9{letter-spacing:166.115700px;}
.lsa{letter-spacing:192.041700px;}
.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;}
}
.ws4{word-spacing:-57.762600px;}
.ws3{word-spacing:-57.552600px;}
.ws5{word-spacing:-57.552000px;}
.ws6{word-spacing:-57.292200px;}
.wsf{word-spacing:-49.725000px;}
.ws0{word-spacing:-44.788500px;}
.ws1{word-spacing:-44.469000px;}
.ws2{word-spacing:-44.463900px;}
.wsb5{word-spacing:-40.500000px;}
.ws10{word-spacing:-38.652900px;}
.ws9{word-spacing:-32.186700px;}
.wsb{word-spacing:-32.176500px;}
.ws77{word-spacing:-32.084700px;}
.ws1c{word-spacing:-32.079600px;}
.ws155{word-spacing:-32.062500px;}
.ws11{word-spacing:-32.059200px;}
.ws15{word-spacing:-31.962300px;}
.ws16b{word-spacing:-31.955400px;}
.ws1b{word-spacing:-31.942800px;}
.ws1e{word-spacing:-31.938300px;}
.ws1d{word-spacing:-31.932900px;}
.ws85{word-spacing:-31.867800px;}
.ws162{word-spacing:-31.865100px;}
.ws109{word-spacing:-31.862400px;}
.ws5f{word-spacing:-31.857000px;}
.ws15f{word-spacing:-31.854000px;}
.ws3f{word-spacing:-31.851600px;}
.ws61{word-spacing:-31.842600px;}
.ws42{word-spacing:-31.840800px;}
.ws89{word-spacing:-31.834500px;}
.ws91{word-spacing:-31.746000px;}
.ws5c{word-spacing:-31.726200px;}
.wsc1{word-spacing:-31.697100px;}
.wsb6{word-spacing:-31.482000px;}
.ws7{word-spacing:-31.469400px;}
.ws1f{word-spacing:-31.393800px;}
.ws71{word-spacing:-31.364700px;}
.ws12{word-spacing:-31.353600px;}
.ws76{word-spacing:-31.240800px;}
.ws8a{word-spacing:-31.147800px;}
.wsb1{word-spacing:-31.139700px;}
.ws97{word-spacing:-31.131600px;}
.wse3{word-spacing:-30.427800px;}
.ws27{word-spacing:-29.308500px;}
.ws54{word-spacing:-28.487400px;}
.ws131{word-spacing:-27.526200px;}
.ws2a{word-spacing:-26.429400px;}
.ws58{word-spacing:-26.097000px;}
.ws59{word-spacing:-25.368600px;}
.ws40{word-spacing:-23.922600px;}
.ws2d{word-spacing:-23.222400px;}
.ws134{word-spacing:-22.452600px;}
.wsf2{word-spacing:-22.007400px;}
.ws164{word-spacing:-21.515400px;}
.ws5e{word-spacing:-21.500100px;}
.ws15e{word-spacing:-21.402600px;}
.wsa8{word-spacing:-21.398100px;}
.ws92{word-spacing:-21.397500px;}
.ws49{word-spacing:-21.393900px;}
.ws166{word-spacing:-21.389400px;}
.ws2c{word-spacing:-21.386700px;}
.ws3c{word-spacing:-21.373200px;}
.wsac{word-spacing:-21.260100px;}
.ws96{word-spacing:-21.114600px;}
.wsd3{word-spacing:-21.057000px;}
.ws152{word-spacing:-21.015300px;}
.ws112{word-spacing:-21.013200px;}
.ws6d{word-spacing:-21.012600px;}
.ws12b{word-spacing:-21.009900px;}
.ws138{word-spacing:-21.006900px;}
.ws117{word-spacing:-21.005100px;}
.ws140{word-spacing:-21.004500px;}
.ws53{word-spacing:-21.003600px;}
.wsc6{word-spacing:-21.003300px;}
.ws64{word-spacing:-21.000900px;}
.ws133{word-spacing:-20.988300px;}
.ws75{word-spacing:-20.974800px;}
.wsd0{word-spacing:-20.968800px;}
.ws15c{word-spacing:-20.966700px;}
.ws7d{word-spacing:-20.955300px;}
.ws108{word-spacing:-20.892000px;}
.ws30{word-spacing:-20.799000px;}
.wsfe{word-spacing:-20.796300px;}
.wsa{word-spacing:-20.795700px;}
.ws106{word-spacing:-20.793600px;}
.ws5b{word-spacing:-20.793000px;}
.ws60{word-spacing:-20.790300px;}
.ws16{word-spacing:-20.789700px;}
.ws68{word-spacing:-20.789400px;}
.ws18{word-spacing:-20.787600px;}
.ws72{word-spacing:-20.786700px;}
.ws57{word-spacing:-20.784900px;}
.ws161{word-spacing:-20.784300px;}
.ws19{word-spacing:-20.782200px;}
.ws9e{word-spacing:-20.781300px;}
.ws165{word-spacing:-20.770500px;}
.ws160{word-spacing:-20.768100px;}
.wsc{word-spacing:-20.688900px;}
.wsea{word-spacing:-20.680200px;}
.ws13{word-spacing:-20.676900px;}
.wsfc{word-spacing:-20.675400px;}
.ws1a{word-spacing:-20.674800px;}
.ws167{word-spacing:-20.672100px;}
.ws74{word-spacing:-20.671200px;}
.ws169{word-spacing:-20.669400px;}
.ws17{word-spacing:-20.664000px;}
.wsc5{word-spacing:-20.424900px;}
.wse4{word-spacing:-20.410800px;}
.ws29{word-spacing:-20.405400px;}
.ws157{word-spacing:-20.383800px;}
.ws154{word-spacing:-20.304000px;}
.ws153{word-spacing:-20.295300px;}
.ws127{word-spacing:-20.292600px;}
.ws10d{word-spacing:-20.287200px;}
.wsd{word-spacing:-20.279100px;}
.ws163{word-spacing:-20.273700px;}
.ws69{word-spacing:-20.271000px;}
.wse2{word-spacing:-20.248800px;}
.ws5d{word-spacing:-20.079000px;}
.ws26{word-spacing:-20.075700px;}
.ws86{word-spacing:-20.073000px;}
.ws8{word-spacing:-20.070300px;}
.ws12d{word-spacing:-20.064900px;}
.ws16a{word-spacing:-20.062200px;}
.ws3b{word-spacing:-20.042400px;}
.ws70{word-spacing:-19.962900px;}
.wsf8{word-spacing:-19.960200px;}
.wsd7{word-spacing:-19.954800px;}
.ws14{word-spacing:-19.951200px;}
.ws168{word-spacing:-19.949400px;}
.ws146{word-spacing:-19.574400px;}
.wsf0{word-spacing:-19.359000px;}
.ws9d{word-spacing:-19.353600px;}
.ws28{word-spacing:-19.353000px;}
.wsab{word-spacing:-19.344900px;}
.wsca{word-spacing:-19.331400px;}
.wse5{word-spacing:-19.242900px;}
.wsf6{word-spacing:-19.229400px;}
.wsaf{word-spacing:-18.908400px;}
.wsae{word-spacing:-18.897000px;}
.ws14b{word-spacing:-18.855300px;}
.wsc7{word-spacing:-18.635700px;}
.ws6c{word-spacing:-18.633000px;}
.wsd8{word-spacing:-18.624900px;}
.wsf7{word-spacing:-18.618600px;}
.ws82{word-spacing:-18.514800px;}
.ws10c{word-spacing:-18.231900px;}
.wse9{word-spacing:-17.919000px;}
.ws55{word-spacing:-17.915700px;}
.ws9f{word-spacing:-17.913000px;}
.ws48{word-spacing:-17.909400px;}
.wsdb{word-spacing:-17.902200px;}
.ws20{word-spacing:-17.806200px;}
.ws129{word-spacing:-17.442600px;}
.ws14c{word-spacing:-17.438100px;}
.ws116{word-spacing:-17.415300px;}
.wsee{word-spacing:-17.401800px;}
.ws9a{word-spacing:-17.400900px;}
.ws8c{word-spacing:-17.358000px;}
.wsad{word-spacing:-17.199000px;}
.wsa3{word-spacing:-17.195700px;}
.wsa4{word-spacing:-17.190300px;}
.ws4a{word-spacing:-17.184900px;}
.ws50{word-spacing:-17.182200px;}
.ws39{word-spacing:-17.176800px;}
.ws8b{word-spacing:-17.077500px;}
.ws90{word-spacing:-17.072100px;}
.ws31{word-spacing:-17.058600px;}
.wsb8{word-spacing:-16.926000px;}
.wsba{word-spacing:-16.918800px;}
.wsbf{word-spacing:-16.918200px;}
.wsbb{word-spacing:-16.914600px;}
.wsc2{word-spacing:-16.855500px;}
.wsb9{word-spacing:-16.728000px;}
.wsb7{word-spacing:-16.722000px;}
.ws51{word-spacing:-16.692600px;}
.ws132{word-spacing:-16.684500px;}
.ws100{word-spacing:-16.683600px;}
.wsa1{word-spacing:-16.479000px;}
.wscb{word-spacing:-16.475700px;}
.wsbe{word-spacing:-16.462200px;}
.wsd1{word-spacing:-16.459500px;}
.ws107{word-spacing:-16.458600px;}
.wsd2{word-spacing:-16.228200px;}
.wsbc{word-spacing:-16.198200px;}
.wsc0{word-spacing:-16.196400px;}
.wsbd{word-spacing:-16.192200px;}
.ws130{word-spacing:-16.074600px;}
.ws125{word-spacing:-15.996600px;}
.ws12f{word-spacing:-15.975300px;}
.ws4d{word-spacing:-15.753000px;}
.wse6{word-spacing:-15.750300px;}
.ws13e{word-spacing:-15.282600px;}
.ws147{word-spacing:-15.261300px;}
.ws114{word-spacing:-15.252600px;}
.wsf4{word-spacing:-15.036300px;}
.ws24{word-spacing:-15.033000px;}
.ws2f{word-spacing:-15.024900px;}
.ws43{word-spacing:-15.024300px;}
.ws22{word-spacing:-14.785800px;}
.ws5a{word-spacing:-14.648100px;}
.ws7a{word-spacing:-14.587800px;}
.ws7b{word-spacing:-14.582400px;}
.wsa2{word-spacing:-14.543100px;}
.ws135{word-spacing:-14.535300px;}
.ws137{word-spacing:-14.319000px;}
.ws145{word-spacing:-14.307600px;}
.ws98{word-spacing:-14.302200px;}
.wsec{word-spacing:-14.187300px;}
.wsf1{word-spacing:-14.184600px;}
.ws13b{word-spacing:-13.836600px;}
.ws16d{word-spacing:-13.611600px;}
.ws3e{word-spacing:-13.595700px;}
.ws56{word-spacing:-13.587000px;}
.ws126{word-spacing:-13.584900px;}
.ws9b{word-spacing:-13.579500px;}
.ws121{word-spacing:-13.126200px;}
.ws115{word-spacing:-13.095300px;}
.ws149{word-spacing:-13.087200px;}
.ws67{word-spacing:-13.082400px;}
.wsb2{word-spacing:-13.048800px;}
.wsd9{word-spacing:-12.870300px;}
.ws144{word-spacing:-12.862800px;}
.ws7e{word-spacing:-12.741300px;}
.ws148{word-spacing:-12.485400px;}
.ws41{word-spacing:-12.369900px;}
.wsaa{word-spacing:-12.150900px;}
.ws8e{word-spacing:-12.150300px;}
.ws11a{word-spacing:-12.042600px;}
.ws11d{word-spacing:-11.655300px;}
.ws83{word-spacing:-11.435700px;}
.wsf3{word-spacing:-11.433600px;}
.ws2e{word-spacing:-11.433000px;}
.wsa7{word-spacing:-11.420700px;}
.ws141{word-spacing:-10.935300px;}
.ws38{word-spacing:-10.715700px;}
.ws80{word-spacing:-10.702200px;}
.ws142{word-spacing:-10.593600px;}
.wsd4{word-spacing:-10.580700px;}
.ws3d{word-spacing:-10.086000px;}
.wsa6{word-spacing:-9.999000px;}
.ws52{word-spacing:-9.993000px;}
.ws62{word-spacing:-9.990300px;}
.ws88{word-spacing:-9.981300px;}
.ws111{word-spacing:-9.873900px;}
.wsed{word-spacing:-9.597300px;}
.wsfb{word-spacing:-9.281700px;}
.wsa0{word-spacing:-9.279000px;}
.ws4b{word-spacing:-9.275700px;}
.wsdd{word-spacing:-9.264300px;}
.ws105{word-spacing:-9.138600px;}
.ws102{word-spacing:-8.756400px;}
.wsdc{word-spacing:-8.559000px;}
.wsc8{word-spacing:-8.553000px;}
.ws16c{word-spacing:-8.136000px;}
.ws12c{word-spacing:-8.049300px;}
.ws21{word-spacing:-8.002800px;}
.wseb{word-spacing:-7.926000px;}
.wscf{word-spacing:-7.835700px;}
.ws87{word-spacing:-7.833000px;}
.ws6b{word-spacing:-7.722900px;}
.wsa5{word-spacing:-7.115700px;}
.ws32{word-spacing:-6.998100px;}
.wsb0{word-spacing:-6.994800px;}
.ws101{word-spacing:-6.989400px;}
.wsb3{word-spacing:-6.659700px;}
.ws12a{word-spacing:-6.621300px;}
.ws4e{word-spacing:-6.393000px;}
.ws25{word-spacing:-6.288900px;}
.ws10f{word-spacing:-5.926200px;}
.ws14a{word-spacing:-5.895300px;}
.ws124{word-spacing:-5.679000px;}
.wsde{word-spacing:-5.670300px;}
.ws113{word-spacing:-5.175300px;}
.ws10a{word-spacing:-4.955700px;}
.wsfa{word-spacing:-4.948200px;}
.wsc4{word-spacing:-4.584000px;}
.wscd{word-spacing:-4.561800px;}
.ws95{word-spacing:-4.538700px;}
.ws14e{word-spacing:-4.224900px;}
.ws23{word-spacing:-4.214100px;}
.ws6e{word-spacing:-4.120200px;}
.ws7c{word-spacing:-4.110000px;}
.ws79{word-spacing:-4.106700px;}
.ws13f{word-spacing:-3.510300px;}
.ws13a{word-spacing:-3.507600px;}
.wsa9{word-spacing:-3.121800px;}
.ws8f{word-spacing:-3.001200px;}
.ws6f{word-spacing:-2.799000px;}
.wsce{word-spacing:-2.793000px;}
.ws81{word-spacing:-2.789700px;}
.ws33{word-spacing:-2.784900px;}
.ws15d{word-spacing:-2.782200px;}
.ws13c{word-spacing:-2.410800px;}
.ws15a{word-spacing:-2.400000px;}
.ws65{word-spacing:-2.337000px;}
.ws15b{word-spacing:-2.075700px;}
.ws4f{word-spacing:-2.070300px;}
.ws128{word-spacing:-2.062200px;}
.ws78{word-spacing:-1.941300px;}
.ws120{word-spacing:-1.935900px;}
.ws122{word-spacing:-1.680000px;}
.ws94{word-spacing:-1.353000px;}
.ws44{word-spacing:-1.344900px;}
.ws47{word-spacing:-0.878100px;}
.ws136{word-spacing:-0.852600px;}
.wse0{word-spacing:-0.635700px;}
.wsd6{word-spacing:-0.630300px;}
.ws63{word-spacing:-0.622200px;}
.ws10b{word-spacing:-0.504000px;}
.ws11c{word-spacing:-0.168600px;}
.ws150{word-spacing:-0.164100px;}
.ws14d{word-spacing:-0.110400px;}
.wse{word-spacing:0.000000px;}
.ws93{word-spacing:0.089700px;}
.ws35{word-spacing:0.207300px;}
.ws123{word-spacing:0.578700px;}
.ws7f{word-spacing:0.807000px;}
.ws73{word-spacing:0.810300px;}
.wsc9{word-spacing:1.200900px;}
.ws139{word-spacing:1.304700px;}
.wse7{word-spacing:1.645200px;}
.wsff{word-spacing:1.650600px;}
.wsda{word-spacing:2.263200px;}
.ws143{word-spacing:2.744700px;}
.ws99{word-spacing:2.964300px;}
.wse1{word-spacing:2.966400px;}
.wsdf{word-spacing:2.975100px;}
.ws37{word-spacing:3.219900px;}
.wsb4{word-spacing:3.687000px;}
.wse8{word-spacing:4.407000px;}
.ws119{word-spacing:4.423200px;}
.ws34{word-spacing:4.513800px;}
.wsf5{word-spacing:4.912800px;}
.ws110{word-spacing:4.915500px;}
.ws10e{word-spacing:5.624700px;}
.wsef{word-spacing:5.642400px;}
.ws12e{word-spacing:5.984100px;}
.ws103{word-spacing:6.564300px;}
.wscc{word-spacing:6.567000px;}
.ws36{word-spacing:6.569700px;}
.ws4c{word-spacing:7.292400px;}
.wsc3{word-spacing:7.297800px;}
.wsfd{word-spacing:8.006400px;}
.ws9c{word-spacing:8.036700px;}
.ws66{word-spacing:8.402700px;}
.ws118{word-spacing:8.510700px;}
.ws8d{word-spacing:8.721000px;}
.ws45{word-spacing:10.167300px;}
.ws11b{word-spacing:10.672800px;}
.ws6a{word-spacing:10.884300px;}
.ws2b{word-spacing:10.887000px;}
.ws14f{word-spacing:10.889100px;}
.ws104{word-spacing:10.892400px;}
.ws46{word-spacing:10.911300px;}
.ws151{word-spacing:10.997100px;}
.ws3a{word-spacing:11.277600px;}
.ws156{word-spacing:14.966100px;}
.ws159{word-spacing:15.935100px;}
.ws84{word-spacing:23.118300px;}
.wsf9{word-spacing:24.567000px;}
.ws11f{word-spacing:26.512800px;}
.ws13d{word-spacing:27.449700px;}
.ws11e{word-spacing:36.806400px;}
.wsd5{word-spacing:37.661400px;}
.ws158{word-spacing:572.610600px;}
._27{margin-left:-6.926400px;}
._29{margin-left:-4.896600px;}
._28{margin-left:-3.297300px;}
._1e{margin-left:-2.221200px;}
._2{margin-left:-1.149300px;}
._1{width:1.101000px;}
._18{width:15.822000px;}
._7{width:17.465100px;}
._3{width:19.339500px;}
._8{width:20.685000px;}
._6{width:22.326000px;}
._15{width:23.893800px;}
._20{width:24.906000px;}
._a{width:26.060700px;}
._11{width:27.378600px;}
._0{width:28.719300px;}
._17{width:30.028500px;}
._4{width:31.927500px;}
._b{width:33.487200px;}
._5{width:35.529000px;}
._c{width:37.428600px;}
._12{width:38.665200px;}
._e{width:40.031400px;}
._d{width:41.743800px;}
._1a{width:43.025700px;}
._f{width:44.058900px;}
._1b{width:45.379800px;}
._14{width:47.044200px;}
._9{width:48.468000px;}
._13{width:49.889100px;}
._10{width:51.379200px;}
._16{width:52.772100px;}
._22{width:55.272600px;}
._1c{width:64.924800px;}
._1d{width:66.265500px;}
._1f{width:67.597500px;}
._19{width:74.922900px;}
._24{width:85.922100px;}
._21{width:187.412400px;}
._25{width:189.594900px;}
._23{width:196.529100px;}
._26{width:464.090700px;}
.fc2{color:rgb(157,195,230);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs4{font-size:42.600000px;}
.fs5{font-size:54.000000px;}
.fs8{font-size:59.700000px;}
.fs0{font-size:62.700000px;}
.fs3{font-size:66.300000px;}
.fs6{font-size:84.300000px;}
.fs1{font-size:95.700000px;}
.fs2{font-size:120.300000px;}
.y0{bottom:0.000000px;}
.y53{bottom:5.671500px;}
.y55{bottom:5.700000px;}
.y57{bottom:5.790000px;}
.y6e{bottom:10.500000px;}
.y84{bottom:10.515000px;}
.y8a{bottom:10.545000px;}
.y8e{bottom:10.546500px;}
.y82{bottom:10.561500px;}
.y86{bottom:10.575000px;}
.y6b{bottom:10.590000px;}
.y76{bottom:10.605000px;}
.y73{bottom:10.620000px;}
.y69{bottom:10.636500px;}
.y66{bottom:10.650000px;}
.y71{bottom:10.665000px;}
.y7a{bottom:10.695000px;}
.y91{bottom:10.696500px;}
.y93{bottom:11.400000px;}
.y1f{bottom:12.900000px;}
.y13{bottom:12.915000px;}
.y11{bottom:12.930000px;}
.y18{bottom:12.945000px;}
.y21{bottom:12.961500px;}
.y15{bottom:12.975000px;}
.y25{bottom:13.005000px;}
.y23{bottom:13.020000px;}
.y29{bottom:13.050000px;}
.y27{bottom:13.065000px;}
.y2b{bottom:13.111500px;}
.ya7{bottom:13.846500px;}
.y89{bottom:33.765000px;}
.y81{bottom:33.780000px;}
.y7f{bottom:33.796500px;}
.y7d{bottom:33.811500px;}
.y75{bottom:33.825000px;}
.y68{bottom:33.855000px;}
.y70{bottom:33.886500px;}
.y6d{bottom:33.900000px;}
.y79{bottom:33.915000px;}
.y17{bottom:41.386500px;}
.y1e{bottom:41.520000px;}
.ya6{bottom:42.286500px;}
.y9{bottom:52.905000px;}
.y78{bottom:57.136500px;}
.y1d{bottom:69.961500px;}
.ya5{bottom:70.725000px;}
.y1{bottom:76.575000px;}
.y145{bottom:79.231500px;}
.y144{bottom:90.031500px;}
.y1c{bottom:98.400000px;}
.ya4{bottom:99.165000px;}
.y143{bottom:100.831500px;}
.y8{bottom:104.746500px;}
.y4f{bottom:110.236500px;}
.yd2{bottom:113.296500px;}
.y49{bottom:116.715000px;}
.y97{bottom:120.136500px;}
.y142{bottom:122.431500px;}
.y1b{bottom:126.840000px;}
.ya3{bottom:127.605000px;}
.y141{bottom:133.231500px;}
.y4e{bottom:138.675000px;}
.y140{bottom:144.031500px;}
.y48{bottom:144.975000px;}
.yd1{bottom:146.236500px;}
.y96{bottom:148.575000px;}
.y5f{bottom:154.515000px;}
.y1a{bottom:155.280000px;}
.y7{bottom:156.405000px;}
.ya2{bottom:157.125000px;}
.ye{bottom:162.796500px;}
.y4d{bottom:167.115000px;}
.y13c{bottom:172.776000px;}
.y47{bottom:173.596500px;}
.y95{bottom:177.015000px;}
.yd0{bottom:178.996500px;}
.y5e{bottom:182.775000px;}
.y51{bottom:185.836500px;}
.ya1{bottom:186.825000px;}
.y62{bottom:202.036500px;}
.y94{bottom:205.455000px;}
.y6{bottom:208.246500px;}
.y5d{bottom:211.396500px;}
.ycf{bottom:211.936500px;}
.y50{bottom:214.275000px;}
.ya0{bottom:215.265000px;}
.y13b{bottom:216.070500px;}
.y92{bottom:220.875000px;}
.y13a{bottom:226.870500px;}
.y61{bottom:230.475000px;}
.y139{bottom:237.670500px;}
.yce{bottom:242.715000px;}
.y9f{bottom:243.525000px;}
.y90{bottom:245.700000px;}
.yd{bottom:248.115000px;}
.y54{bottom:256.275000px;}
.y56{bottom:258.525000px;}
.y46{bottom:258.915000px;}
.y138{bottom:259.270500px;}
.y137{bottom:270.070500px;}
.y9e{bottom:273.225000px;}
.y45{bottom:287.355000px;}
.y136{bottom:291.670500px;}
.yfa{bottom:297.037500px;}
.ycd{bottom:299.775000px;}
.y9d{bottom:301.665000px;}
.yc{bottom:304.996500px;}
.yf9{bottom:307.837500px;}
.y135{bottom:313.270500px;}
.y44{bottom:315.795000px;}
.y8f{bottom:316.275000px;}
.yf8{bottom:318.637500px;}
.y134{bottom:324.070500px;}
.yf7{bottom:329.437500px;}
.y9c{bottom:331.186500px;}
.yb{bottom:333.615000px;}
.yf6{bottom:340.237500px;}
.y8d{bottom:340.350000px;}
.y43{bottom:344.236500px;}
.y133{bottom:345.670500px;}
.ycc{bottom:356.655000px;}
.y9b{bottom:360.886500px;}
.yf5{bottom:361.837500px;}
.ya{bottom:361.875000px;}
.y132{bottom:367.270500px;}
.yf4{bottom:372.637500px;}
.y60{bottom:372.675000px;}
.ycb{bottom:385.096500px;}
.y8c{bottom:387.675000px;}
.y9a{bottom:389.325000px;}
.yf3{bottom:394.237500px;}
.y131{bottom:394.561500px;}
.y42{bottom:401.115000px;}
.yf2{bottom:405.037500px;}
.y8b{bottom:411.675000px;}
.yf1{bottom:415.837500px;}
.y99{bottom:417.765000px;}
.yf0{bottom:426.637500px;}
.y41{bottom:429.736500px;}
.y5{bottom:434.250000px;}
.y88{bottom:435.750000px;}
.y130{bottom:438.511500px;}
.yca{bottom:444.136500px;}
.yef{bottom:448.237500px;}
.y12f{bottom:449.311500px;}
.yae{bottom:449.896500px;}
.y40{bottom:458.175000px;}
.yee{bottom:459.037500px;}
.y12e{bottom:460.111500px;}
.y12d{bottom:470.911500px;}
.yc9{bottom:474.915000px;}
.yad{bottom:478.515000px;}
.y12c{bottom:481.711500px;}
.y87{bottom:483.075000px;}
.y3f{bottom:486.615000px;}
.y12b{bottom:492.511500px;}
.yff{bottom:494.872500px;}
.y64{bottom:495.975000px;}
.y12a{bottom:503.311500px;}
.yac{bottom:506.775000px;}
.y129{bottom:514.111500px;}
.y3e{bottom:515.055000px;}
.y5c{bottom:522.975000px;}
.y63{bottom:524.596500px;}
.y128{bottom:524.911500px;}
.y85{bottom:530.400000px;}
.yc8{bottom:533.775000px;}
.yab{bottom:535.396500px;}
.y127{bottom:535.711500px;}
.yed{bottom:536.194500px;}
.y100{bottom:538.509000px;}
.y3d{bottom:543.496500px;}
.y126{bottom:546.511500px;}
.yec{bottom:546.994500px;}
.y5b{bottom:551.415000px;}
.y83{bottom:554.400000px;}
.yaa{bottom:563.836500px;}
.yc7{bottom:566.715000px;}
.y125{bottom:568.111500px;}
.yeb{bottom:568.594500px;}
.y3c{bottom:571.936500px;}
.yfe{bottom:575.562000px;}
.y80{bottom:578.475000px;}
.yea{bottom:579.394500px;}
.y5a{bottom:579.855000px;}
.y106{bottom:580.522500px;}
.y105{bottom:591.322500px;}
.ya9{bottom:592.275000px;}
.y124{bottom:596.475000px;}
.yc6{bottom:599.655000px;}
.y3b{bottom:600.375000px;}
.ye9{bottom:600.994500px;}
.y104{bottom:602.122500px;}
.y59{bottom:608.475000px;}
.y52{bottom:610.725000px;}
.ye8{bottom:611.794500px;}
.y103{bottom:612.922500px;}
.yfd{bottom:619.950000px;}
.ya8{bottom:620.715000px;}
.ybe{bottom:622.155000px;}
.ye7{bottom:622.594500px;}
.y102{bottom:623.722500px;}
.y7e{bottom:625.800000px;}
.y3a{bottom:628.815000px;}
.yc5{bottom:632.596500px;}
.ye6{bottom:633.394500px;}
.y2a{bottom:644.325000px;}
.ybd{bottom:650.775000px;}
.y123{bottom:657.430500px;}
.y39{bottom:657.436500px;}
.y101{bottom:661.135500px;}
.yfc{bottom:662.575500px;}
.y98{bottom:664.650000px;}
.y58{bottom:665.355000px;}
.yc4{bottom:665.536500px;}
.y122{bottom:668.230500px;}
.y28{bottom:672.825000px;}
.y7c{bottom:673.125000px;}
.y121{bottom:679.030500px;}
.ybc{bottom:679.215000px;}
.y4c{bottom:685.875000px;}
.y120{bottom:689.830500px;}
.yc3{bottom:698.475000px;}
.y26{bottom:701.250000px;}
.y11f{bottom:711.430500px;}
.y38{bottom:714.315000px;}
.y7b{bottom:720.450000px;}
.y11e{bottom:722.230500px;}
.y24{bottom:729.750000px;}
.yc2{bottom:731.415000px;}
.y37{bottom:742.755000px;}
.y11d{bottom:743.830500px;}
.y22{bottom:758.175000px;}
.yc1{bottom:762.375000px;}
.ybb{bottom:764.536500px;}
.y11c{bottom:765.430500px;}
.y77{bottom:767.700000px;}
.y4{bottom:770.475000px;}
.y36{bottom:771.195000px;}
.y11b{bottom:776.230500px;}
.yd9{bottom:779.475000px;}
.y20{bottom:786.675000px;}
.y11a{bottom:787.030500px;}
.yba{bottom:792.975000px;}
.y119{bottom:797.830500px;}
.y35{bottom:799.636500px;}
.y3{bottom:811.875000px;}
.yd8{bottom:812.415000px;}
.y19{bottom:815.175000px;}
.y118{bottom:819.430500px;}
.yb9{bottom:821.415000px;}
.y34{bottom:828.075000px;}
.y117{bottom:830.230500px;}
.y74{bottom:838.350000px;}
.y116{bottom:841.030500px;}
.yd7{bottom:843.195000px;}
.ye5{bottom:849.946500px;}
.yb8{bottom:851.115000px;}
.y115{bottom:851.830500px;}
.yc0{bottom:852.015000px;}
.y2{bottom:853.275000px;}
.y33{bottom:856.515000px;}
.ye4{bottom:860.746500px;}
.y114{bottom:862.630500px;}
.yb7{bottom:879.375000px;}
.ye3{bottom:882.346500px;}
.ybf{bottom:882.615000px;}
.y4b{bottom:884.955000px;}
.y72{bottom:885.675000px;}
.yd6{bottom:902.236500px;}
.ye2{bottom:903.946500px;}
.yb6{bottom:908.895000px;}
.y6f{bottom:909.750000px;}
.y32{bottom:913.575000px;}
.ye1{bottom:914.746500px;}
.ye0{bottom:925.546500px;}
.yd5{bottom:935.175000px;}
.ydf{bottom:936.346500px;}
.yb5{bottom:938.595000px;}
.y31{bottom:942.015000px;}
.y6c{bottom:957.075000px;}
.y113{bottom:959.830500px;}
.yfb{bottom:961.825500px;}
.yd4{bottom:965.955000px;}
.yb4{bottom:967.036500px;}
.y4a{bottom:970.455000px;}
.y112{bottom:970.630500px;}
.y111{bottom:981.430500px;}
.y16{bottom:985.950000px;}
.y110{bottom:992.230500px;}
.yb3{bottom:995.475000px;}
.y30{bottom:998.895000px;}
.y10f{bottom:1003.030500px;}
.y6a{bottom:1004.325000px;}
.y10e{bottom:1013.830500px;}
.y13f{bottom:1014.058500px;}
.y10d{bottom:1024.630500px;}
.y13e{bottom:1024.858500px;}
.yd3{bottom:1024.995000px;}
.yb2{bottom:1025.175000px;}
.y2f{bottom:1027.336500px;}
.y67{bottom:1028.400000px;}
.yde{bottom:1029.366000px;}
.y10c{bottom:1035.430500px;}
.y13d{bottom:1035.658500px;}
.y14{bottom:1042.800000px;}
.yb1{bottom:1053.436500px;}
.ydd{bottom:1054.566000px;}
.y2e{bottom:1055.775000px;}
.y10b{bottom:1057.030500px;}
.y10a{bottom:1067.830500px;}
.y12{bottom:1071.300000px;}
.y65{bottom:1075.725000px;}
.y109{bottom:1078.630500px;}
.ydc{bottom:1079.766000px;}
.yb0{bottom:1083.136500px;}
.y2d{bottom:1084.215000px;}
.y108{bottom:1089.430500px;}
.y10{bottom:1099.725000px;}
.ydb{bottom:1104.966000px;}
.yaf{bottom:1111.575000px;}
.y2c{bottom:1112.655000px;}
.y107{bottom:1124.239500px;}
.yda{bottom:1130.166000px;}
.yf{bottom:1141.095000px;}
.hd{height:20.700000px;}
.hf{height:24.000000px;}
.h14{height:24.825000px;}
.h1b{height:24.943359px;}
.h1d{height:25.031250px;}
.h1e{height:28.142578px;}
.h8{height:28.425000px;}
.hb{height:28.500000px;}
.h2{height:41.789795px;}
.he{height:43.596094px;}
.h11{height:47.250000px;}
.h12{height:48.410156px;}
.h10{height:48.752930px;}
.h1c{height:54.307178px;}
.h9{height:56.850000px;}
.h1a{height:58.614844px;}
.h7{height:59.436914px;}
.hc{height:59.790234px;}
.h6{height:59.857764px;}
.h16{height:60.150914px;}
.h17{height:60.156914px;}
.h18{height:60.162914px;}
.h13{height:70.575000px;}
.h3{height:86.401025px;}
.h5{height:108.610693px;}
.ha{height:170.700000px;}
.h4{height:288.750000px;}
.h15{height:435.075000px;}
.h19{height:1170.000000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.wd{width:32.025000px;}
.w5{width:37.125000px;}
.wb{width:42.600000px;}
.w7{width:53.175000px;}
.w6{width:53.250000px;}
.wa{width:63.825000px;}
.w3{width:68.250000px;}
.wc{width:74.475000px;}
.w8{width:85.125000px;}
.w9{width:106.425000px;}
.w4{width:539.775000px;}
.w2{width:637.125000px;}
.we{width:648.375000px;}
.wf{width:810.000000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.445000px;}
.x26{left:9.585000px;}
.x12{left:10.830000px;}
.x2d{left:11.835000px;}
.xf{left:12.945000px;}
.x28{left:14.625000px;}
.x25{left:17.938500px;}
.x24{left:19.095000px;}
.xe{left:22.125000px;}
.x2a{left:23.805000px;}
.x10{left:24.825000px;}
.x2c{left:25.875000px;}
.x2e{left:27.345000px;}
.xd{left:29.505000px;}
.x29{left:31.455000px;}
.x2f{left:33.613500px;}
.x27{left:35.595000px;}
.x30{left:39.735000px;}
.x2b{left:48.375000px;}
.x7{left:51.885000px;}
.x33{left:54.216000px;}
.x36{left:59.979000px;}
.x37{left:61.629000px;}
.x35{left:66.375000px;}
.x34{left:67.935000px;}
.x8{left:88.425000px;}
.x19{left:106.200000px;}
.x6{left:116.863500px;}
.x5{left:119.475000px;}
.x9{left:127.620000px;}
.x17{left:132.120000px;}
.x1a{left:138.225000px;}
.x31{left:148.860000px;}
.x15{left:154.620000px;}
.x32{left:175.680000px;}
.x16{left:181.620000px;}
.x1b{left:191.400000px;}
.x41{left:240.067500px;}
.x1c{left:244.575000px;}
.x39{left:253.282500px;}
.x38{left:256.758000px;}
.x2{left:277.738500px;}
.x1d{left:297.675000px;}
.x13{left:335.175000px;}
.x3{left:339.120000px;}
.x4{left:351.720000px;}
.xa{left:368.280000px;}
.x1e{left:382.725000px;}
.x40{left:402.231000px;}
.x3e{left:406.203000px;}
.x3d{left:407.250000px;}
.x3b{left:409.180500px;}
.x3a{left:416.986500px;}
.x3f{left:418.953000px;}
.x3c{left:421.930500px;}
.x1f{left:489.075000px;}
.x20{left:552.825000px;}
.x21{left:595.350000px;}
.x22{left:648.525000px;}
.xb{left:659.175000px;}
.x14{left:707.550000px;}
.x11{left:709.350000px;}
.x23{left:722.925000px;}
.x18{left:749.520000px;}
.x1{left:757.438500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.066133pt;}
.ls3{letter-spacing:0.191200pt;}
.ls7{letter-spacing:16.513067pt;}
.ls1{letter-spacing:19.911467pt;}
.ls2{letter-spacing:31.233067pt;}
.lsf{letter-spacing:32.458400pt;}
.ls15{letter-spacing:36.149333pt;}
.ls6{letter-spacing:68.309600pt;}
.ls5{letter-spacing:68.949600pt;}
.ls13{letter-spacing:72.778400pt;}
.ls14{letter-spacing:79.178400pt;}
.lsd{letter-spacing:88.778400pt;}
.lsc{letter-spacing:91.978400pt;}
.ls8{letter-spacing:102.218400pt;}
.ls12{letter-spacing:111.818400pt;}
.ls10{letter-spacing:117.578400pt;}
.ls11{letter-spacing:131.658400pt;}
.lse{letter-spacing:134.858400pt;}
.lsb{letter-spacing:138.058400pt;}
.ls9{letter-spacing:147.658400pt;}
.lsa{letter-spacing:170.703733pt;}
.ws4{word-spacing:-51.344533pt;}
.ws3{word-spacing:-51.157867pt;}
.ws5{word-spacing:-51.157333pt;}
.ws6{word-spacing:-50.926400pt;}
.wsf{word-spacing:-44.200000pt;}
.ws0{word-spacing:-39.812000pt;}
.ws1{word-spacing:-39.528000pt;}
.ws2{word-spacing:-39.523467pt;}
.wsb5{word-spacing:-36.000000pt;}
.ws10{word-spacing:-34.358133pt;}
.ws9{word-spacing:-28.610400pt;}
.wsb{word-spacing:-28.601333pt;}
.ws77{word-spacing:-28.519733pt;}
.ws1c{word-spacing:-28.515200pt;}
.ws155{word-spacing:-28.500000pt;}
.ws11{word-spacing:-28.497067pt;}
.ws15{word-spacing:-28.410933pt;}
.ws16b{word-spacing:-28.404800pt;}
.ws1b{word-spacing:-28.393600pt;}
.ws1e{word-spacing:-28.389600pt;}
.ws1d{word-spacing:-28.384800pt;}
.ws85{word-spacing:-28.326933pt;}
.ws162{word-spacing:-28.324533pt;}
.ws109{word-spacing:-28.322133pt;}
.ws5f{word-spacing:-28.317333pt;}
.ws15f{word-spacing:-28.314667pt;}
.ws3f{word-spacing:-28.312533pt;}
.ws61{word-spacing:-28.304533pt;}
.ws42{word-spacing:-28.302933pt;}
.ws89{word-spacing:-28.297333pt;}
.ws91{word-spacing:-28.218667pt;}
.ws5c{word-spacing:-28.201067pt;}
.wsc1{word-spacing:-28.175200pt;}
.wsb6{word-spacing:-27.984000pt;}
.ws7{word-spacing:-27.972800pt;}
.ws1f{word-spacing:-27.905600pt;}
.ws71{word-spacing:-27.879733pt;}
.ws12{word-spacing:-27.869867pt;}
.ws76{word-spacing:-27.769600pt;}
.ws8a{word-spacing:-27.686933pt;}
.wsb1{word-spacing:-27.679733pt;}
.ws97{word-spacing:-27.672533pt;}
.wse3{word-spacing:-27.046933pt;}
.ws27{word-spacing:-26.052000pt;}
.ws54{word-spacing:-25.322133pt;}
.ws131{word-spacing:-24.467733pt;}
.ws2a{word-spacing:-23.492800pt;}
.ws58{word-spacing:-23.197333pt;}
.ws59{word-spacing:-22.549867pt;}
.ws40{word-spacing:-21.264533pt;}
.ws2d{word-spacing:-20.642133pt;}
.ws134{word-spacing:-19.957867pt;}
.wsf2{word-spacing:-19.562133pt;}
.ws164{word-spacing:-19.124800pt;}
.ws5e{word-spacing:-19.111200pt;}
.ws15e{word-spacing:-19.024533pt;}
.wsa8{word-spacing:-19.020533pt;}
.ws92{word-spacing:-19.020000pt;}
.ws49{word-spacing:-19.016800pt;}
.ws166{word-spacing:-19.012800pt;}
.ws2c{word-spacing:-19.010400pt;}
.ws3c{word-spacing:-18.998400pt;}
.wsac{word-spacing:-18.897867pt;}
.ws96{word-spacing:-18.768533pt;}
.wsd3{word-spacing:-18.717333pt;}
.ws152{word-spacing:-18.680267pt;}
.ws112{word-spacing:-18.678400pt;}
.ws6d{word-spacing:-18.677867pt;}
.ws12b{word-spacing:-18.675467pt;}
.ws138{word-spacing:-18.672800pt;}
.ws117{word-spacing:-18.671200pt;}
.ws140{word-spacing:-18.670667pt;}
.ws53{word-spacing:-18.669867pt;}
.wsc6{word-spacing:-18.669600pt;}
.ws64{word-spacing:-18.667467pt;}
.ws133{word-spacing:-18.656267pt;}
.ws75{word-spacing:-18.644267pt;}
.wsd0{word-spacing:-18.638933pt;}
.ws15c{word-spacing:-18.637067pt;}
.ws7d{word-spacing:-18.626933pt;}
.ws108{word-spacing:-18.570667pt;}
.ws30{word-spacing:-18.488000pt;}
.wsfe{word-spacing:-18.485600pt;}
.wsa{word-spacing:-18.485067pt;}
.ws106{word-spacing:-18.483200pt;}
.ws5b{word-spacing:-18.482667pt;}
.ws60{word-spacing:-18.480267pt;}
.ws16{word-spacing:-18.479733pt;}
.ws68{word-spacing:-18.479467pt;}
.ws18{word-spacing:-18.477867pt;}
.ws72{word-spacing:-18.477067pt;}
.ws57{word-spacing:-18.475467pt;}
.ws161{word-spacing:-18.474933pt;}
.ws19{word-spacing:-18.473067pt;}
.ws9e{word-spacing:-18.472267pt;}
.ws165{word-spacing:-18.462667pt;}
.ws160{word-spacing:-18.460533pt;}
.wsc{word-spacing:-18.390133pt;}
.wsea{word-spacing:-18.382400pt;}
.ws13{word-spacing:-18.379467pt;}
.wsfc{word-spacing:-18.378133pt;}
.ws1a{word-spacing:-18.377600pt;}
.ws167{word-spacing:-18.375200pt;}
.ws74{word-spacing:-18.374400pt;}
.ws169{word-spacing:-18.372800pt;}
.ws17{word-spacing:-18.368000pt;}
.wsc5{word-spacing:-18.155467pt;}
.wse4{word-spacing:-18.142933pt;}
.ws29{word-spacing:-18.138133pt;}
.ws157{word-spacing:-18.118933pt;}
.ws154{word-spacing:-18.048000pt;}
.ws153{word-spacing:-18.040267pt;}
.ws127{word-spacing:-18.037867pt;}
.ws10d{word-spacing:-18.033067pt;}
.wsd{word-spacing:-18.025867pt;}
.ws163{word-spacing:-18.021067pt;}
.ws69{word-spacing:-18.018667pt;}
.wse2{word-spacing:-17.998933pt;}
.ws5d{word-spacing:-17.848000pt;}
.ws26{word-spacing:-17.845067pt;}
.ws86{word-spacing:-17.842667pt;}
.ws8{word-spacing:-17.840267pt;}
.ws12d{word-spacing:-17.835467pt;}
.ws16a{word-spacing:-17.833067pt;}
.ws3b{word-spacing:-17.815467pt;}
.ws70{word-spacing:-17.744800pt;}
.wsf8{word-spacing:-17.742400pt;}
.wsd7{word-spacing:-17.737600pt;}
.ws14{word-spacing:-17.734400pt;}
.ws168{word-spacing:-17.732800pt;}
.ws146{word-spacing:-17.399467pt;}
.wsf0{word-spacing:-17.208000pt;}
.ws9d{word-spacing:-17.203200pt;}
.ws28{word-spacing:-17.202667pt;}
.wsab{word-spacing:-17.195467pt;}
.wsca{word-spacing:-17.183467pt;}
.wse5{word-spacing:-17.104800pt;}
.wsf6{word-spacing:-17.092800pt;}
.wsaf{word-spacing:-16.807467pt;}
.wsae{word-spacing:-16.797333pt;}
.ws14b{word-spacing:-16.760267pt;}
.wsc7{word-spacing:-16.565067pt;}
.ws6c{word-spacing:-16.562667pt;}
.wsd8{word-spacing:-16.555467pt;}
.wsf7{word-spacing:-16.549867pt;}
.ws82{word-spacing:-16.457600pt;}
.ws10c{word-spacing:-16.206133pt;}
.wse9{word-spacing:-15.928000pt;}
.ws55{word-spacing:-15.925067pt;}
.ws9f{word-spacing:-15.922667pt;}
.ws48{word-spacing:-15.919467pt;}
.wsdb{word-spacing:-15.913067pt;}
.ws20{word-spacing:-15.827733pt;}
.ws129{word-spacing:-15.504533pt;}
.ws14c{word-spacing:-15.500533pt;}
.ws116{word-spacing:-15.480267pt;}
.wsee{word-spacing:-15.468267pt;}
.ws9a{word-spacing:-15.467467pt;}
.ws8c{word-spacing:-15.429333pt;}
.wsad{word-spacing:-15.288000pt;}
.wsa3{word-spacing:-15.285067pt;}
.wsa4{word-spacing:-15.280267pt;}
.ws4a{word-spacing:-15.275467pt;}
.ws50{word-spacing:-15.273067pt;}
.ws39{word-spacing:-15.268267pt;}
.ws8b{word-spacing:-15.180000pt;}
.ws90{word-spacing:-15.175200pt;}
.ws31{word-spacing:-15.163200pt;}
.wsb8{word-spacing:-15.045333pt;}
.wsba{word-spacing:-15.038933pt;}
.wsbf{word-spacing:-15.038400pt;}
.wsbb{word-spacing:-15.035200pt;}
.wsc2{word-spacing:-14.982667pt;}
.wsb9{word-spacing:-14.869333pt;}
.wsb7{word-spacing:-14.864000pt;}
.ws51{word-spacing:-14.837867pt;}
.ws132{word-spacing:-14.830667pt;}
.ws100{word-spacing:-14.829867pt;}
.wsa1{word-spacing:-14.648000pt;}
.wscb{word-spacing:-14.645067pt;}
.wsbe{word-spacing:-14.633067pt;}
.wsd1{word-spacing:-14.630667pt;}
.ws107{word-spacing:-14.629867pt;}
.wsd2{word-spacing:-14.425067pt;}
.wsbc{word-spacing:-14.398400pt;}
.wsc0{word-spacing:-14.396800pt;}
.wsbd{word-spacing:-14.393067pt;}
.ws130{word-spacing:-14.288533pt;}
.ws125{word-spacing:-14.219200pt;}
.ws12f{word-spacing:-14.200267pt;}
.ws4d{word-spacing:-14.002667pt;}
.wse6{word-spacing:-14.000267pt;}
.ws13e{word-spacing:-13.584533pt;}
.ws147{word-spacing:-13.565600pt;}
.ws114{word-spacing:-13.557867pt;}
.wsf4{word-spacing:-13.365600pt;}
.ws24{word-spacing:-13.362667pt;}
.ws2f{word-spacing:-13.355467pt;}
.ws43{word-spacing:-13.354933pt;}
.ws22{word-spacing:-13.142933pt;}
.ws5a{word-spacing:-13.020533pt;}
.ws7a{word-spacing:-12.966933pt;}
.ws7b{word-spacing:-12.962133pt;}
.wsa2{word-spacing:-12.927200pt;}
.ws135{word-spacing:-12.920267pt;}
.ws137{word-spacing:-12.728000pt;}
.ws145{word-spacing:-12.717867pt;}
.ws98{word-spacing:-12.713067pt;}
.wsec{word-spacing:-12.610933pt;}
.wsf1{word-spacing:-12.608533pt;}
.ws13b{word-spacing:-12.299200pt;}
.ws16d{word-spacing:-12.099200pt;}
.ws3e{word-spacing:-12.085067pt;}
.ws56{word-spacing:-12.077333pt;}
.ws126{word-spacing:-12.075467pt;}
.ws9b{word-spacing:-12.070667pt;}
.ws121{word-spacing:-11.667733pt;}
.ws115{word-spacing:-11.640267pt;}
.ws149{word-spacing:-11.633067pt;}
.ws67{word-spacing:-11.628800pt;}
.wsb2{word-spacing:-11.598933pt;}
.wsd9{word-spacing:-11.440267pt;}
.ws144{word-spacing:-11.433600pt;}
.ws7e{word-spacing:-11.325600pt;}
.ws148{word-spacing:-11.098133pt;}
.ws41{word-spacing:-10.995467pt;}
.wsaa{word-spacing:-10.800800pt;}
.ws8e{word-spacing:-10.800267pt;}
.ws11a{word-spacing:-10.704533pt;}
.ws11d{word-spacing:-10.360267pt;}
.ws83{word-spacing:-10.165067pt;}
.wsf3{word-spacing:-10.163200pt;}
.ws2e{word-spacing:-10.162667pt;}
.wsa7{word-spacing:-10.151733pt;}
.ws141{word-spacing:-9.720267pt;}
.ws38{word-spacing:-9.525067pt;}
.ws80{word-spacing:-9.513067pt;}
.ws142{word-spacing:-9.416533pt;}
.wsd4{word-spacing:-9.405067pt;}
.ws3d{word-spacing:-8.965333pt;}
.wsa6{word-spacing:-8.888000pt;}
.ws52{word-spacing:-8.882667pt;}
.ws62{word-spacing:-8.880267pt;}
.ws88{word-spacing:-8.872267pt;}
.ws111{word-spacing:-8.776800pt;}
.wsed{word-spacing:-8.530933pt;}
.wsfb{word-spacing:-8.250400pt;}
.wsa0{word-spacing:-8.248000pt;}
.ws4b{word-spacing:-8.245067pt;}
.wsdd{word-spacing:-8.234933pt;}
.ws105{word-spacing:-8.123200pt;}
.ws102{word-spacing:-7.783467pt;}
.wsdc{word-spacing:-7.608000pt;}
.wsc8{word-spacing:-7.602667pt;}
.ws16c{word-spacing:-7.232000pt;}
.ws12c{word-spacing:-7.154933pt;}
.ws21{word-spacing:-7.113600pt;}
.wseb{word-spacing:-7.045333pt;}
.wscf{word-spacing:-6.965067pt;}
.ws87{word-spacing:-6.962667pt;}
.ws6b{word-spacing:-6.864800pt;}
.wsa5{word-spacing:-6.325067pt;}
.ws32{word-spacing:-6.220533pt;}
.wsb0{word-spacing:-6.217600pt;}
.ws101{word-spacing:-6.212800pt;}
.wsb3{word-spacing:-5.919733pt;}
.ws12a{word-spacing:-5.885600pt;}
.ws4e{word-spacing:-5.682667pt;}
.ws25{word-spacing:-5.590133pt;}
.ws10f{word-spacing:-5.267733pt;}
.ws14a{word-spacing:-5.240267pt;}
.ws124{word-spacing:-5.048000pt;}
.wsde{word-spacing:-5.040267pt;}
.ws113{word-spacing:-4.600267pt;}
.ws10a{word-spacing:-4.405067pt;}
.wsfa{word-spacing:-4.398400pt;}
.wsc4{word-spacing:-4.074667pt;}
.wscd{word-spacing:-4.054933pt;}
.ws95{word-spacing:-4.034400pt;}
.ws14e{word-spacing:-3.755467pt;}
.ws23{word-spacing:-3.745867pt;}
.ws6e{word-spacing:-3.662400pt;}
.ws7c{word-spacing:-3.653333pt;}
.ws79{word-spacing:-3.650400pt;}
.ws13f{word-spacing:-3.120267pt;}
.ws13a{word-spacing:-3.117867pt;}
.wsa9{word-spacing:-2.774933pt;}
.ws8f{word-spacing:-2.667733pt;}
.ws6f{word-spacing:-2.488000pt;}
.wsce{word-spacing:-2.482667pt;}
.ws81{word-spacing:-2.479733pt;}
.ws33{word-spacing:-2.475467pt;}
.ws15d{word-spacing:-2.473067pt;}
.ws13c{word-spacing:-2.142933pt;}
.ws15a{word-spacing:-2.133333pt;}
.ws65{word-spacing:-2.077333pt;}
.ws15b{word-spacing:-1.845067pt;}
.ws4f{word-spacing:-1.840267pt;}
.ws128{word-spacing:-1.833067pt;}
.ws78{word-spacing:-1.725600pt;}
.ws120{word-spacing:-1.720800pt;}
.ws122{word-spacing:-1.493333pt;}
.ws94{word-spacing:-1.202667pt;}
.ws44{word-spacing:-1.195467pt;}
.ws47{word-spacing:-0.780533pt;}
.ws136{word-spacing:-0.757867pt;}
.wse0{word-spacing:-0.565067pt;}
.wsd6{word-spacing:-0.560267pt;}
.ws63{word-spacing:-0.553067pt;}
.ws10b{word-spacing:-0.448000pt;}
.ws11c{word-spacing:-0.149867pt;}
.ws150{word-spacing:-0.145867pt;}
.ws14d{word-spacing:-0.098133pt;}
.wse{word-spacing:0.000000pt;}
.ws93{word-spacing:0.079733pt;}
.ws35{word-spacing:0.184267pt;}
.ws123{word-spacing:0.514400pt;}
.ws7f{word-spacing:0.717333pt;}
.ws73{word-spacing:0.720267pt;}
.wsc9{word-spacing:1.067467pt;}
.ws139{word-spacing:1.159733pt;}
.wse7{word-spacing:1.462400pt;}
.wsff{word-spacing:1.467200pt;}
.wsda{word-spacing:2.011733pt;}
.ws143{word-spacing:2.439733pt;}
.ws99{word-spacing:2.634933pt;}
.wse1{word-spacing:2.636800pt;}
.wsdf{word-spacing:2.644533pt;}
.ws37{word-spacing:2.862133pt;}
.wsb4{word-spacing:3.277333pt;}
.wse8{word-spacing:3.917333pt;}
.ws119{word-spacing:3.931733pt;}
.ws34{word-spacing:4.012267pt;}
.wsf5{word-spacing:4.366933pt;}
.ws110{word-spacing:4.369333pt;}
.ws10e{word-spacing:4.999733pt;}
.wsef{word-spacing:5.015467pt;}
.ws12e{word-spacing:5.319200pt;}
.ws103{word-spacing:5.834933pt;}
.wscc{word-spacing:5.837333pt;}
.ws36{word-spacing:5.839733pt;}
.ws4c{word-spacing:6.482133pt;}
.wsc3{word-spacing:6.486933pt;}
.wsfd{word-spacing:7.116800pt;}
.ws9c{word-spacing:7.143733pt;}
.ws66{word-spacing:7.469067pt;}
.ws118{word-spacing:7.565067pt;}
.ws8d{word-spacing:7.752000pt;}
.ws45{word-spacing:9.037600pt;}
.ws11b{word-spacing:9.486933pt;}
.ws6a{word-spacing:9.674933pt;}
.ws2b{word-spacing:9.677333pt;}
.ws14f{word-spacing:9.679200pt;}
.ws104{word-spacing:9.682133pt;}
.ws46{word-spacing:9.698933pt;}
.ws151{word-spacing:9.775200pt;}
.ws3a{word-spacing:10.024533pt;}
.ws156{word-spacing:13.303200pt;}
.ws159{word-spacing:14.164533pt;}
.ws84{word-spacing:20.549600pt;}
.wsf9{word-spacing:21.837333pt;}
.ws11f{word-spacing:23.566933pt;}
.ws13d{word-spacing:24.399733pt;}
.ws11e{word-spacing:32.716800pt;}
.wsd5{word-spacing:33.476800pt;}
.ws158{word-spacing:508.987200pt;}
._27{margin-left:-6.156800pt;}
._29{margin-left:-4.352533pt;}
._28{margin-left:-2.930933pt;}
._1e{margin-left:-1.974400pt;}
._2{margin-left:-1.021600pt;}
._1{width:0.978667pt;}
._18{width:14.064000pt;}
._7{width:15.524533pt;}
._3{width:17.190667pt;}
._8{width:18.386667pt;}
._6{width:19.845333pt;}
._15{width:21.238933pt;}
._20{width:22.138667pt;}
._a{width:23.165067pt;}
._11{width:24.336533pt;}
._0{width:25.528267pt;}
._17{width:26.692000pt;}
._4{width:28.380000pt;}
._b{width:29.766400pt;}
._5{width:31.581333pt;}
._c{width:33.269867pt;}
._12{width:34.369067pt;}
._e{width:35.583467pt;}
._d{width:37.105600pt;}
._1a{width:38.245067pt;}
._f{width:39.163467pt;}
._1b{width:40.337600pt;}
._14{width:41.817067pt;}
._9{width:43.082667pt;}
._13{width:44.345867pt;}
._10{width:45.670400pt;}
._16{width:46.908533pt;}
._22{width:49.131200pt;}
._1c{width:57.710933pt;}
._1d{width:58.902667pt;}
._1f{width:60.086667pt;}
._19{width:66.598133pt;}
._24{width:76.375200pt;}
._21{width:166.588800pt;}
._25{width:168.528800pt;}
._23{width:174.692533pt;}
._26{width:412.525067pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:37.866667pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:53.066667pt;}
.fs0{font-size:55.733333pt;}
.fs3{font-size:58.933333pt;}
.fs6{font-size:74.933333pt;}
.fs1{font-size:85.066667pt;}
.fs2{font-size:106.933333pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:5.041333pt;}
.y55{bottom:5.066667pt;}
.y57{bottom:5.146667pt;}
.y6e{bottom:9.333333pt;}
.y84{bottom:9.346667pt;}
.y8a{bottom:9.373333pt;}
.y8e{bottom:9.374667pt;}
.y82{bottom:9.388000pt;}
.y86{bottom:9.400000pt;}
.y6b{bottom:9.413333pt;}
.y76{bottom:9.426667pt;}
.y73{bottom:9.440000pt;}
.y69{bottom:9.454667pt;}
.y66{bottom:9.466667pt;}
.y71{bottom:9.480000pt;}
.y7a{bottom:9.506667pt;}
.y91{bottom:9.508000pt;}
.y93{bottom:10.133333pt;}
.y1f{bottom:11.466667pt;}
.y13{bottom:11.480000pt;}
.y11{bottom:11.493333pt;}
.y18{bottom:11.506667pt;}
.y21{bottom:11.521333pt;}
.y15{bottom:11.533333pt;}
.y25{bottom:11.560000pt;}
.y23{bottom:11.573333pt;}
.y29{bottom:11.600000pt;}
.y27{bottom:11.613333pt;}
.y2b{bottom:11.654667pt;}
.ya7{bottom:12.308000pt;}
.y89{bottom:30.013333pt;}
.y81{bottom:30.026667pt;}
.y7f{bottom:30.041333pt;}
.y7d{bottom:30.054667pt;}
.y75{bottom:30.066667pt;}
.y68{bottom:30.093333pt;}
.y70{bottom:30.121333pt;}
.y6d{bottom:30.133333pt;}
.y79{bottom:30.146667pt;}
.y17{bottom:36.788000pt;}
.y1e{bottom:36.906667pt;}
.ya6{bottom:37.588000pt;}
.y9{bottom:47.026667pt;}
.y78{bottom:50.788000pt;}
.y1d{bottom:62.188000pt;}
.ya5{bottom:62.866667pt;}
.y1{bottom:68.066667pt;}
.y145{bottom:70.428000pt;}
.y144{bottom:80.028000pt;}
.y1c{bottom:87.466667pt;}
.ya4{bottom:88.146667pt;}
.y143{bottom:89.628000pt;}
.y8{bottom:93.108000pt;}
.y4f{bottom:97.988000pt;}
.yd2{bottom:100.708000pt;}
.y49{bottom:103.746667pt;}
.y97{bottom:106.788000pt;}
.y142{bottom:108.828000pt;}
.y1b{bottom:112.746667pt;}
.ya3{bottom:113.426667pt;}
.y141{bottom:118.428000pt;}
.y4e{bottom:123.266667pt;}
.y140{bottom:128.028000pt;}
.y48{bottom:128.866667pt;}
.yd1{bottom:129.988000pt;}
.y96{bottom:132.066667pt;}
.y5f{bottom:137.346667pt;}
.y1a{bottom:138.026667pt;}
.y7{bottom:139.026667pt;}
.ya2{bottom:139.666667pt;}
.ye{bottom:144.708000pt;}
.y4d{bottom:148.546667pt;}
.y13c{bottom:153.578667pt;}
.y47{bottom:154.308000pt;}
.y95{bottom:157.346667pt;}
.yd0{bottom:159.108000pt;}
.y5e{bottom:162.466667pt;}
.y51{bottom:165.188000pt;}
.ya1{bottom:166.066667pt;}
.y62{bottom:179.588000pt;}
.y94{bottom:182.626667pt;}
.y6{bottom:185.108000pt;}
.y5d{bottom:187.908000pt;}
.ycf{bottom:188.388000pt;}
.y50{bottom:190.466667pt;}
.ya0{bottom:191.346667pt;}
.y13b{bottom:192.062667pt;}
.y92{bottom:196.333333pt;}
.y13a{bottom:201.662667pt;}
.y61{bottom:204.866667pt;}
.y139{bottom:211.262667pt;}
.yce{bottom:215.746667pt;}
.y9f{bottom:216.466667pt;}
.y90{bottom:218.400000pt;}
.yd{bottom:220.546667pt;}
.y54{bottom:227.800000pt;}
.y56{bottom:229.800000pt;}
.y46{bottom:230.146667pt;}
.y138{bottom:230.462667pt;}
.y137{bottom:240.062667pt;}
.y9e{bottom:242.866667pt;}
.y45{bottom:255.426667pt;}
.y136{bottom:259.262667pt;}
.yfa{bottom:264.033333pt;}
.ycd{bottom:266.466667pt;}
.y9d{bottom:268.146667pt;}
.yc{bottom:271.108000pt;}
.yf9{bottom:273.633333pt;}
.y135{bottom:278.462667pt;}
.y44{bottom:280.706667pt;}
.y8f{bottom:281.133333pt;}
.yf8{bottom:283.233333pt;}
.y134{bottom:288.062667pt;}
.yf7{bottom:292.833333pt;}
.y9c{bottom:294.388000pt;}
.yb{bottom:296.546667pt;}
.yf6{bottom:302.433333pt;}
.y8d{bottom:302.533333pt;}
.y43{bottom:305.988000pt;}
.y133{bottom:307.262667pt;}
.ycc{bottom:317.026667pt;}
.y9b{bottom:320.788000pt;}
.yf5{bottom:321.633333pt;}
.ya{bottom:321.666667pt;}
.y132{bottom:326.462667pt;}
.yf4{bottom:331.233333pt;}
.y60{bottom:331.266667pt;}
.ycb{bottom:342.308000pt;}
.y8c{bottom:344.600000pt;}
.y9a{bottom:346.066667pt;}
.yf3{bottom:350.433333pt;}
.y131{bottom:350.721333pt;}
.y42{bottom:356.546667pt;}
.yf2{bottom:360.033333pt;}
.y8b{bottom:365.933333pt;}
.yf1{bottom:369.633333pt;}
.y99{bottom:371.346667pt;}
.yf0{bottom:379.233333pt;}
.y41{bottom:381.988000pt;}
.y5{bottom:386.000000pt;}
.y88{bottom:387.333333pt;}
.y130{bottom:389.788000pt;}
.yca{bottom:394.788000pt;}
.yef{bottom:398.433333pt;}
.y12f{bottom:399.388000pt;}
.yae{bottom:399.908000pt;}
.y40{bottom:407.266667pt;}
.yee{bottom:408.033333pt;}
.y12e{bottom:408.988000pt;}
.y12d{bottom:418.588000pt;}
.yc9{bottom:422.146667pt;}
.yad{bottom:425.346667pt;}
.y12c{bottom:428.188000pt;}
.y87{bottom:429.400000pt;}
.y3f{bottom:432.546667pt;}
.y12b{bottom:437.788000pt;}
.yff{bottom:439.886667pt;}
.y64{bottom:440.866667pt;}
.y12a{bottom:447.388000pt;}
.yac{bottom:450.466667pt;}
.y129{bottom:456.988000pt;}
.y3e{bottom:457.826667pt;}
.y5c{bottom:464.866667pt;}
.y63{bottom:466.308000pt;}
.y128{bottom:466.588000pt;}
.y85{bottom:471.466667pt;}
.yc8{bottom:474.466667pt;}
.yab{bottom:475.908000pt;}
.y127{bottom:476.188000pt;}
.yed{bottom:476.617333pt;}
.y100{bottom:478.674667pt;}
.y3d{bottom:483.108000pt;}
.y126{bottom:485.788000pt;}
.yec{bottom:486.217333pt;}
.y5b{bottom:490.146667pt;}
.y83{bottom:492.800000pt;}
.yaa{bottom:501.188000pt;}
.yc7{bottom:503.746667pt;}
.y125{bottom:504.988000pt;}
.yeb{bottom:505.417333pt;}
.y3c{bottom:508.388000pt;}
.yfe{bottom:511.610667pt;}
.y80{bottom:514.200000pt;}
.yea{bottom:515.017333pt;}
.y5a{bottom:515.426667pt;}
.y106{bottom:516.020000pt;}
.y105{bottom:525.620000pt;}
.ya9{bottom:526.466667pt;}
.y124{bottom:530.200000pt;}
.yc6{bottom:533.026667pt;}
.y3b{bottom:533.666667pt;}
.ye9{bottom:534.217333pt;}
.y104{bottom:535.220000pt;}
.y59{bottom:540.866667pt;}
.y52{bottom:542.866667pt;}
.ye8{bottom:543.817333pt;}
.y103{bottom:544.820000pt;}
.yfd{bottom:551.066667pt;}
.ya8{bottom:551.746667pt;}
.ybe{bottom:553.026667pt;}
.ye7{bottom:553.417333pt;}
.y102{bottom:554.420000pt;}
.y7e{bottom:556.266667pt;}
.y3a{bottom:558.946667pt;}
.yc5{bottom:562.308000pt;}
.ye6{bottom:563.017333pt;}
.y2a{bottom:572.733333pt;}
.ybd{bottom:578.466667pt;}
.y123{bottom:584.382667pt;}
.y39{bottom:584.388000pt;}
.y101{bottom:587.676000pt;}
.yfc{bottom:588.956000pt;}
.y98{bottom:590.800000pt;}
.y58{bottom:591.426667pt;}
.yc4{bottom:591.588000pt;}
.y122{bottom:593.982667pt;}
.y28{bottom:598.066667pt;}
.y7c{bottom:598.333333pt;}
.y121{bottom:603.582667pt;}
.ybc{bottom:603.746667pt;}
.y4c{bottom:609.666667pt;}
.y120{bottom:613.182667pt;}
.yc3{bottom:620.866667pt;}
.y26{bottom:623.333333pt;}
.y11f{bottom:632.382667pt;}
.y38{bottom:634.946667pt;}
.y7b{bottom:640.400000pt;}
.y11e{bottom:641.982667pt;}
.y24{bottom:648.666667pt;}
.yc2{bottom:650.146667pt;}
.y37{bottom:660.226667pt;}
.y11d{bottom:661.182667pt;}
.y22{bottom:673.933333pt;}
.yc1{bottom:677.666667pt;}
.ybb{bottom:679.588000pt;}
.y11c{bottom:680.382667pt;}
.y77{bottom:682.400000pt;}
.y4{bottom:684.866667pt;}
.y36{bottom:685.506667pt;}
.y11b{bottom:689.982667pt;}
.yd9{bottom:692.866667pt;}
.y20{bottom:699.266667pt;}
.y11a{bottom:699.582667pt;}
.yba{bottom:704.866667pt;}
.y119{bottom:709.182667pt;}
.y35{bottom:710.788000pt;}
.y3{bottom:721.666667pt;}
.yd8{bottom:722.146667pt;}
.y19{bottom:724.600000pt;}
.y118{bottom:728.382667pt;}
.yb9{bottom:730.146667pt;}
.y34{bottom:736.066667pt;}
.y117{bottom:737.982667pt;}
.y74{bottom:745.200000pt;}
.y116{bottom:747.582667pt;}
.yd7{bottom:749.506667pt;}
.ye5{bottom:755.508000pt;}
.yb8{bottom:756.546667pt;}
.y115{bottom:757.182667pt;}
.yc0{bottom:757.346667pt;}
.y2{bottom:758.466667pt;}
.y33{bottom:761.346667pt;}
.ye4{bottom:765.108000pt;}
.y114{bottom:766.782667pt;}
.yb7{bottom:781.666667pt;}
.ye3{bottom:784.308000pt;}
.ybf{bottom:784.546667pt;}
.y4b{bottom:786.626667pt;}
.y72{bottom:787.266667pt;}
.yd6{bottom:801.988000pt;}
.ye2{bottom:803.508000pt;}
.yb6{bottom:807.906667pt;}
.y6f{bottom:808.666667pt;}
.y32{bottom:812.066667pt;}
.ye1{bottom:813.108000pt;}
.ye0{bottom:822.708000pt;}
.yd5{bottom:831.266667pt;}
.ydf{bottom:832.308000pt;}
.yb5{bottom:834.306667pt;}
.y31{bottom:837.346667pt;}
.y6c{bottom:850.733333pt;}
.y113{bottom:853.182667pt;}
.yfb{bottom:854.956000pt;}
.yd4{bottom:858.626667pt;}
.yb4{bottom:859.588000pt;}
.y4a{bottom:862.626667pt;}
.y112{bottom:862.782667pt;}
.y111{bottom:872.382667pt;}
.y16{bottom:876.400000pt;}
.y110{bottom:881.982667pt;}
.yb3{bottom:884.866667pt;}
.y30{bottom:887.906667pt;}
.y10f{bottom:891.582667pt;}
.y6a{bottom:892.733333pt;}
.y10e{bottom:901.182667pt;}
.y13f{bottom:901.385333pt;}
.y10d{bottom:910.782667pt;}
.y13e{bottom:910.985333pt;}
.yd3{bottom:911.106667pt;}
.yb2{bottom:911.266667pt;}
.y2f{bottom:913.188000pt;}
.y67{bottom:914.133333pt;}
.yde{bottom:914.992000pt;}
.y10c{bottom:920.382667pt;}
.y13d{bottom:920.585333pt;}
.y14{bottom:926.933333pt;}
.yb1{bottom:936.388000pt;}
.ydd{bottom:937.392000pt;}
.y2e{bottom:938.466667pt;}
.y10b{bottom:939.582667pt;}
.y10a{bottom:949.182667pt;}
.y12{bottom:952.266667pt;}
.y65{bottom:956.200000pt;}
.y109{bottom:958.782667pt;}
.ydc{bottom:959.792000pt;}
.yb0{bottom:962.788000pt;}
.y2d{bottom:963.746667pt;}
.y108{bottom:968.382667pt;}
.y10{bottom:977.533333pt;}
.ydb{bottom:982.192000pt;}
.yaf{bottom:988.066667pt;}
.y2c{bottom:989.026667pt;}
.y107{bottom:999.324000pt;}
.yda{bottom:1004.592000pt;}
.yf{bottom:1014.306667pt;}
.hd{height:18.400000pt;}
.hf{height:21.333333pt;}
.h14{height:22.066667pt;}
.h1b{height:22.171875pt;}
.h1d{height:22.250000pt;}
.h1e{height:25.015625pt;}
.h8{height:25.266667pt;}
.hb{height:25.333333pt;}
.h2{height:37.146484pt;}
.he{height:38.752083pt;}
.h11{height:42.000000pt;}
.h12{height:43.031250pt;}
.h10{height:43.335938pt;}
.h1c{height:48.273047pt;}
.h9{height:50.533333pt;}
.h1a{height:52.102083pt;}
.h7{height:52.832813pt;}
.hc{height:53.146875pt;}
.h6{height:53.206901pt;}
.h16{height:53.467479pt;}
.h17{height:53.472812pt;}
.h18{height:53.478146pt;}
.h13{height:62.733333pt;}
.h3{height:76.800911pt;}
.h5{height:96.542839pt;}
.ha{height:151.733333pt;}
.h4{height:256.666667pt;}
.h15{height:386.733333pt;}
.h19{height:1040.000000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.wd{width:28.466667pt;}
.w5{width:33.000000pt;}
.wb{width:37.866667pt;}
.w7{width:47.266667pt;}
.w6{width:47.333333pt;}
.wa{width:56.733333pt;}
.w3{width:60.666667pt;}
.wc{width:66.200000pt;}
.w8{width:75.666667pt;}
.w9{width:94.600000pt;}
.w4{width:479.800000pt;}
.w2{width:566.333333pt;}
.we{width:576.333333pt;}
.wf{width:720.000000pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.506667pt;}
.x26{left:8.520000pt;}
.x12{left:9.626667pt;}
.x2d{left:10.520000pt;}
.xf{left:11.506667pt;}
.x28{left:13.000000pt;}
.x25{left:15.945333pt;}
.x24{left:16.973333pt;}
.xe{left:19.666667pt;}
.x2a{left:21.160000pt;}
.x10{left:22.066667pt;}
.x2c{left:23.000000pt;}
.x2e{left:24.306667pt;}
.xd{left:26.226667pt;}
.x29{left:27.960000pt;}
.x2f{left:29.878667pt;}
.x27{left:31.640000pt;}
.x30{left:35.320000pt;}
.x2b{left:43.000000pt;}
.x7{left:46.120000pt;}
.x33{left:48.192000pt;}
.x36{left:53.314667pt;}
.x37{left:54.781333pt;}
.x35{left:59.000000pt;}
.x34{left:60.386667pt;}
.x8{left:78.600000pt;}
.x19{left:94.400000pt;}
.x6{left:103.878667pt;}
.x5{left:106.200000pt;}
.x9{left:113.440000pt;}
.x17{left:117.440000pt;}
.x1a{left:122.866667pt;}
.x31{left:132.320000pt;}
.x15{left:137.440000pt;}
.x32{left:156.160000pt;}
.x16{left:161.440000pt;}
.x1b{left:170.133333pt;}
.x41{left:213.393333pt;}
.x1c{left:217.400000pt;}
.x39{left:225.140000pt;}
.x38{left:228.229333pt;}
.x2{left:246.878667pt;}
.x1d{left:264.600000pt;}
.x13{left:297.933333pt;}
.x3{left:301.440000pt;}
.x4{left:312.640000pt;}
.xa{left:327.360000pt;}
.x1e{left:340.200000pt;}
.x40{left:357.538667pt;}
.x3e{left:361.069333pt;}
.x3d{left:362.000000pt;}
.x3b{left:363.716000pt;}
.x3a{left:370.654667pt;}
.x3f{left:372.402667pt;}
.x3c{left:375.049333pt;}
.x1f{left:434.733333pt;}
.x20{left:491.400000pt;}
.x21{left:529.200000pt;}
.x22{left:576.466667pt;}
.xb{left:585.933333pt;}
.x14{left:628.933333pt;}
.x11{left:630.533333pt;}
.x23{left:642.600000pt;}
.x18{left:666.240000pt;}
.x1{left:673.278667pt;}
}




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