
    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_2c083a4783586282978f8084.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_2056d8655a8b8dec08cc0943.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986816;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_bb14417258653e1f4f157094.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3aedbd92d06da9ff0e4e51bc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f0d1ff17ea408ba4cf51eb16.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_352f0959077f3e9db13f01fe.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_2b9ed66cc27dd5f1f650bdcf.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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-3.952800px;}
.ls9{letter-spacing:-3.821040px;}
.ls2{letter-spacing:-3.312000px;}
.ls4{letter-spacing:-3.240000px;}
.ls1{letter-spacing:-3.168000px;}
.ls7{letter-spacing:-3.162240px;}
.ls8{letter-spacing:-3.030480px;}
.ls5{letter-spacing:-3.024000px;}
.ls3{letter-spacing:-2.592000px;}
.ls4a{letter-spacing:-0.936000px;}
.ls1b{letter-spacing:-0.927360px;}
.ls45{letter-spacing:-0.864000px;}
.ls17{letter-spacing:-0.861120px;}
.ls14{letter-spacing:-0.794880px;}
.ls1a{letter-spacing:-0.662400px;}
.ls26{letter-spacing:-0.648000px;}
.ls12{letter-spacing:-0.596160px;}
.ls25{letter-spacing:-0.576000px;}
.ls11{letter-spacing:-0.529920px;}
.ls2a{letter-spacing:-0.504000px;}
.lse{letter-spacing:-0.463680px;}
.ls1c{letter-spacing:-0.397440px;}
.ls2b{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.345600px;}
.ls30{letter-spacing:-0.324000px;}
.ls3d{letter-spacing:-0.311040px;}
.ls29{letter-spacing:-0.288000px;}
.ls2e{letter-spacing:-0.270000px;}
.lsf{letter-spacing:-0.264960px;}
.ls3c{letter-spacing:-0.233280px;}
.ls28{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.198720px;}
.ls2d{letter-spacing:-0.162000px;}
.ls3e{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.132480px;}
.ls3a{letter-spacing:-0.113760px;}
.ls2f{letter-spacing:-0.108000px;}
.ls3b{letter-spacing:-0.077760px;}
.ls2c{letter-spacing:-0.072000px;}
.lsd{letter-spacing:-0.066240px;}
.ls44{letter-spacing:-0.059760px;}
.ls0{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.054000px;}
.ls15{letter-spacing:0.066240px;}
.ls1f{letter-spacing:0.072000px;}
.ls1d{letter-spacing:0.113760px;}
.lsa{letter-spacing:0.132480px;}
.ls27{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.264960px;}
.ls24{letter-spacing:0.270000px;}
.ls49{letter-spacing:0.280800px;}
.lsc{letter-spacing:0.284832px;}
.ls1e{letter-spacing:0.288000px;}
.ls21{letter-spacing:0.295200px;}
.ls48{letter-spacing:0.302400px;}
.ls37{letter-spacing:0.309600px;}
.ls31{letter-spacing:0.324000px;}
.ls18{letter-spacing:0.331200px;}
.ls20{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.397440px;}
.ls3f{letter-spacing:0.576000px;}
.ls39{letter-spacing:0.583200px;}
.ls32{letter-spacing:0.699840px;}
.ls35{letter-spacing:0.707616px;}
.ls47{letter-spacing:0.745920px;}
.ls42{letter-spacing:0.754560px;}
.ls4b{letter-spacing:0.757440px;}
.ls4f{letter-spacing:0.777600px;}
.ls40{letter-spacing:1.008000px;}
.ls4c{letter-spacing:2.448000px;}
.ls34{letter-spacing:3.168000px;}
.ls4d{letter-spacing:3.888000px;}
.ls51{letter-spacing:3.895200px;}
.ls36{letter-spacing:4.608000px;}
.ls33{letter-spacing:6.048000px;}
.ls43{letter-spacing:7.488000px;}
.ls4e{letter-spacing:10.368000px;}
.ls38{letter-spacing:54.864000px;}
.ls50{letter-spacing:64.016640px;}
.ls46{letter-spacing:838.297440px;}
.ls41{letter-spacing:846.417600px;}
.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;}
}
.wsd1{word-spacing:-59.760000px;}
.ws4{word-spacing:-48.816000px;}
.ws6{word-spacing:-46.224000px;}
.ws5{word-spacing:-45.792000px;}
.ws3{word-spacing:-45.576000px;}
.ws1{word-spacing:-32.544000px;}
.ws9{word-spacing:-29.777760px;}
.ws0{word-spacing:-29.376000px;}
.ws2{word-spacing:-29.232000px;}
.ws7{word-spacing:-26.615520px;}
.ws8{word-spacing:-25.956720px;}
.ws46{word-spacing:-25.823520px;}
.ws10{word-spacing:-24.408000px;}
.ws6b{word-spacing:-17.573760px;}
.ws69{word-spacing:-17.496000px;}
.ws8a{word-spacing:-17.340480px;}
.ws6a{word-spacing:-17.262720px;}
.ws4e{word-spacing:-16.632000px;}
.wsc5{word-spacing:-16.560000px;}
.ws34{word-spacing:-16.488000px;}
.ws4b{word-spacing:-16.416000px;}
.ws49{word-spacing:-16.344000px;}
.ws4d{word-spacing:-16.272000px;}
.ws51{word-spacing:-16.200000px;}
.wsbf{word-spacing:-16.128000px;}
.ws48{word-spacing:-16.056000px;}
.ws4a{word-spacing:-15.984000px;}
.ws4f{word-spacing:-15.912000px;}
.ws4c{word-spacing:-15.768000px;}
.ws50{word-spacing:-15.696000px;}
.ws47{word-spacing:-15.624000px;}
.wsa4{word-spacing:-15.408000px;}
.wsbe{word-spacing:-15.336000px;}
.ws13{word-spacing:-15.235200px;}
.ws18{word-spacing:-15.102720px;}
.ws35{word-spacing:-15.036480px;}
.ws12{word-spacing:-14.970240px;}
.ws15{word-spacing:-14.904000px;}
.ws14{word-spacing:-14.837760px;}
.ws1a{word-spacing:-14.771520px;}
.ws17{word-spacing:-14.705280px;}
.ws11{word-spacing:-14.506560px;}
.ws19{word-spacing:-14.374080px;}
.ws36{word-spacing:-14.307840px;}
.ws16{word-spacing:-14.175360px;}
.ws1b{word-spacing:-14.109120px;}
.ws37{word-spacing:-14.042880px;}
.ws53{word-spacing:-12.204000px;}
.ws52{word-spacing:-11.934000px;}
.ws92{word-spacing:-4.392000px;}
.ws94{word-spacing:-4.354560px;}
.wsaf{word-spacing:-4.104000px;}
.ws95{word-spacing:-3.888000px;}
.ws7d{word-spacing:-3.672000px;}
.ws7c{word-spacing:-3.456000px;}
.ws81{word-spacing:-3.384000px;}
.ws29{word-spacing:-3.378240px;}
.wsa3{word-spacing:-3.024000px;}
.ws80{word-spacing:-2.952000px;}
.ws7f{word-spacing:-2.664000px;}
.ws2a{word-spacing:-2.350080px;}
.ws82{word-spacing:-2.232000px;}
.wsba{word-spacing:-1.944000px;}
.wsc9{word-spacing:-1.788480px;}
.ws44{word-spacing:-1.722240px;}
.ws45{word-spacing:-1.589760px;}
.ws84{word-spacing:-1.512000px;}
.ws23{word-spacing:-1.391040px;}
.wsd4{word-spacing:-1.296000px;}
.ws7e{word-spacing:-1.224000px;}
.ws22{word-spacing:-1.192320px;}
.wsc8{word-spacing:-1.010880px;}
.wsca{word-spacing:-0.936000px;}
.wsb{word-spacing:-0.864000px;}
.ws55{word-spacing:-0.792000px;}
.wsc7{word-spacing:-0.777600px;}
.ws25{word-spacing:-0.728640px;}
.ws79{word-spacing:-0.648000px;}
.wsc2{word-spacing:-0.576000px;}
.ws1f{word-spacing:-0.529920px;}
.ws5a{word-spacing:-0.504000px;}
.ws59{word-spacing:-0.360000px;}
.ws2d{word-spacing:-0.331200px;}
.ws64{word-spacing:-0.324000px;}
.ws6f{word-spacing:-0.311040px;}
.ws66{word-spacing:-0.270000px;}
.ws2c{word-spacing:-0.264960px;}
.ws76{word-spacing:-0.233280px;}
.ws1c{word-spacing:-0.216000px;}
.ws33{word-spacing:-0.198720px;}
.ws67{word-spacing:-0.162000px;}
.ws58{word-spacing:-0.144000px;}
.ws21{word-spacing:-0.132480px;}
.wsd{word-spacing:-0.131760px;}
.wsa6{word-spacing:-0.077760px;}
.ws57{word-spacing:-0.072000px;}
.ws30{word-spacing:-0.066240px;}
.ws60{word-spacing:-0.054000px;}
.wsa{word-spacing:0.000000px;}
.ws65{word-spacing:0.054000px;}
.wsa5{word-spacing:0.059760px;}
.ws28{word-spacing:0.066240px;}
.ws5c{word-spacing:0.072000px;}
.ws62{word-spacing:0.108000px;}
.wsb5{word-spacing:0.113760px;}
.ws38{word-spacing:0.132480px;}
.ws5f{word-spacing:0.144000px;}
.ws68{word-spacing:0.179280px;}
.ws1e{word-spacing:0.198720px;}
.ws54{word-spacing:0.216000px;}
.ws63{word-spacing:0.270000px;}
.ws88{word-spacing:0.288000px;}
.ws78{word-spacing:0.311040px;}
.ws61{word-spacing:0.324000px;}
.ws31{word-spacing:0.331200px;}
.ws6c{word-spacing:0.341280px;}
.ws2b{word-spacing:0.345600px;}
.ws5d{word-spacing:0.360000px;}
.ws20{word-spacing:0.397440px;}
.wsbd{word-spacing:0.432000px;}
.wsd3{word-spacing:0.466560px;}
.ws74{word-spacing:0.504000px;}
.ws24{word-spacing:0.529920px;}
.ws56{word-spacing:0.576000px;}
.ws27{word-spacing:0.596160px;}
.ws5b{word-spacing:0.648000px;}
.ws2e{word-spacing:0.728640px;}
.wsb6{word-spacing:0.792000px;}
.ws32{word-spacing:0.794880px;}
.wsb9{word-spacing:0.864000px;}
.ws2f{word-spacing:0.927360px;}
.ws5e{word-spacing:0.936000px;}
.ws85{word-spacing:1.080000px;}
.wsc6{word-spacing:1.152000px;}
.wsb7{word-spacing:1.224000px;}
.wsa1{word-spacing:1.296000px;}
.ws96{word-spacing:1.368000px;}
.wsb8{word-spacing:1.512000px;}
.ws70{word-spacing:1.656000px;}
.wsb0{word-spacing:2.088000px;}
.ws91{word-spacing:2.376000px;}
.ws3b{word-spacing:2.583360px;}
.ws87{word-spacing:2.736000px;}
.ws73{word-spacing:2.808000px;}
.wse{word-spacing:3.030480px;}
.ws93{word-spacing:3.096000px;}
.ws1d{word-spacing:3.240000px;}
.ws9f{word-spacing:3.528000px;}
.ws75{word-spacing:3.672000px;}
.ws90{word-spacing:3.816000px;}
.wsf{word-spacing:3.821040px;}
.wsc{word-spacing:3.952800px;}
.wsae{word-spacing:4.176000px;}
.ws7a{word-spacing:4.248000px;}
.wsc4{word-spacing:4.392000px;}
.ws7b{word-spacing:4.536000px;}
.ws26{word-spacing:4.703040px;}
.wsa0{word-spacing:4.896000px;}
.ws97{word-spacing:4.968000px;}
.ws72{word-spacing:5.112000px;}
.ws9b{word-spacing:5.256000px;}
.wsb3{word-spacing:5.616000px;}
.ws71{word-spacing:5.688000px;}
.ws43{word-spacing:5.961600px;}
.wsac{word-spacing:5.976000px;}
.ws42{word-spacing:6.160320px;}
.wsc1{word-spacing:6.220800px;}
.wsad{word-spacing:6.336000px;}
.wsa8{word-spacing:6.408000px;}
.wsc0{word-spacing:6.454080px;}
.ws86{word-spacing:6.696000px;}
.wsa7{word-spacing:7.128000px;}
.wsa9{word-spacing:7.416000px;}
.ws89{word-spacing:7.776000px;}
.wscb{word-spacing:8.136000px;}
.ws9e{word-spacing:8.568000px;}
.ws8d{word-spacing:9.097920px;}
.wsbc{word-spacing:9.288000px;}
.ws98{word-spacing:10.008000px;}
.wscc{word-spacing:10.152000px;}
.wsce{word-spacing:10.296000px;}
.ws6e{word-spacing:10.575360px;}
.wscd{word-spacing:10.584000px;}
.ws8f{word-spacing:10.728000px;}
.ws6d{word-spacing:10.730880px;}
.wsaa{word-spacing:10.872000px;}
.wsc3{word-spacing:11.016000px;}
.wsab{word-spacing:11.376000px;}
.ws8e{word-spacing:11.736000px;}
.wsb4{word-spacing:12.168000px;}
.ws77{word-spacing:12.674880px;}
.ws83{word-spacing:12.888000px;}
.ws3c{word-spacing:14.109120px;}
.wsd2{word-spacing:14.328000px;}
.wsd0{word-spacing:14.616000px;}
.ws9c{word-spacing:15.048000px;}
.ws9d{word-spacing:15.336000px;}
.wscf{word-spacing:16.776000px;}
.ws39{word-spacing:20.401920px;}
.ws3a{word-spacing:20.600640px;}
.ws9a{word-spacing:20.808000px;}
.ws99{word-spacing:21.816000px;}
.ws41{word-spacing:25.634880px;}
.wsbb{word-spacing:26.136000px;}
.wsb1{word-spacing:27.576000px;}
.ws8c{word-spacing:27.810000px;}
.wsb2{word-spacing:27.936000px;}
.ws8b{word-spacing:28.350000px;}
.ws3f{word-spacing:31.199040px;}
.ws40{word-spacing:31.927680px;}
.ws3d{word-spacing:47.692800px;}
.ws3e{word-spacing:47.957760px;}
.wsa2{word-spacing:174.816000px;}
._9{margin-left:-13.693248px;}
._5{margin-left:-12.015360px;}
._6{margin-left:-8.821440px;}
._8{margin-left:-7.021440px;}
._3{margin-left:-4.752288px;}
._1{margin-left:-3.024000px;}
._2{margin-left:-1.166400px;}
._0{width:1.152000px;}
._e{width:2.736000px;}
._7{width:3.856320px;}
._4{width:5.135040px;}
._10{width:6.840000px;}
._11{width:9.360000px;}
._c{width:11.134080px;}
._d{width:13.496544px;}
._a{width:47.111040px;}
._f{width:843.621840px;}
._b{width:848.254320px;}
.fc4{color:rgb(91,155,213);}
.fc5{color:rgb(46,116,181);}
.fc3{color:rgb(23,115,155);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs8{font-size:72.000000px;}
.fsb{font-size:77.760000px;}
.fsd{font-size:81.360000px;}
.fsc{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.fs9{font-size:113.760000px;}
.fs4{font-size:131.760000px;}
.fs1{font-size:144.000000px;}
.fs3{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y48{bottom:57.060000px;}
.y2a{bottom:57.240000px;}
.y29{bottom:90.533520px;}
.y19b{bottom:90.540000px;}
.y201{bottom:93.420000px;}
.y15e{bottom:93.780000px;}
.y1e6{bottom:100.799280px;}
.yfc{bottom:102.600000px;}
.y146{bottom:108.540000px;}
.yb3{bottom:108.913500px;}
.y6f{bottom:112.315500px;}
.y19a{bottom:114.300000px;}
.y200{bottom:117.180000px;}
.y15d{bottom:117.540000px;}
.y28{bottom:124.200000px;}
.y91{bottom:125.820000px;}
.y11d{bottom:128.700000px;}
.y6e{bottom:129.960000px;}
.y145{bottom:132.120000px;}
.y1e5{bottom:134.465760px;}
.yd5{bottom:138.060000px;}
.yfb{bottom:138.420000px;}
.yb2{bottom:138.613500px;}
.y1ff{bottom:140.940000px;}
.y15c{bottom:141.120000px;}
.y1cf{bottom:148.140000px;}
.y90{bottom:149.580000px;}
.y199{bottom:150.120000px;}
.y11c{bottom:152.280000px;}
.y144{bottom:155.880000px;}
.y27{bottom:158.050800px;}
.y6d{bottom:160.024500px;}
.yd4{bottom:161.640000px;}
.yfa{bottom:162.000000px;}
.y1fe{bottom:164.700000px;}
.y15b{bottom:164.880000px;}
.y1e4{bottom:168.297840px;}
.yb1{bottom:168.489000px;}
.y1ce{bottom:171.900000px;}
.y6c{bottom:177.480000px;}
.y143{bottom:179.640000px;}
.y26{bottom:179.645040px;}
.y198{bottom:182.880000px;}
.y8f{bottom:185.220000px;}
.yd3{bottom:185.400000px;}
.yf9{bottom:185.760000px;}
.y11b{bottom:188.100000px;}
.y15a{bottom:188.640000px;}
.y6b{bottom:195.300000px;}
.yb0{bottom:198.189000px;}
.y1fd{bottom:200.340000px;}
.y25{bottom:201.421440px;}
.y1e3{bottom:201.964320px;}
.y142{bottom:203.400000px;}
.y1cd{bottom:207.540000px;}
.y11a{bottom:211.680000px;}
.y159{bottom:212.400000px;}
.y8e{bottom:217.980000px;}
.yd2{bottom:221.040000px;}
.yf8{bottom:221.580000px;}
.y24{bottom:223.197840px;}
.y6a{bottom:226.980000px;}
.yaf{bottom:228.064500px;}
.y1fc{bottom:233.100000px;}
.y197{bottom:233.460000px;}
.y119{bottom:235.440000px;}
.y1e2{bottom:235.796400px;}
.y158{bottom:235.980000px;}
.y1cc{bottom:240.300000px;}
.yd1{bottom:244.800000px;}
.yf7{bottom:245.160000px;}
.y17d{bottom:249.120000px;}
.y141{bottom:250.740000px;}
.y196{bottom:257.220000px;}
.yae{bottom:257.764500px;}
.y23{bottom:260.640000px;}
.y69{bottom:262.620000px;}
.yd0{bottom:268.560000px;}
.y8d{bottom:268.740000px;}
.yf6{bottom:268.920000px;}
.y1e1{bottom:269.462880px;}
.y118{bottom:271.260000px;}
.y140{bottom:274.500000px;}
.y195{bottom:280.800000px;}
.y20c{bottom:283.140000px;}
.y1fb{bottom:283.680000px;}
.y68{bottom:286.380000px;}
.yad{bottom:287.640000px;}
.y1cb{bottom:291.060000px;}
.y117{bottom:294.840000px;}
.y13f{bottom:298.260000px;}
.y1e0{bottom:303.294960px;}
.ycf{bottom:304.200000px;}
.y8c{bottom:304.380000px;}
.y22{bottom:304.560000px;}
.y1b2{bottom:306.720000px;}
.y17c{bottom:309.960000px;}
.y1ca{bottom:314.640000px;}
.yac{bottom:318.960000px;}
.y157{bottom:319.500000px;}
.y67{bottom:322.020000px;}
.yce{bottom:327.960000px;}
.y8b{bottom:328.140000px;}
.yf5{bottom:328.320000px;}
.y116{bottom:330.660000px;}
.y13e{bottom:331.020000px;}
.y17b{bottom:333.720000px;}
.y1df{bottom:336.961440px;}
.y21{bottom:338.220000px;}
.y1c9{bottom:339.300000px;}
.y20b{bottom:342.540000px;}
.y156{bottom:343.260000px;}
.y1b1{bottom:343.800000px;}
.y66{bottom:345.780000px;}
.yf4{bottom:352.080000px;}
.y1fa{bottom:352.260000px;}
.y115{bottom:354.240000px;}
.yab{bottom:354.780000px;}
.y17a{bottom:357.480000px;}
.y20{bottom:359.997840px;}
.y1c8{bottom:362.880000px;}
.ycd{bottom:363.600000px;}
.y8a{bottom:363.780000px;}
.y20a{bottom:366.300000px;}
.y155{bottom:366.840000px;}
.y1b0{bottom:367.560000px;}
.y65{bottom:369.540000px;}
.y1de{bottom:370.627920px;}
.y194{bottom:375.660000px;}
.yf3{bottom:387.720000px;}
.y89{bottom:388.440000px;}
.y47{bottom:389.707920px;}
.y114{bottom:390.060000px;}
.yaa{bottom:390.420000px;}
.y13d{bottom:390.600000px;}
.y1af{bottom:391.320000px;}
.y64{bottom:393.120000px;}
.y1f{bottom:393.664320px;}
.ycc{bottom:396.540000px;}
.y209{bottom:402.120000px;}
.y1f9{bottom:402.840000px;}
.y1dd{bottom:404.460000px;}
.y9{bottom:408.422880px;}
.y1c7{bottom:411.300000px;}
.yf2{bottom:411.480000px;}
.y88{bottom:412.200000px;}
.y13c{bottom:414.360000px;}
.y179{bottom:416.880000px;}
.y113{bottom:422.820000px;}
.y46{bottom:423.540000px;}
.ya9{bottom:426.060000px;}
.y1f8{bottom:426.600000px;}
.y1ae{bottom:426.960000px;}
.y63{bottom:428.940000px;}
.y208{bottom:434.880000px;}
.yf1{bottom:435.240000px;}
.y87{bottom:436.860000px;}
.y13b{bottom:438.120000px;}
.y1dc{bottom:438.660000px;}
.y178{bottom:440.640000px;}
.y1c6{bottom:445.140000px;}
.ycb{bottom:446.580000px;}
.y8{bottom:448.741440px;}
.y1f7{bottom:450.360000px;}
.y1ad{bottom:450.720000px;}
.y62{bottom:452.520000px;}
.y45{bottom:452.703600px;}
.y193{bottom:458.820000px;}
.y86{bottom:460.440000px;}
.y13a{bottom:461.700000px;}
.ya8{bottom:461.880000px;}
.y1db{bottom:462.420000px;}
.y177{bottom:464.220000px;}
.yf0{bottom:470.880000px;}
.y112{bottom:473.400000px;}
.y1f6{bottom:474.120000px;}
.y44{bottom:474.480000px;}
.y61{bottom:476.280000px;}
.yca{bottom:480.780000px;}
.y192{bottom:482.580000px;}
.y139{bottom:485.460000px;}
.y1da{bottom:486.180000px;}
.y176{bottom:487.980000px;}
.y7{bottom:489.060000px;}
.y1c5{bottom:495.900000px;}
.y85{bottom:497.340000px;}
.ya7{bottom:497.520000px;}
.y1f5{bottom:497.700000px;}
.y1ac{bottom:498.060000px;}
.yef{bottom:503.640000px;}
.y43{bottom:503.643600px;}
.yc9{bottom:504.540000px;}
.y191{bottom:506.340000px;}
.y111{bottom:509.220000px;}
.y1d9{bottom:509.760000px;}
.y60{bottom:512.100000px;}
.y154{bottom:518.220000px;}
.y1c4{bottom:519.480000px;}
.y84{bottom:520.920000px;}
.y1f4{bottom:521.460000px;}
.y175{bottom:523.800000px;}
.y42{bottom:525.420000px;}
.y6{bottom:526.860000px;}
.yc8{bottom:528.300000px;}
.y190{bottom:530.100000px;}
.y110{bottom:532.800000px;}
.ya6{bottom:533.340000px;}
.y1ab{bottom:533.880000px;}
.y5f{bottom:535.680000px;}
.y1c3{bottom:543.240000px;}
.y207{bottom:544.860000px;}
.y1d8{bottom:545.580000px;}
.y174{bottom:547.380000px;}
.yc7{bottom:552.060000px;}
.y18f{bottom:553.680000px;}
.yee{bottom:554.400000px;}
.y41{bottom:554.583600px;}
.y10f{bottom:556.560000px;}
.y83{bottom:556.740000px;}
.y1f3{bottom:557.100000px;}
.y1aa{bottom:557.460000px;}
.y5e{bottom:559.440000px;}
.y5{bottom:564.138000px;}
.y1c2{bottom:567.000000px;}
.y206{bottom:568.620000px;}
.y153{bottom:568.800000px;}
.ya5{bottom:568.980000px;}
.y1d7{bottom:569.340000px;}
.y173{bottom:571.140000px;}
.y40{bottom:576.360000px;}
.y10e{bottom:580.320000px;}
.y82{bottom:580.500000px;}
.y1f2{bottom:580.860000px;}
.y1a9{bottom:581.220000px;}
.y5d{bottom:583.200000px;}
.yc6{bottom:587.700000px;}
.y18e{bottom:589.500000px;}
.yed{bottom:590.040000px;}
.y1c1{bottom:590.760000px;}
.y152{bottom:592.560000px;}
.ya4{bottom:592.740000px;}
.y1d6{bottom:592.920000px;}
.y172{bottom:594.900000px;}
.y81{bottom:604.080000px;}
.y205{bottom:604.260000px;}
.y1f1{bottom:604.620000px;}
.y1a8{bottom:604.980000px;}
.y3f{bottom:605.705760px;}
.y5c{bottom:606.780000px;}
.yc5{bottom:611.460000px;}
.y18d{bottom:613.080000px;}
.yec{bottom:613.800000px;}
.y151{bottom:616.320000px;}
.y1d5{bottom:616.680000px;}
.y1e{bottom:621.000000px;}
.y1c0{bottom:626.400000px;}
.y3e{bottom:627.300000px;}
.y138{bottom:627.660000px;}
.y80{bottom:627.840000px;}
.y204{bottom:628.020000px;}
.ya3{bottom:628.380000px;}
.y4{bottom:630.180000px;}
.y5b{bottom:630.540000px;}
.y12d{bottom:634.680000px;}
.y18c{bottom:636.840000px;}
.yeb{bottom:637.380000px;}
.y10d{bottom:639.720000px;}
.y150{bottom:640.080000px;}
.y1d4{bottom:640.440000px;}
.y1a7{bottom:640.620000px;}
.yc4{bottom:647.100000px;}
.y1bf{bottom:650.160000px;}
.y203{bottom:651.780000px;}
.y1f0{bottom:651.960000px;}
.ya2{bottom:652.140000px;}
.y5a{bottom:654.300000px;}
.y1d{bottom:655.020000px;}
.y3d{bottom:656.643600px;}
.y137{bottom:660.420000px;}
.y18b{bottom:660.600000px;}
.y7f{bottom:663.480000px;}
.y14f{bottom:663.660000px;}
.y1a6{bottom:664.380000px;}
.yc3{bottom:670.680000px;}
.yea{bottom:673.200000px;}
.y1be{bottom:673.740000px;}
.y12c{bottom:674.100000px;}
.y1ef{bottom:675.720000px;}
.y1d3{bottom:676.080000px;}
.y1c{bottom:677.340000px;}
.y59{bottom:678.060000px;}
.y3c{bottom:678.420000px;}
.y18a{bottom:684.360000px;}
.y202{bottom:684.540000px;}
.y7e{bottom:687.240000px;}
.y14e{bottom:687.420000px;}
.ya1{bottom:687.780000px;}
.y3{bottom:688.140000px;}
.yc2{bottom:695.520000px;}
.ye9{bottom:696.960000px;}
.y1bd{bottom:697.500000px;}
.y1b{bottom:699.487920px;}
.y1d2{bottom:699.840000px;}
.y58{bottom:701.640000px;}
.y3b{bottom:707.580000px;}
.y189{bottom:707.940000px;}
.y10c{bottom:710.820000px;}
.y7d{bottom:711.000000px;}
.y136{bottom:711.180000px;}
.y1ee{bottom:711.360000px;}
.y12b{bottom:718.200000px;}
.yc1{bottom:719.100000px;}
.ye8{bottom:720.540000px;}
.y2{bottom:720.720000px;}
.y1bc{bottom:721.260000px;}
.y1a{bottom:721.810800px;}
.ya0{bottom:723.600000px;}
.y1a5{bottom:723.780000px;}
.y188{bottom:731.700000px;}
.y7c{bottom:734.760000px;}
.y135{bottom:734.940000px;}
.y1ed{bottom:735.120000px;}
.y3a{bottom:736.740000px;}
.y57{bottom:737.460000px;}
.y12a{bottom:740.160000px;}
.y19{bottom:743.587200px;}
.ye7{bottom:744.300000px;}
.y1bb{bottom:744.840000px;}
.y10b{bottom:746.640000px;}
.y1a4{bottom:747.540000px;}
.y187{bottom:755.460000px;}
.yc0{bottom:755.820000px;}
.y134{bottom:758.520000px;}
.y1ec{bottom:758.880000px;}
.y9f{bottom:759.240000px;}
.y56{bottom:761.220000px;}
.y171{bottom:761.400000px;}
.y18{bottom:765.363600px;}
.y39{bottom:766.080000px;}
.y7b{bottom:767.520000px;}
.y1ba{bottom:769.680000px;}
.y10a{bottom:770.220000px;}
.y1a3{bottom:771.300000px;}
.y129{bottom:774.180000px;}
.y186{bottom:779.220000px;}
.ybf{bottom:779.580000px;}
.ye6{bottom:780.120000px;}
.y133{bottom:782.280000px;}
.y1eb{bottom:782.640000px;}
.y9e{bottom:783.000000px;}
.y55{bottom:784.800000px;}
.y170{bottom:785.160000px;}
.y17{bottom:787.140000px;}
.y1b9{bottom:793.260000px;}
.y109{bottom:793.980000px;}
.y38{bottom:795.240000px;}
.ye5{bottom:803.700000px;}
.y132{bottom:806.040000px;}
.y1ea{bottom:806.220000px;}
.y1d1{bottom:806.760000px;}
.y1a2{bottom:806.940000px;}
.y128{bottom:808.020000px;}
.y54{bottom:808.560000px;}
.y16{bottom:808.763760px;}
.y16f{bottom:808.920000px;}
.y163{bottom:810.540000px;}
.y185{bottom:814.860000px;}
.ybe{bottom:815.400000px;}
.y1b8{bottom:817.020000px;}
.y108{bottom:817.740000px;}
.y7a{bottom:818.100000px;}
.y9d{bottom:818.640000px;}
.y37{bottom:824.585760px;}
.ye4{bottom:827.460000px;}
.y131{bottom:829.800000px;}
.y1e9{bottom:829.980000px;}
.y15{bottom:830.540160px;}
.y1a1{bottom:830.700000px;}
.y53{bottom:832.320000px;}
.y16e{bottom:832.500000px;}
.y184{bottom:838.440000px;}
.ybd{bottom:838.980000px;}
.y1b7{bottom:840.780000px;}
.y107{bottom:841.500000px;}
.y127{bottom:842.040000px;}
.y9c{bottom:842.400000px;}
.y36{bottom:846.180000px;}
.y79{bottom:851.222880px;}
.y14{bottom:852.316560px;}
.y130{bottom:853.380000px;}
.y1e8{bottom:853.740000px;}
.y1a0{bottom:854.460000px;}
.y162{bottom:855.000000px;}
.y52{bottom:855.900000px;}
.ye3{bottom:863.100000px;}
.y1b6{bottom:864.360000px;}
.y106{bottom:865.080000px;}
.y9b{bottom:866.160000px;}
.y16d{bottom:868.320000px;}
.y13{bottom:874.092960px;}
.ybc{bottom:874.800000px;}
.y35{bottom:875.523600px;}
.y126{bottom:876.060000px;}
.y78{bottom:876.961440px;}
.y12f{bottom:877.140000px;}
.y1e7{bottom:877.500000px;}
.y19f{bottom:878.040000px;}
.y161{bottom:878.760000px;}
.y51{bottom:879.660000px;}
.ye2{bottom:886.860000px;}
.y183{bottom:887.760000px;}
.y105{bottom:888.840000px;}
.y9a{bottom:889.740000px;}
.y16c{bottom:891.900000px;}
.y12{bottom:895.687200px;}
.y34{bottom:897.300000px;}
.y125{bottom:898.020000px;}
.ybb{bottom:898.380000px;}
.y12e{bottom:900.900000px;}
.y1b5{bottom:901.080000px;}
.y160{bottom:902.340000px;}
.y77{bottom:902.700000px;}
.y50{bottom:903.420000px;}
.ye1{bottom:910.620000px;}
.y19e{bottom:910.800000px;}
.yd9{bottom:912.060000px;}
.y14d{bottom:912.600000px;}
.y16b{bottom:915.660000px;}
.y11{bottom:917.463600px;}
.y182{bottom:921.600000px;}
.y104{bottom:924.480000px;}
.y1b4{bottom:924.840000px;}
.y99{bottom:925.560000px;}
.y15f{bottom:926.100000px;}
.y33{bottom:926.463600px;}
.y4f{bottom:927.180000px;}
.yba{bottom:931.140000px;}
.y124{bottom:932.040000px;}
.y10{bottom:939.240000px;}
.y16a{bottom:939.420000px;}
.ye0{bottom:946.260000px;}
.y32{bottom:948.240000px;}
.y1b3{bottom:948.600000px;}
.yd8{bottom:949.320000px;}
.y14c{bottom:949.860000px;}
.y98{bottom:958.320000px;}
.y19d{bottom:961.560000px;}
.y76{bottom:962.100000px;}
.y4e{bottom:962.820000px;}
.y169{bottom:963.180000px;}
.y123{bottom:966.060000px;}
.ydf{bottom:970.020000px;}
.y103{bottom:972.000000px;}
.y181{bottom:972.360000px;}
.yf{bottom:972.900000px;}
.y14b{bottom:973.440000px;}
.y31{bottom:977.403600px;}
.yb9{bottom:981.900000px;}
.y1d0{bottom:982.080000px;}
.y75{bottom:984.060000px;}
.y19c{bottom:985.320000px;}
.y4d{bottom:986.580000px;}
.y168{bottom:986.760000px;}
.y122{bottom:988.020000px;}
.y102{bottom:995.760000px;}
.y180{bottom:995.940000px;}
.y14a{bottom:997.200000px;}
.y30{bottom:999.180000px;}
.yde{bottom:1002.780000px;}
.y74{bottom:1006.020000px;}
.ye{bottom:1006.740000px;}
.yd7{bottom:1008.720000px;}
.y97{bottom:1008.900000px;}
.y4c{bottom:1010.340000px;}
.y167{bottom:1010.520000px;}
.yb8{bottom:1015.017840px;}
.yff{bottom:1016.820000px;}
.y17f{bottom:1019.700000px;}
.y149{bottom:1020.960000px;}
.y121{bottom:1023.660000px;}
.y73{bottom:1028.160000px;}
.y2f{bottom:1028.343600px;}
.y101{bottom:1028.520000px;}
.y96{bottom:1032.660000px;}
.y166{bottom:1034.280000px;}
.yd{bottom:1040.400000px;}
.yb7{bottom:1040.581440px;}
.yd6{bottom:1041.480000px;}
.y17e{bottom:1043.460000px;}
.y148{bottom:1044.720000px;}
.y4b{bottom:1045.980000px;}
.y120{bottom:1047.420000px;}
.y2e{bottom:1050.120000px;}
.ydd{bottom:1053.360000px;}
.y95{bottom:1056.420000px;}
.yfe{bottom:1058.040000px;}
.y72{bottom:1059.484320px;}
.yb6{bottom:1066.320000px;}
.y147{bottom:1068.300000px;}
.y4a{bottom:1069.740000px;}
.y165{bottom:1069.920000px;}
.y11f{bottom:1071.000000px;}
.yc{bottom:1074.233520px;}
.y100{bottom:1079.100000px;}
.y2d{bottom:1079.460000px;}
.y71{bottom:1083.240000px;}
.ydc{bottom:1086.482880px;}
.y94{bottom:1092.060000px;}
.y164{bottom:1093.680000px;}
.yfd{bottom:1103.760000px;}
.y49{bottom:1105.560000px;}
.y11e{bottom:1106.820000px;}
.yb{bottom:1107.900000px;}
.y2c{bottom:1108.620000px;}
.ydb{bottom:1112.221440px;}
.y93{bottom:1115.820000px;}
.yb5{bottom:1126.075500px;}
.y70{bottom:1129.500000px;}
.ya{bottom:1130.760000px;}
.yda{bottom:1137.960000px;}
.y2b{bottom:1139.400000px;}
.y92{bottom:1139.580000px;}
.yb4{bottom:1143.720000px;}
.y1{bottom:1194.120000px;}
.h11{height:44.534180px;}
.h19{height:47.988281px;}
.hb{height:49.284492px;}
.ha{height:52.526250px;}
.h17{height:54.226758px;}
.h2{height:54.628594px;}
.h8{height:56.972070px;}
.h9{height:57.003750px;}
.h15{height:57.093750px;}
.h16{height:57.111750px;}
.hc{height:58.218750px;}
.hf{height:59.355866px;}
.he{height:59.364506px;}
.hd{height:59.378906px;}
.h12{height:59.396906px;}
.h13{height:62.876250px;}
.h14{height:64.129219px;}
.h4{height:78.973945px;}
.h7{height:87.328125px;}
.h10{height:91.985625px;}
.h18{height:93.818672px;}
.h6{height:108.663398px;}
.h3{height:118.757812px;}
.h5{height:178.136719px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:106.380000px;}
.x1{left:110.520000px;}
.x5{left:124.380000px;}
.x8{left:133.200000px;}
.x6{left:142.380000px;}
.x9{left:160.200000px;}
.x3{left:212.580000px;}
.xa{left:438.840000px;}
.x7{left:442.620000px;}
.x4{left:446.400000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-3.513600pt;}
.ls9{letter-spacing:-3.396480pt;}
.ls2{letter-spacing:-2.944000pt;}
.ls4{letter-spacing:-2.880000pt;}
.ls1{letter-spacing:-2.816000pt;}
.ls7{letter-spacing:-2.810880pt;}
.ls8{letter-spacing:-2.693760pt;}
.ls5{letter-spacing:-2.688000pt;}
.ls3{letter-spacing:-2.304000pt;}
.ls4a{letter-spacing:-0.832000pt;}
.ls1b{letter-spacing:-0.824320pt;}
.ls45{letter-spacing:-0.768000pt;}
.ls17{letter-spacing:-0.765440pt;}
.ls14{letter-spacing:-0.706560pt;}
.ls1a{letter-spacing:-0.588800pt;}
.ls26{letter-spacing:-0.576000pt;}
.ls12{letter-spacing:-0.529920pt;}
.ls25{letter-spacing:-0.512000pt;}
.ls11{letter-spacing:-0.471040pt;}
.ls2a{letter-spacing:-0.448000pt;}
.lse{letter-spacing:-0.412160pt;}
.ls1c{letter-spacing:-0.353280pt;}
.ls2b{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.307200pt;}
.ls30{letter-spacing:-0.288000pt;}
.ls3d{letter-spacing:-0.276480pt;}
.ls29{letter-spacing:-0.256000pt;}
.ls2e{letter-spacing:-0.240000pt;}
.lsf{letter-spacing:-0.235520pt;}
.ls3c{letter-spacing:-0.207360pt;}
.ls28{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.176640pt;}
.ls2d{letter-spacing:-0.144000pt;}
.ls3e{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.117760pt;}
.ls3a{letter-spacing:-0.101120pt;}
.ls2f{letter-spacing:-0.096000pt;}
.ls3b{letter-spacing:-0.069120pt;}
.ls2c{letter-spacing:-0.064000pt;}
.lsd{letter-spacing:-0.058880pt;}
.ls44{letter-spacing:-0.053120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.048000pt;}
.ls15{letter-spacing:0.058880pt;}
.ls1f{letter-spacing:0.064000pt;}
.ls1d{letter-spacing:0.101120pt;}
.lsa{letter-spacing:0.117760pt;}
.ls27{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.235520pt;}
.ls24{letter-spacing:0.240000pt;}
.ls49{letter-spacing:0.249600pt;}
.lsc{letter-spacing:0.253184pt;}
.ls1e{letter-spacing:0.256000pt;}
.ls21{letter-spacing:0.262400pt;}
.ls48{letter-spacing:0.268800pt;}
.ls37{letter-spacing:0.275200pt;}
.ls31{letter-spacing:0.288000pt;}
.ls18{letter-spacing:0.294400pt;}
.ls20{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.353280pt;}
.ls3f{letter-spacing:0.512000pt;}
.ls39{letter-spacing:0.518400pt;}
.ls32{letter-spacing:0.622080pt;}
.ls35{letter-spacing:0.628992pt;}
.ls47{letter-spacing:0.663040pt;}
.ls42{letter-spacing:0.670720pt;}
.ls4b{letter-spacing:0.673280pt;}
.ls4f{letter-spacing:0.691200pt;}
.ls40{letter-spacing:0.896000pt;}
.ls4c{letter-spacing:2.176000pt;}
.ls34{letter-spacing:2.816000pt;}
.ls4d{letter-spacing:3.456000pt;}
.ls51{letter-spacing:3.462400pt;}
.ls36{letter-spacing:4.096000pt;}
.ls33{letter-spacing:5.376000pt;}
.ls43{letter-spacing:6.656000pt;}
.ls4e{letter-spacing:9.216000pt;}
.ls38{letter-spacing:48.768000pt;}
.ls50{letter-spacing:56.903680pt;}
.ls46{letter-spacing:745.153280pt;}
.ls41{letter-spacing:752.371200pt;}
.wsd1{word-spacing:-53.120000pt;}
.ws4{word-spacing:-43.392000pt;}
.ws6{word-spacing:-41.088000pt;}
.ws5{word-spacing:-40.704000pt;}
.ws3{word-spacing:-40.512000pt;}
.ws1{word-spacing:-28.928000pt;}
.ws9{word-spacing:-26.469120pt;}
.ws0{word-spacing:-26.112000pt;}
.ws2{word-spacing:-25.984000pt;}
.ws7{word-spacing:-23.658240pt;}
.ws8{word-spacing:-23.072640pt;}
.ws46{word-spacing:-22.954240pt;}
.ws10{word-spacing:-21.696000pt;}
.ws6b{word-spacing:-15.621120pt;}
.ws69{word-spacing:-15.552000pt;}
.ws8a{word-spacing:-15.413760pt;}
.ws6a{word-spacing:-15.344640pt;}
.ws4e{word-spacing:-14.784000pt;}
.wsc5{word-spacing:-14.720000pt;}
.ws34{word-spacing:-14.656000pt;}
.ws4b{word-spacing:-14.592000pt;}
.ws49{word-spacing:-14.528000pt;}
.ws4d{word-spacing:-14.464000pt;}
.ws51{word-spacing:-14.400000pt;}
.wsbf{word-spacing:-14.336000pt;}
.ws48{word-spacing:-14.272000pt;}
.ws4a{word-spacing:-14.208000pt;}
.ws4f{word-spacing:-14.144000pt;}
.ws4c{word-spacing:-14.016000pt;}
.ws50{word-spacing:-13.952000pt;}
.ws47{word-spacing:-13.888000pt;}
.wsa4{word-spacing:-13.696000pt;}
.wsbe{word-spacing:-13.632000pt;}
.ws13{word-spacing:-13.542400pt;}
.ws18{word-spacing:-13.424640pt;}
.ws35{word-spacing:-13.365760pt;}
.ws12{word-spacing:-13.306880pt;}
.ws15{word-spacing:-13.248000pt;}
.ws14{word-spacing:-13.189120pt;}
.ws1a{word-spacing:-13.130240pt;}
.ws17{word-spacing:-13.071360pt;}
.ws11{word-spacing:-12.894720pt;}
.ws19{word-spacing:-12.776960pt;}
.ws36{word-spacing:-12.718080pt;}
.ws16{word-spacing:-12.600320pt;}
.ws1b{word-spacing:-12.541440pt;}
.ws37{word-spacing:-12.482560pt;}
.ws53{word-spacing:-10.848000pt;}
.ws52{word-spacing:-10.608000pt;}
.ws92{word-spacing:-3.904000pt;}
.ws94{word-spacing:-3.870720pt;}
.wsaf{word-spacing:-3.648000pt;}
.ws95{word-spacing:-3.456000pt;}
.ws7d{word-spacing:-3.264000pt;}
.ws7c{word-spacing:-3.072000pt;}
.ws81{word-spacing:-3.008000pt;}
.ws29{word-spacing:-3.002880pt;}
.wsa3{word-spacing:-2.688000pt;}
.ws80{word-spacing:-2.624000pt;}
.ws7f{word-spacing:-2.368000pt;}
.ws2a{word-spacing:-2.088960pt;}
.ws82{word-spacing:-1.984000pt;}
.wsba{word-spacing:-1.728000pt;}
.wsc9{word-spacing:-1.589760pt;}
.ws44{word-spacing:-1.530880pt;}
.ws45{word-spacing:-1.413120pt;}
.ws84{word-spacing:-1.344000pt;}
.ws23{word-spacing:-1.236480pt;}
.wsd4{word-spacing:-1.152000pt;}
.ws7e{word-spacing:-1.088000pt;}
.ws22{word-spacing:-1.059840pt;}
.wsc8{word-spacing:-0.898560pt;}
.wsca{word-spacing:-0.832000pt;}
.wsb{word-spacing:-0.768000pt;}
.ws55{word-spacing:-0.704000pt;}
.wsc7{word-spacing:-0.691200pt;}
.ws25{word-spacing:-0.647680pt;}
.ws79{word-spacing:-0.576000pt;}
.wsc2{word-spacing:-0.512000pt;}
.ws1f{word-spacing:-0.471040pt;}
.ws5a{word-spacing:-0.448000pt;}
.ws59{word-spacing:-0.320000pt;}
.ws2d{word-spacing:-0.294400pt;}
.ws64{word-spacing:-0.288000pt;}
.ws6f{word-spacing:-0.276480pt;}
.ws66{word-spacing:-0.240000pt;}
.ws2c{word-spacing:-0.235520pt;}
.ws76{word-spacing:-0.207360pt;}
.ws1c{word-spacing:-0.192000pt;}
.ws33{word-spacing:-0.176640pt;}
.ws67{word-spacing:-0.144000pt;}
.ws58{word-spacing:-0.128000pt;}
.ws21{word-spacing:-0.117760pt;}
.wsd{word-spacing:-0.117120pt;}
.wsa6{word-spacing:-0.069120pt;}
.ws57{word-spacing:-0.064000pt;}
.ws30{word-spacing:-0.058880pt;}
.ws60{word-spacing:-0.048000pt;}
.wsa{word-spacing:0.000000pt;}
.ws65{word-spacing:0.048000pt;}
.wsa5{word-spacing:0.053120pt;}
.ws28{word-spacing:0.058880pt;}
.ws5c{word-spacing:0.064000pt;}
.ws62{word-spacing:0.096000pt;}
.wsb5{word-spacing:0.101120pt;}
.ws38{word-spacing:0.117760pt;}
.ws5f{word-spacing:0.128000pt;}
.ws68{word-spacing:0.159360pt;}
.ws1e{word-spacing:0.176640pt;}
.ws54{word-spacing:0.192000pt;}
.ws63{word-spacing:0.240000pt;}
.ws88{word-spacing:0.256000pt;}
.ws78{word-spacing:0.276480pt;}
.ws61{word-spacing:0.288000pt;}
.ws31{word-spacing:0.294400pt;}
.ws6c{word-spacing:0.303360pt;}
.ws2b{word-spacing:0.307200pt;}
.ws5d{word-spacing:0.320000pt;}
.ws20{word-spacing:0.353280pt;}
.wsbd{word-spacing:0.384000pt;}
.wsd3{word-spacing:0.414720pt;}
.ws74{word-spacing:0.448000pt;}
.ws24{word-spacing:0.471040pt;}
.ws56{word-spacing:0.512000pt;}
.ws27{word-spacing:0.529920pt;}
.ws5b{word-spacing:0.576000pt;}
.ws2e{word-spacing:0.647680pt;}
.wsb6{word-spacing:0.704000pt;}
.ws32{word-spacing:0.706560pt;}
.wsb9{word-spacing:0.768000pt;}
.ws2f{word-spacing:0.824320pt;}
.ws5e{word-spacing:0.832000pt;}
.ws85{word-spacing:0.960000pt;}
.wsc6{word-spacing:1.024000pt;}
.wsb7{word-spacing:1.088000pt;}
.wsa1{word-spacing:1.152000pt;}
.ws96{word-spacing:1.216000pt;}
.wsb8{word-spacing:1.344000pt;}
.ws70{word-spacing:1.472000pt;}
.wsb0{word-spacing:1.856000pt;}
.ws91{word-spacing:2.112000pt;}
.ws3b{word-spacing:2.296320pt;}
.ws87{word-spacing:2.432000pt;}
.ws73{word-spacing:2.496000pt;}
.wse{word-spacing:2.693760pt;}
.ws93{word-spacing:2.752000pt;}
.ws1d{word-spacing:2.880000pt;}
.ws9f{word-spacing:3.136000pt;}
.ws75{word-spacing:3.264000pt;}
.ws90{word-spacing:3.392000pt;}
.wsf{word-spacing:3.396480pt;}
.wsc{word-spacing:3.513600pt;}
.wsae{word-spacing:3.712000pt;}
.ws7a{word-spacing:3.776000pt;}
.wsc4{word-spacing:3.904000pt;}
.ws7b{word-spacing:4.032000pt;}
.ws26{word-spacing:4.180480pt;}
.wsa0{word-spacing:4.352000pt;}
.ws97{word-spacing:4.416000pt;}
.ws72{word-spacing:4.544000pt;}
.ws9b{word-spacing:4.672000pt;}
.wsb3{word-spacing:4.992000pt;}
.ws71{word-spacing:5.056000pt;}
.ws43{word-spacing:5.299200pt;}
.wsac{word-spacing:5.312000pt;}
.ws42{word-spacing:5.475840pt;}
.wsc1{word-spacing:5.529600pt;}
.wsad{word-spacing:5.632000pt;}
.wsa8{word-spacing:5.696000pt;}
.wsc0{word-spacing:5.736960pt;}
.ws86{word-spacing:5.952000pt;}
.wsa7{word-spacing:6.336000pt;}
.wsa9{word-spacing:6.592000pt;}
.ws89{word-spacing:6.912000pt;}
.wscb{word-spacing:7.232000pt;}
.ws9e{word-spacing:7.616000pt;}
.ws8d{word-spacing:8.087040pt;}
.wsbc{word-spacing:8.256000pt;}
.ws98{word-spacing:8.896000pt;}
.wscc{word-spacing:9.024000pt;}
.wsce{word-spacing:9.152000pt;}
.ws6e{word-spacing:9.400320pt;}
.wscd{word-spacing:9.408000pt;}
.ws8f{word-spacing:9.536000pt;}
.ws6d{word-spacing:9.538560pt;}
.wsaa{word-spacing:9.664000pt;}
.wsc3{word-spacing:9.792000pt;}
.wsab{word-spacing:10.112000pt;}
.ws8e{word-spacing:10.432000pt;}
.wsb4{word-spacing:10.816000pt;}
.ws77{word-spacing:11.266560pt;}
.ws83{word-spacing:11.456000pt;}
.ws3c{word-spacing:12.541440pt;}
.wsd2{word-spacing:12.736000pt;}
.wsd0{word-spacing:12.992000pt;}
.ws9c{word-spacing:13.376000pt;}
.ws9d{word-spacing:13.632000pt;}
.wscf{word-spacing:14.912000pt;}
.ws39{word-spacing:18.135040pt;}
.ws3a{word-spacing:18.311680pt;}
.ws9a{word-spacing:18.496000pt;}
.ws99{word-spacing:19.392000pt;}
.ws41{word-spacing:22.786560pt;}
.wsbb{word-spacing:23.232000pt;}
.wsb1{word-spacing:24.512000pt;}
.ws8c{word-spacing:24.720000pt;}
.wsb2{word-spacing:24.832000pt;}
.ws8b{word-spacing:25.200000pt;}
.ws3f{word-spacing:27.732480pt;}
.ws40{word-spacing:28.380160pt;}
.ws3d{word-spacing:42.393600pt;}
.ws3e{word-spacing:42.629120pt;}
.wsa2{word-spacing:155.392000pt;}
._9{margin-left:-12.171776pt;}
._5{margin-left:-10.680320pt;}
._6{margin-left:-7.841280pt;}
._8{margin-left:-6.241280pt;}
._3{margin-left:-4.224256pt;}
._1{margin-left:-2.688000pt;}
._2{margin-left:-1.036800pt;}
._0{width:1.024000pt;}
._e{width:2.432000pt;}
._7{width:3.427840pt;}
._4{width:4.564480pt;}
._10{width:6.080000pt;}
._11{width:8.320000pt;}
._c{width:9.896960pt;}
._d{width:11.996928pt;}
._a{width:41.876480pt;}
._f{width:749.886080pt;}
._b{width:754.003840pt;}
.fsa{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs8{font-size:64.000000pt;}
.fsb{font-size:69.120000pt;}
.fsd{font-size:72.320000pt;}
.fsc{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.fs9{font-size:101.120000pt;}
.fs4{font-size:117.120000pt;}
.fs1{font-size:128.000000pt;}
.fs3{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:50.720000pt;}
.y2a{bottom:50.880000pt;}
.y29{bottom:80.474240pt;}
.y19b{bottom:80.480000pt;}
.y201{bottom:83.040000pt;}
.y15e{bottom:83.360000pt;}
.y1e6{bottom:89.599360pt;}
.yfc{bottom:91.200000pt;}
.y146{bottom:96.480000pt;}
.yb3{bottom:96.812000pt;}
.y6f{bottom:99.836000pt;}
.y19a{bottom:101.600000pt;}
.y200{bottom:104.160000pt;}
.y15d{bottom:104.480000pt;}
.y28{bottom:110.400000pt;}
.y91{bottom:111.840000pt;}
.y11d{bottom:114.400000pt;}
.y6e{bottom:115.520000pt;}
.y145{bottom:117.440000pt;}
.y1e5{bottom:119.525120pt;}
.yd5{bottom:122.720000pt;}
.yfb{bottom:123.040000pt;}
.yb2{bottom:123.212000pt;}
.y1ff{bottom:125.280000pt;}
.y15c{bottom:125.440000pt;}
.y1cf{bottom:131.680000pt;}
.y90{bottom:132.960000pt;}
.y199{bottom:133.440000pt;}
.y11c{bottom:135.360000pt;}
.y144{bottom:138.560000pt;}
.y27{bottom:140.489600pt;}
.y6d{bottom:142.244000pt;}
.yd4{bottom:143.680000pt;}
.yfa{bottom:144.000000pt;}
.y1fe{bottom:146.400000pt;}
.y15b{bottom:146.560000pt;}
.y1e4{bottom:149.598080pt;}
.yb1{bottom:149.768000pt;}
.y1ce{bottom:152.800000pt;}
.y6c{bottom:157.760000pt;}
.y143{bottom:159.680000pt;}
.y26{bottom:159.684480pt;}
.y198{bottom:162.560000pt;}
.y8f{bottom:164.640000pt;}
.yd3{bottom:164.800000pt;}
.yf9{bottom:165.120000pt;}
.y11b{bottom:167.200000pt;}
.y15a{bottom:167.680000pt;}
.y6b{bottom:173.600000pt;}
.yb0{bottom:176.168000pt;}
.y1fd{bottom:178.080000pt;}
.y25{bottom:179.041280pt;}
.y1e3{bottom:179.523840pt;}
.y142{bottom:180.800000pt;}
.y1cd{bottom:184.480000pt;}
.y11a{bottom:188.160000pt;}
.y159{bottom:188.800000pt;}
.y8e{bottom:193.760000pt;}
.yd2{bottom:196.480000pt;}
.yf8{bottom:196.960000pt;}
.y24{bottom:198.398080pt;}
.y6a{bottom:201.760000pt;}
.yaf{bottom:202.724000pt;}
.y1fc{bottom:207.200000pt;}
.y197{bottom:207.520000pt;}
.y119{bottom:209.280000pt;}
.y1e2{bottom:209.596800pt;}
.y158{bottom:209.760000pt;}
.y1cc{bottom:213.600000pt;}
.yd1{bottom:217.600000pt;}
.yf7{bottom:217.920000pt;}
.y17d{bottom:221.440000pt;}
.y141{bottom:222.880000pt;}
.y196{bottom:228.640000pt;}
.yae{bottom:229.124000pt;}
.y23{bottom:231.680000pt;}
.y69{bottom:233.440000pt;}
.yd0{bottom:238.720000pt;}
.y8d{bottom:238.880000pt;}
.yf6{bottom:239.040000pt;}
.y1e1{bottom:239.522560pt;}
.y118{bottom:241.120000pt;}
.y140{bottom:244.000000pt;}
.y195{bottom:249.600000pt;}
.y20c{bottom:251.680000pt;}
.y1fb{bottom:252.160000pt;}
.y68{bottom:254.560000pt;}
.yad{bottom:255.680000pt;}
.y1cb{bottom:258.720000pt;}
.y117{bottom:262.080000pt;}
.y13f{bottom:265.120000pt;}
.y1e0{bottom:269.595520pt;}
.ycf{bottom:270.400000pt;}
.y8c{bottom:270.560000pt;}
.y22{bottom:270.720000pt;}
.y1b2{bottom:272.640000pt;}
.y17c{bottom:275.520000pt;}
.y1ca{bottom:279.680000pt;}
.yac{bottom:283.520000pt;}
.y157{bottom:284.000000pt;}
.y67{bottom:286.240000pt;}
.yce{bottom:291.520000pt;}
.y8b{bottom:291.680000pt;}
.yf5{bottom:291.840000pt;}
.y116{bottom:293.920000pt;}
.y13e{bottom:294.240000pt;}
.y17b{bottom:296.640000pt;}
.y1df{bottom:299.521280pt;}
.y21{bottom:300.640000pt;}
.y1c9{bottom:301.600000pt;}
.y20b{bottom:304.480000pt;}
.y156{bottom:305.120000pt;}
.y1b1{bottom:305.600000pt;}
.y66{bottom:307.360000pt;}
.yf4{bottom:312.960000pt;}
.y1fa{bottom:313.120000pt;}
.y115{bottom:314.880000pt;}
.yab{bottom:315.360000pt;}
.y17a{bottom:317.760000pt;}
.y20{bottom:319.998080pt;}
.y1c8{bottom:322.560000pt;}
.ycd{bottom:323.200000pt;}
.y8a{bottom:323.360000pt;}
.y20a{bottom:325.600000pt;}
.y155{bottom:326.080000pt;}
.y1b0{bottom:326.720000pt;}
.y65{bottom:328.480000pt;}
.y1de{bottom:329.447040pt;}
.y194{bottom:333.920000pt;}
.yf3{bottom:344.640000pt;}
.y89{bottom:345.280000pt;}
.y47{bottom:346.407040pt;}
.y114{bottom:346.720000pt;}
.yaa{bottom:347.040000pt;}
.y13d{bottom:347.200000pt;}
.y1af{bottom:347.840000pt;}
.y64{bottom:349.440000pt;}
.y1f{bottom:349.923840pt;}
.ycc{bottom:352.480000pt;}
.y209{bottom:357.440000pt;}
.y1f9{bottom:358.080000pt;}
.y1dd{bottom:359.520000pt;}
.y9{bottom:363.042560pt;}
.y1c7{bottom:365.600000pt;}
.yf2{bottom:365.760000pt;}
.y88{bottom:366.400000pt;}
.y13c{bottom:368.320000pt;}
.y179{bottom:370.560000pt;}
.y113{bottom:375.840000pt;}
.y46{bottom:376.480000pt;}
.ya9{bottom:378.720000pt;}
.y1f8{bottom:379.200000pt;}
.y1ae{bottom:379.520000pt;}
.y63{bottom:381.280000pt;}
.y208{bottom:386.560000pt;}
.yf1{bottom:386.880000pt;}
.y87{bottom:388.320000pt;}
.y13b{bottom:389.440000pt;}
.y1dc{bottom:389.920000pt;}
.y178{bottom:391.680000pt;}
.y1c6{bottom:395.680000pt;}
.ycb{bottom:396.960000pt;}
.y8{bottom:398.881280pt;}
.y1f7{bottom:400.320000pt;}
.y1ad{bottom:400.640000pt;}
.y62{bottom:402.240000pt;}
.y45{bottom:402.403200pt;}
.y193{bottom:407.840000pt;}
.y86{bottom:409.280000pt;}
.y13a{bottom:410.400000pt;}
.ya8{bottom:410.560000pt;}
.y1db{bottom:411.040000pt;}
.y177{bottom:412.640000pt;}
.yf0{bottom:418.560000pt;}
.y112{bottom:420.800000pt;}
.y1f6{bottom:421.440000pt;}
.y44{bottom:421.760000pt;}
.y61{bottom:423.360000pt;}
.yca{bottom:427.360000pt;}
.y192{bottom:428.960000pt;}
.y139{bottom:431.520000pt;}
.y1da{bottom:432.160000pt;}
.y176{bottom:433.760000pt;}
.y7{bottom:434.720000pt;}
.y1c5{bottom:440.800000pt;}
.y85{bottom:442.080000pt;}
.ya7{bottom:442.240000pt;}
.y1f5{bottom:442.400000pt;}
.y1ac{bottom:442.720000pt;}
.yef{bottom:447.680000pt;}
.y43{bottom:447.683200pt;}
.yc9{bottom:448.480000pt;}
.y191{bottom:450.080000pt;}
.y111{bottom:452.640000pt;}
.y1d9{bottom:453.120000pt;}
.y60{bottom:455.200000pt;}
.y154{bottom:460.640000pt;}
.y1c4{bottom:461.760000pt;}
.y84{bottom:463.040000pt;}
.y1f4{bottom:463.520000pt;}
.y175{bottom:465.600000pt;}
.y42{bottom:467.040000pt;}
.y6{bottom:468.320000pt;}
.yc8{bottom:469.600000pt;}
.y190{bottom:471.200000pt;}
.y110{bottom:473.600000pt;}
.ya6{bottom:474.080000pt;}
.y1ab{bottom:474.560000pt;}
.y5f{bottom:476.160000pt;}
.y1c3{bottom:482.880000pt;}
.y207{bottom:484.320000pt;}
.y1d8{bottom:484.960000pt;}
.y174{bottom:486.560000pt;}
.yc7{bottom:490.720000pt;}
.y18f{bottom:492.160000pt;}
.yee{bottom:492.800000pt;}
.y41{bottom:492.963200pt;}
.y10f{bottom:494.720000pt;}
.y83{bottom:494.880000pt;}
.y1f3{bottom:495.200000pt;}
.y1aa{bottom:495.520000pt;}
.y5e{bottom:497.280000pt;}
.y5{bottom:501.456000pt;}
.y1c2{bottom:504.000000pt;}
.y206{bottom:505.440000pt;}
.y153{bottom:505.600000pt;}
.ya5{bottom:505.760000pt;}
.y1d7{bottom:506.080000pt;}
.y173{bottom:507.680000pt;}
.y40{bottom:512.320000pt;}
.y10e{bottom:515.840000pt;}
.y82{bottom:516.000000pt;}
.y1f2{bottom:516.320000pt;}
.y1a9{bottom:516.640000pt;}
.y5d{bottom:518.400000pt;}
.yc6{bottom:522.400000pt;}
.y18e{bottom:524.000000pt;}
.yed{bottom:524.480000pt;}
.y1c1{bottom:525.120000pt;}
.y152{bottom:526.720000pt;}
.ya4{bottom:526.880000pt;}
.y1d6{bottom:527.040000pt;}
.y172{bottom:528.800000pt;}
.y81{bottom:536.960000pt;}
.y205{bottom:537.120000pt;}
.y1f1{bottom:537.440000pt;}
.y1a8{bottom:537.760000pt;}
.y3f{bottom:538.405120pt;}
.y5c{bottom:539.360000pt;}
.yc5{bottom:543.520000pt;}
.y18d{bottom:544.960000pt;}
.yec{bottom:545.600000pt;}
.y151{bottom:547.840000pt;}
.y1d5{bottom:548.160000pt;}
.y1e{bottom:552.000000pt;}
.y1c0{bottom:556.800000pt;}
.y3e{bottom:557.600000pt;}
.y138{bottom:557.920000pt;}
.y80{bottom:558.080000pt;}
.y204{bottom:558.240000pt;}
.ya3{bottom:558.560000pt;}
.y4{bottom:560.160000pt;}
.y5b{bottom:560.480000pt;}
.y12d{bottom:564.160000pt;}
.y18c{bottom:566.080000pt;}
.yeb{bottom:566.560000pt;}
.y10d{bottom:568.640000pt;}
.y150{bottom:568.960000pt;}
.y1d4{bottom:569.280000pt;}
.y1a7{bottom:569.440000pt;}
.yc4{bottom:575.200000pt;}
.y1bf{bottom:577.920000pt;}
.y203{bottom:579.360000pt;}
.y1f0{bottom:579.520000pt;}
.ya2{bottom:579.680000pt;}
.y5a{bottom:581.600000pt;}
.y1d{bottom:582.240000pt;}
.y3d{bottom:583.683200pt;}
.y137{bottom:587.040000pt;}
.y18b{bottom:587.200000pt;}
.y7f{bottom:589.760000pt;}
.y14f{bottom:589.920000pt;}
.y1a6{bottom:590.560000pt;}
.yc3{bottom:596.160000pt;}
.yea{bottom:598.400000pt;}
.y1be{bottom:598.880000pt;}
.y12c{bottom:599.200000pt;}
.y1ef{bottom:600.640000pt;}
.y1d3{bottom:600.960000pt;}
.y1c{bottom:602.080000pt;}
.y59{bottom:602.720000pt;}
.y3c{bottom:603.040000pt;}
.y18a{bottom:608.320000pt;}
.y202{bottom:608.480000pt;}
.y7e{bottom:610.880000pt;}
.y14e{bottom:611.040000pt;}
.ya1{bottom:611.360000pt;}
.y3{bottom:611.680000pt;}
.yc2{bottom:618.240000pt;}
.ye9{bottom:619.520000pt;}
.y1bd{bottom:620.000000pt;}
.y1b{bottom:621.767040pt;}
.y1d2{bottom:622.080000pt;}
.y58{bottom:623.680000pt;}
.y3b{bottom:628.960000pt;}
.y189{bottom:629.280000pt;}
.y10c{bottom:631.840000pt;}
.y7d{bottom:632.000000pt;}
.y136{bottom:632.160000pt;}
.y1ee{bottom:632.320000pt;}
.y12b{bottom:638.400000pt;}
.yc1{bottom:639.200000pt;}
.ye8{bottom:640.480000pt;}
.y2{bottom:640.640000pt;}
.y1bc{bottom:641.120000pt;}
.y1a{bottom:641.609600pt;}
.ya0{bottom:643.200000pt;}
.y1a5{bottom:643.360000pt;}
.y188{bottom:650.400000pt;}
.y7c{bottom:653.120000pt;}
.y135{bottom:653.280000pt;}
.y1ed{bottom:653.440000pt;}
.y3a{bottom:654.880000pt;}
.y57{bottom:655.520000pt;}
.y12a{bottom:657.920000pt;}
.y19{bottom:660.966400pt;}
.ye7{bottom:661.600000pt;}
.y1bb{bottom:662.080000pt;}
.y10b{bottom:663.680000pt;}
.y1a4{bottom:664.480000pt;}
.y187{bottom:671.520000pt;}
.yc0{bottom:671.840000pt;}
.y134{bottom:674.240000pt;}
.y1ec{bottom:674.560000pt;}
.y9f{bottom:674.880000pt;}
.y56{bottom:676.640000pt;}
.y171{bottom:676.800000pt;}
.y18{bottom:680.323200pt;}
.y39{bottom:680.960000pt;}
.y7b{bottom:682.240000pt;}
.y1ba{bottom:684.160000pt;}
.y10a{bottom:684.640000pt;}
.y1a3{bottom:685.600000pt;}
.y129{bottom:688.160000pt;}
.y186{bottom:692.640000pt;}
.ybf{bottom:692.960000pt;}
.ye6{bottom:693.440000pt;}
.y133{bottom:695.360000pt;}
.y1eb{bottom:695.680000pt;}
.y9e{bottom:696.000000pt;}
.y55{bottom:697.600000pt;}
.y170{bottom:697.920000pt;}
.y17{bottom:699.680000pt;}
.y1b9{bottom:705.120000pt;}
.y109{bottom:705.760000pt;}
.y38{bottom:706.880000pt;}
.ye5{bottom:714.400000pt;}
.y132{bottom:716.480000pt;}
.y1ea{bottom:716.640000pt;}
.y1d1{bottom:717.120000pt;}
.y1a2{bottom:717.280000pt;}
.y128{bottom:718.240000pt;}
.y54{bottom:718.720000pt;}
.y16{bottom:718.901120pt;}
.y16f{bottom:719.040000pt;}
.y163{bottom:720.480000pt;}
.y185{bottom:724.320000pt;}
.ybe{bottom:724.800000pt;}
.y1b8{bottom:726.240000pt;}
.y108{bottom:726.880000pt;}
.y7a{bottom:727.200000pt;}
.y9d{bottom:727.680000pt;}
.y37{bottom:732.965120pt;}
.ye4{bottom:735.520000pt;}
.y131{bottom:737.600000pt;}
.y1e9{bottom:737.760000pt;}
.y15{bottom:738.257920pt;}
.y1a1{bottom:738.400000pt;}
.y53{bottom:739.840000pt;}
.y16e{bottom:740.000000pt;}
.y184{bottom:745.280000pt;}
.ybd{bottom:745.760000pt;}
.y1b7{bottom:747.360000pt;}
.y107{bottom:748.000000pt;}
.y127{bottom:748.480000pt;}
.y9c{bottom:748.800000pt;}
.y36{bottom:752.160000pt;}
.y79{bottom:756.642560pt;}
.y14{bottom:757.614720pt;}
.y130{bottom:758.560000pt;}
.y1e8{bottom:758.880000pt;}
.y1a0{bottom:759.520000pt;}
.y162{bottom:760.000000pt;}
.y52{bottom:760.800000pt;}
.ye3{bottom:767.200000pt;}
.y1b6{bottom:768.320000pt;}
.y106{bottom:768.960000pt;}
.y9b{bottom:769.920000pt;}
.y16d{bottom:771.840000pt;}
.y13{bottom:776.971520pt;}
.ybc{bottom:777.600000pt;}
.y35{bottom:778.243200pt;}
.y126{bottom:778.720000pt;}
.y78{bottom:779.521280pt;}
.y12f{bottom:779.680000pt;}
.y1e7{bottom:780.000000pt;}
.y19f{bottom:780.480000pt;}
.y161{bottom:781.120000pt;}
.y51{bottom:781.920000pt;}
.ye2{bottom:788.320000pt;}
.y183{bottom:789.120000pt;}
.y105{bottom:790.080000pt;}
.y9a{bottom:790.880000pt;}
.y16c{bottom:792.800000pt;}
.y12{bottom:796.166400pt;}
.y34{bottom:797.600000pt;}
.y125{bottom:798.240000pt;}
.ybb{bottom:798.560000pt;}
.y12e{bottom:800.800000pt;}
.y1b5{bottom:800.960000pt;}
.y160{bottom:802.080000pt;}
.y77{bottom:802.400000pt;}
.y50{bottom:803.040000pt;}
.ye1{bottom:809.440000pt;}
.y19e{bottom:809.600000pt;}
.yd9{bottom:810.720000pt;}
.y14d{bottom:811.200000pt;}
.y16b{bottom:813.920000pt;}
.y11{bottom:815.523200pt;}
.y182{bottom:819.200000pt;}
.y104{bottom:821.760000pt;}
.y1b4{bottom:822.080000pt;}
.y99{bottom:822.720000pt;}
.y15f{bottom:823.200000pt;}
.y33{bottom:823.523200pt;}
.y4f{bottom:824.160000pt;}
.yba{bottom:827.680000pt;}
.y124{bottom:828.480000pt;}
.y10{bottom:834.880000pt;}
.y16a{bottom:835.040000pt;}
.ye0{bottom:841.120000pt;}
.y32{bottom:842.880000pt;}
.y1b3{bottom:843.200000pt;}
.yd8{bottom:843.840000pt;}
.y14c{bottom:844.320000pt;}
.y98{bottom:851.840000pt;}
.y19d{bottom:854.720000pt;}
.y76{bottom:855.200000pt;}
.y4e{bottom:855.840000pt;}
.y169{bottom:856.160000pt;}
.y123{bottom:858.720000pt;}
.ydf{bottom:862.240000pt;}
.y103{bottom:864.000000pt;}
.y181{bottom:864.320000pt;}
.yf{bottom:864.800000pt;}
.y14b{bottom:865.280000pt;}
.y31{bottom:868.803200pt;}
.yb9{bottom:872.800000pt;}
.y1d0{bottom:872.960000pt;}
.y75{bottom:874.720000pt;}
.y19c{bottom:875.840000pt;}
.y4d{bottom:876.960000pt;}
.y168{bottom:877.120000pt;}
.y122{bottom:878.240000pt;}
.y102{bottom:885.120000pt;}
.y180{bottom:885.280000pt;}
.y14a{bottom:886.400000pt;}
.y30{bottom:888.160000pt;}
.yde{bottom:891.360000pt;}
.y74{bottom:894.240000pt;}
.ye{bottom:894.880000pt;}
.yd7{bottom:896.640000pt;}
.y97{bottom:896.800000pt;}
.y4c{bottom:898.080000pt;}
.y167{bottom:898.240000pt;}
.yb8{bottom:902.238080pt;}
.yff{bottom:903.840000pt;}
.y17f{bottom:906.400000pt;}
.y149{bottom:907.520000pt;}
.y121{bottom:909.920000pt;}
.y73{bottom:913.920000pt;}
.y2f{bottom:914.083200pt;}
.y101{bottom:914.240000pt;}
.y96{bottom:917.920000pt;}
.y166{bottom:919.360000pt;}
.yd{bottom:924.800000pt;}
.yb7{bottom:924.961280pt;}
.yd6{bottom:925.760000pt;}
.y17e{bottom:927.520000pt;}
.y148{bottom:928.640000pt;}
.y4b{bottom:929.760000pt;}
.y120{bottom:931.040000pt;}
.y2e{bottom:933.440000pt;}
.ydd{bottom:936.320000pt;}
.y95{bottom:939.040000pt;}
.yfe{bottom:940.480000pt;}
.y72{bottom:941.763840pt;}
.yb6{bottom:947.840000pt;}
.y147{bottom:949.600000pt;}
.y4a{bottom:950.880000pt;}
.y165{bottom:951.040000pt;}
.y11f{bottom:952.000000pt;}
.yc{bottom:954.874240pt;}
.y100{bottom:959.200000pt;}
.y2d{bottom:959.520000pt;}
.y71{bottom:962.880000pt;}
.ydc{bottom:965.762560pt;}
.y94{bottom:970.720000pt;}
.y164{bottom:972.160000pt;}
.yfd{bottom:981.120000pt;}
.y49{bottom:982.720000pt;}
.y11e{bottom:983.840000pt;}
.yb{bottom:984.800000pt;}
.y2c{bottom:985.440000pt;}
.ydb{bottom:988.641280pt;}
.y93{bottom:991.840000pt;}
.yb5{bottom:1000.956000pt;}
.y70{bottom:1004.000000pt;}
.ya{bottom:1005.120000pt;}
.yda{bottom:1011.520000pt;}
.y2b{bottom:1012.800000pt;}
.y92{bottom:1012.960000pt;}
.yb4{bottom:1016.640000pt;}
.y1{bottom:1061.440000pt;}
.h11{height:39.585938pt;}
.h19{height:42.656250pt;}
.hb{height:43.808438pt;}
.ha{height:46.690000pt;}
.h17{height:48.201562pt;}
.h2{height:48.558750pt;}
.h8{height:50.641840pt;}
.h9{height:50.670000pt;}
.h15{height:50.750000pt;}
.h16{height:50.766000pt;}
.hc{height:51.750000pt;}
.hf{height:52.760770pt;}
.he{height:52.768450pt;}
.hd{height:52.781250pt;}
.h12{height:52.797250pt;}
.h13{height:55.890000pt;}
.h14{height:57.003750pt;}
.h4{height:70.199062pt;}
.h7{height:77.625000pt;}
.h10{height:81.765000pt;}
.h18{height:83.394375pt;}
.h6{height:96.589687pt;}
.h3{height:105.562500pt;}
.h5{height:158.343750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.560000pt;}
.x1{left:98.240000pt;}
.x5{left:110.560000pt;}
.x8{left:118.400000pt;}
.x6{left:126.560000pt;}
.x9{left:142.400000pt;}
.x3{left:188.960000pt;}
.xa{left:390.080000pt;}
.x7{left:393.440000pt;}
.x4{left:396.800000pt;}
}




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