
    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_bab7f057d037a3bae669a9e3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_ab7121d3d977f4def9101f10.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.095703;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_7297306fd1633da208f1f1e6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_928676e4f1f8a5a32a494f95.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_6044c434603c92e8d858e8cf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:34.560000px;}
.ls7b{letter-spacing:-2.428848px;}
.ls66{letter-spacing:-1.352700px;}
.ls56{letter-spacing:-0.991980px;}
.ls6c{letter-spacing:-0.505008px;}
.ls6e{letter-spacing:-0.402804px;}
.ls83{letter-spacing:-0.366732px;}
.ls65{letter-spacing:-0.294588px;}
.ls87{letter-spacing:-0.282564px;}
.ls25{letter-spacing:-0.276552px;}
.ls4d{letter-spacing:-0.270540px;}
.ls7a{letter-spacing:-0.252504px;}
.ls3f{letter-spacing:-0.246492px;}
.ls64{letter-spacing:-0.234468px;}
.ls54{letter-spacing:-0.222444px;}
.ls59{letter-spacing:-0.216432px;}
.ls80{letter-spacing:-0.210420px;}
.ls79{letter-spacing:-0.204408px;}
.ls57{letter-spacing:-0.198396px;}
.ls33{letter-spacing:-0.192384px;}
.ls5e{letter-spacing:-0.186372px;}
.ls29{letter-spacing:-0.180360px;}
.ls39{letter-spacing:-0.174348px;}
.ls43{letter-spacing:-0.168336px;}
.ls4f{letter-spacing:-0.162324px;}
.ls50{letter-spacing:-0.156312px;}
.ls32{letter-spacing:-0.150300px;}
.ls48{letter-spacing:-0.144288px;}
.ls27{letter-spacing:-0.138276px;}
.ls42{letter-spacing:-0.132264px;}
.ls30{letter-spacing:-0.126252px;}
.ls49{letter-spacing:-0.120240px;}
.ls3d{letter-spacing:-0.114228px;}
.ls5a{letter-spacing:-0.108216px;}
.ls2b{letter-spacing:-0.102204px;}
.ls3e{letter-spacing:-0.096192px;}
.ls45{letter-spacing:-0.090180px;}
.ls63{letter-spacing:-0.084168px;}
.ls2a{letter-spacing:-0.078156px;}
.ls4c{letter-spacing:-0.072144px;}
.ls34{letter-spacing:-0.066132px;}
.ls46{letter-spacing:-0.060120px;}
.ls26{letter-spacing:-0.054108px;}
.ls24{letter-spacing:-0.048600px;}
.ls28{letter-spacing:-0.048096px;}
.ls3c{letter-spacing:-0.042084px;}
.ls1c{letter-spacing:-0.037800px;}
.ls38{letter-spacing:-0.036072px;}
.ls23{letter-spacing:-0.032400px;}
.ls5f{letter-spacing:-0.030060px;}
.ls2c{letter-spacing:-0.024048px;}
.ls20{letter-spacing:-0.021600px;}
.ls31{letter-spacing:-0.018036px;}
.ls55{letter-spacing:-0.012024px;}
.ls21{letter-spacing:-0.010800px;}
.ls2f{letter-spacing:-0.006012px;}
.ls22{letter-spacing:-0.005400px;}
.ls1d{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.005400px;}
.ls36{letter-spacing:0.006012px;}
.ls51{letter-spacing:0.006588px;}
.ls1{letter-spacing:0.008388px;}
.ls4{letter-spacing:0.009576px;}
.lsa{letter-spacing:0.010800px;}
.ls14{letter-spacing:0.012024px;}
.ls10{letter-spacing:0.016200px;}
.ls0{letter-spacing:0.016776px;}
.ls13{letter-spacing:0.018036px;}
.ls8{letter-spacing:0.021600px;}
.ls58{letter-spacing:0.024048px;}
.ls2{letter-spacing:0.025164px;}
.lse{letter-spacing:0.027000px;}
.ls37{letter-spacing:0.030060px;}
.ls35{letter-spacing:0.036072px;}
.ls9{letter-spacing:0.037800px;}
.ls16{letter-spacing:0.042084px;}
.lsb{letter-spacing:0.043200px;}
.ls17{letter-spacing:0.048096px;}
.lsc{letter-spacing:0.048600px;}
.ls47{letter-spacing:0.054108px;}
.ls3{letter-spacing:0.058716px;}
.ls12{letter-spacing:0.059400px;}
.ls2d{letter-spacing:0.060120px;}
.ls11{letter-spacing:0.064800px;}
.ls40{letter-spacing:0.066132px;}
.lsd{letter-spacing:0.070200px;}
.ls18{letter-spacing:0.072144px;}
.ls1f{letter-spacing:0.075600px;}
.ls2e{letter-spacing:0.078156px;}
.ls52{letter-spacing:0.079056px;}
.ls7{letter-spacing:0.081000px;}
.ls3a{letter-spacing:0.084168px;}
.ls19{letter-spacing:0.090180px;}
.ls3b{letter-spacing:0.096192px;}
.ls1a{letter-spacing:0.102204px;}
.ls44{letter-spacing:0.108216px;}
.ls5{letter-spacing:0.110124px;}
.ls1b{letter-spacing:0.114228px;}
.ls41{letter-spacing:0.120240px;}
.ls15{letter-spacing:0.126252px;}
.ls53{letter-spacing:0.131760px;}
.ls4a{letter-spacing:0.132264px;}
.ls4e{letter-spacing:0.138276px;}
.ls62{letter-spacing:0.144288px;}
.ls6d{letter-spacing:0.150300px;}
.ls6f{letter-spacing:0.156312px;}
.ls6{letter-spacing:0.158004px;}
.ls5c{letter-spacing:0.162324px;}
.ls6a{letter-spacing:0.168336px;}
.ls67{letter-spacing:0.174348px;}
.ls5d{letter-spacing:0.180360px;}
.ls84{letter-spacing:0.186372px;}
.ls86{letter-spacing:0.450900px;}
.ls1e{letter-spacing:1.981800px;}
.ls85{letter-spacing:2.248488px;}
.ls89{letter-spacing:2.585160px;}
.ls81{letter-spacing:2.609208px;}
.ls61{letter-spacing:2.969928px;}
.ls82{letter-spacing:3.691368px;}
.ls60{letter-spacing:4.412808px;}
.ls7e{letter-spacing:4.767516px;}
.ls78{letter-spacing:5.128236px;}
.ls68{letter-spacing:5.488956px;}
.ls4b{letter-spacing:12.330612px;}
.ls8a{letter-spacing:36.192240px;}
.ls88{letter-spacing:66.432600px;}
.ls6b{letter-spacing:93.920040px;}
.ls5b{letter-spacing:187.201800px;}
.ls7f{letter-spacing:316.170000px;}
.ls7c{letter-spacing:501.570000px;}
.ls69{letter-spacing:542.607048px;}
.ls73{letter-spacing:797.491800px;}
.ls72{letter-spacing:830.972628px;}
.ls74{letter-spacing:864.092736px;}
.ls76{letter-spacing:1000.889784px;}
.ls71{letter-spacing:1027.528956px;}
.ls70{letter-spacing:1070.009748px;}
.ls75{letter-spacing:1092.332304px;}
.ls77{letter-spacing:1144.167768px;}
.ls7d{letter-spacing:1296.450000px;}
.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;}
}
.ws29{word-spacing:-34.448760px;}
.ws27{word-spacing:-34.088040px;}
.ws6{word-spacing:-16.500000px;}
.ws10{word-spacing:-15.210360px;}
.ws2b{word-spacing:-15.192324px;}
.ws2a{word-spacing:-15.180300px;}
.ws16{word-spacing:-15.168276px;}
.wsf{word-spacing:-15.084108px;}
.ws12{word-spacing:-15.060060px;}
.ws24{word-spacing:-15.023988px;}
.ws15{word-spacing:-14.981904px;}
.ws23{word-spacing:-14.975892px;}
.ws19{word-spacing:-14.963868px;}
.ws1b{word-spacing:-14.957856px;}
.ws26{word-spacing:-14.945832px;}
.ws28{word-spacing:-14.933808px;}
.ws25{word-spacing:-14.927796px;}
.ws1a{word-spacing:-14.903748px;}
.wse{word-spacing:-14.885712px;}
.ws11{word-spacing:-14.879700px;}
.ws21{word-spacing:-14.867676px;}
.ws17{word-spacing:-14.849640px;}
.ws13{word-spacing:-14.825592px;}
.ws7{word-spacing:-13.500000px;}
.ws0{word-spacing:-13.462200px;}
.ws2f{word-spacing:-2.026044px;}
.ws2e{word-spacing:-0.204408px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:0.140400px;}
.ws3{word-spacing:0.151200px;}
.ws4{word-spacing:0.178200px;}
.ws5{word-spacing:0.189000px;}
.ws2c{word-spacing:2.765520px;}
.ws30{word-spacing:5.242464px;}
.ws2d{word-spacing:10.647252px;}
.ws8{word-spacing:52.473600px;}
.wsb{word-spacing:54.347256px;}
.ws1c{word-spacing:68.332752px;}
.wsa{word-spacing:101.125800px;}
.ws9{word-spacing:163.353600px;}
.ws1d{word-spacing:217.708920px;}
.ws1e{word-spacing:248.310000px;}
.wsc{word-spacing:276.198696px;}
.ws1f{word-spacing:410.679720px;}
.ws22{word-spacing:412.729812px;}
.ws20{word-spacing:448.615440px;}
.ws14{word-spacing:1150.576560px;}
.ws18{word-spacing:1168.528392px;}
.wsd{word-spacing:1229.279652px;}
._3c{margin-left:-1144.011456px;}
._3a{margin-left:-1027.366632px;}
._29{margin-left:-542.450736px;}
._15{margin-left:-224.856000px;}
._17{margin-left:-187.056000px;}
._16{margin-left:-36.725400px;}
._12{margin-left:-12.446784px;}
._13{margin-left:-11.379492px;}
._28{margin-left:-6.823908px;}
._18{margin-left:-5.440824px;}
._10{margin-left:-4.124232px;}
._2{margin-left:-2.760876px;}
._1{margin-left:-1.067724px;}
._0{width:1.417572px;}
._6{width:3.396600px;}
._8{width:4.849200px;}
._d{width:5.992416px;}
._f{width:7.299756px;}
._7{width:8.413200px;}
._4{width:10.238400px;}
._5{width:11.296800px;}
._3{width:12.367944px;}
._11{width:14.005440px;}
._9{width:15.292800px;}
._a{width:16.596828px;}
._c{width:18.530244px;}
._b{width:19.545012px;}
._5a{width:20.975868px;}
._4d{width:22.360572px;}
._e{width:23.772000px;}
._5b{width:31.057992px;}
._58{width:60.673104px;}
._59{width:62.121996px;}
._1c{width:69.937596px;}
._57{width:74.085876px;}
._1a{width:75.609756px;}
._30{width:93.979584px;}
._23{width:99.210240px;}
._1f{width:100.244088px;}
._2f{width:108.842328px;}
._56{width:172.574460px;}
._41{width:177.840972px;}
._46{width:179.145576px;}
._43{width:192.961152px;}
._47{width:193.971168px;}
._1b{width:196.033284px;}
._4c{width:200.626452px;}
._45{width:215.908956px;}
._39{width:221.730912px;}
._4e{width:232.802460px;}
._40{width:246.149316px;}
._1d{width:249.786576px;}
._3e{width:259.241688px;}
._52{width:262.722744px;}
._35{width:328.615920px;}
._4a{width:333.726120px;}
._48{width:337.934520px;}
._34{width:341.877312px;}
._31{width:343.092816px;}
._32{width:345.269160px;}
._42{width:348.485580px;}
._50{width:349.919280px;}
._33{width:358.470432px;}
._2d{width:361.044648px;}
._51{width:366.034716px;}
._55{width:401.781960px;}
._49{width:415.832004px;}
._44{width:439.958160px;}
._3f{width:455.048280px;}
._54{width:463.825800px;}
._4b{width:469.789704px;}
._2a{width:540.707256px;}
._19{width:568.823400px;}
._1e{width:595.368360px;}
._20{width:658.114128px;}
._2b{width:677.191680px;}
._3d{width:680.642568px;}
._37{width:742.762152px;}
._25{width:747.069156px;}
._38{width:817.581492px;}
._4f{width:890.415072px;}
._53{width:898.290000px;}
._27{width:941.560956px;}
._2c{width:997.635060px;}
._26{width:1007.380332px;}
._3b{width:1031.550984px;}
._14{width:1038.609072px;}
._36{width:1062.115992px;}
._21{width:1093.432500px;}
._22{width:1180.155600px;}
._24{width:1316.303352px;}
._2e{width:1475.398908px;}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:42.000000px;}
.fs1{font-size:47.880000px;}
.fs4{font-size:53.999400px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:60.120000px;}
.fs7{font-size:65.880000px;}
.fs5{font-size:66.000000px;}
.fs0{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y96{bottom:3.240450px;}
.y104{bottom:3.240600px;}
.y32{bottom:41.404800px;}
.y30{bottom:55.905300px;}
.y31{bottom:68.799300px;}
.y2f{bottom:69.345300px;}
.y17b{bottom:118.739310px;}
.y147{bottom:118.743630px;}
.y1c0{bottom:123.883980px;}
.y1b2{bottom:124.080450px;}
.y1e5{bottom:125.311830px;}
.yb7{bottom:125.507130px;}
.y57{bottom:126.897450px;}
.y2d{bottom:131.119350px;}
.y17a{bottom:136.023810px;}
.y146{bottom:136.028130px;}
.y6c{bottom:138.222600px;}
.y1af{bottom:138.840000px;}
.ye9{bottom:139.020450px;}
.y1bf{bottom:141.168480px;}
.y112{bottom:142.049490px;}
.y1ae{bottom:142.076130px;}
.y1b0{bottom:142.080450px;}
.y1e4{bottom:142.596330px;}
.yb6{bottom:142.791630px;}
.y56{bottom:144.181950px;}
.y2c{bottom:148.403850px;}
.y179{bottom:153.308310px;}
.y145{bottom:153.312630px;}
.y6b{bottom:155.416920px;}
.ye8{bottom:157.020450px;}
.y1be{bottom:158.452980px;}
.y111{bottom:159.243810px;}
.y1ad{bottom:159.270450px;}
.y1b1{bottom:159.274770px;}
.y1e3{bottom:159.880830px;}
.yb5{bottom:160.076130px;}
.y55{bottom:161.376270px;}
.y2b{bottom:165.598170px;}
.y144{bottom:170.506950px;}
.y1a7{bottom:174.030000px;}
.ye7{bottom:175.020450px;}
.y1bd{bottom:175.647300px;}
.y110{bottom:176.528310px;}
.y1e2{bottom:177.075150px;}
.y1aa{bottom:177.255420px;}
.y1a6{bottom:177.261450px;}
.yb4{bottom:177.270450px;}
.y54{bottom:178.660770px;}
.y2a{bottom:182.882670px;}
.y178{bottom:185.532630px;}
.y1ac{bottom:185.912700px;}
.y143{bottom:187.791450px;}
.ye6{bottom:189.780000px;}
.yb3{bottom:192.030000px;}
.y1bc{bottom:192.931800px;}
.ye5{bottom:193.020450px;}
.y10f{bottom:193.812810px;}
.y1e1{bottom:194.359650px;}
.y1a9{bottom:194.539920px;}
.y1a5{bottom:194.545950px;}
.yb2{bottom:195.270450px;}
.y53{bottom:195.945270px;}
.y29{bottom:200.076990px;}
.y6a{bottom:202.671240px;}
.y177{bottom:202.817130px;}
.y1ab{bottom:203.197200px;}
.y142{bottom:205.075950px;}
.ye4{bottom:207.780000px;}
.y10e{bottom:211.007130px;}
.ye3{bottom:211.020450px;}
.y1e0{bottom:211.644150px;}
.y1a8{bottom:211.824420px;}
.y1a4{bottom:211.830450px;}
.y52{bottom:213.139590px;}
.yb1{bottom:213.270450px;}
.y28{bottom:217.361490px;}
.y69{bottom:219.955740px;}
.y176{bottom:220.011450px;}
.y141{bottom:222.360450px;}
.ye2{bottom:225.780000px;}
.y10d{bottom:228.291630px;}
.y1df{bottom:228.838470px;}
.ye1{bottom:229.020450px;}
.y1a3{bottom:229.787220px;}
.y19c{bottom:229.817280px;}
.y51{bottom:230.424090px;}
.yb0{bottom:231.270450px;}
.y27{bottom:234.645990px;}
.y68{bottom:237.240240px;}
.y175{bottom:237.295950px;}
.y19f{bottom:238.354320px;}
.y1bb{bottom:240.186120px;}
.ye0{bottom:243.780000px;}
.y10c{bottom:245.576130px;}
.y1de{bottom:246.122970px;}
.y1a2{bottom:246.981540px;}
.y19b{bottom:247.011600px;}
.ydf{bottom:247.020450px;}
.y50{bottom:247.618410px;}
.yaf{bottom:249.270450px;}
.y26{bottom:251.840310px;}
.y140{bottom:252.060000px;}
.y67{bottom:254.434560px;}
.y174{bottom:254.580450px;}
.y13f{bottom:255.300450px;}
.y19e{bottom:255.638820px;}
.y1ba{bottom:257.470620px;}
.y10b{bottom:262.770450px;}
.y1dd{bottom:263.407470px;}
.y1a1{bottom:264.266040px;}
.y19a{bottom:264.296100px;}
.y4f{bottom:264.902910px;}
.yae{bottom:267.270450px;}
.y25{bottom:269.124810px;}
.y173{bottom:269.340000px;}
.y13e{bottom:270.060000px;}
.y66{bottom:271.719060px;}
.y172{bottom:272.580450px;}
.y19d{bottom:272.923320px;}
.y13d{bottom:273.300450px;}
.yde{bottom:279.935250px;}
.y1dc{bottom:280.601790px;}
.y10a{bottom:280.770450px;}
.y1a0{bottom:281.550540px;}
.y199{bottom:281.580600px;}
.y4e{bottom:282.187410px;}
.yad{bottom:285.270450px;}
.y24{bottom:286.409310px;}
.y1b9{bottom:286.448460px;}
.y171{bottom:287.340000px;}
.y13c{bottom:288.060000px;}
.y170{bottom:290.580600px;}
.y13b{bottom:291.300450px;}
.y198{bottom:296.340000px;}
.ydd{bottom:297.219750px;}
.y1db{bottom:297.886290px;}
.y109{bottom:298.770600px;}
.y4d{bottom:299.381730px;}
.y197{bottom:299.580450px;}
.yac{bottom:302.550450px;}
.y23{bottom:303.603630px;}
.y65{bottom:303.943380px;}
.y16f{bottom:305.340000px;}
.y13a{bottom:306.060000px;}
.y16e{bottom:308.580450px;}
.y139{bottom:309.300450px;}
.y1da{bottom:315.170790px;}
.y4c{bottom:316.666230px;}
.y108{bottom:316.770600px;}
.y22{bottom:320.888130px;}
.y138{bottom:324.060000px;}
.y16d{bottom:326.580450px;}
.y137{bottom:327.300450px;}
.ydc{bottom:329.444070px;}
.y1d9{bottom:332.365110px;}
.y196{bottom:332.449530px;}
.y4b{bottom:333.950730px;}
.y107{bottom:334.770600px;}
.y87{bottom:334.851600px;}
.yab{bottom:335.428350px;}
.y21{bottom:338.172630px;}
.y16b{bottom:341.340000px;}
.y16c{bottom:344.580450px;}
.y136{bottom:345.300450px;}
.ydb{bottom:346.728570px;}
.y1d8{bottom:349.649610px;}
.y195{bottom:349.734030px;}
.y81{bottom:350.700600px;}
.y4a{bottom:351.145050px;}
.yaa{bottom:352.712850px;}
.y106{bottom:352.770600px;}
.y20{bottom:355.366950px;}
.y16a{bottom:359.340000px;}
.y135{bottom:360.060000px;}
.y169{bottom:362.580450px;}
.y134{bottom:363.300450px;}
.yda{bottom:363.922890px;}
.y1d7{bottom:366.934110px;}
.y49{bottom:368.429550px;}
.ya9{bottom:369.997350px;}
.y105{bottom:370.770600px;}
.y1f{bottom:372.651450px;}
.y82{bottom:373.650600px;}
.y168{bottom:377.250000px;}
.y133{bottom:378.060000px;}
.y167{bottom:380.490450px;}
.yd9{bottom:381.207390px;}
.y132{bottom:381.300450px;}
.y194{bottom:381.958350px;}
.y1d6{bottom:384.128430px;}
.y103{bottom:385.530000px;}
.y48{bottom:385.714050px;}
.y102{bottom:388.770600px;}
.y1e{bottom:389.935950px;}
.y83{bottom:396.600600px;}
.yd8{bottom:398.491890px;}
.y193{bottom:399.242850px;}
.y131{bottom:399.300450px;}
.y1d5{bottom:401.412930px;}
.ya8{bottom:402.221670px;}
.y47{bottom:402.908370px;}
.y1d{bottom:407.220450px;}
.y166{bottom:413.476170px;}
.y130{bottom:414.060000px;}
.yd7{bottom:415.686210px;}
.y192{bottom:416.437170px;}
.y12f{bottom:417.300450px;}
.y1d4{bottom:418.697430px;}
.ya7{bottom:419.506170px;}
.y84{bottom:419.550600px;}
.y46{bottom:420.192870px;}
.y101{bottom:421.665990px;}
.y165{bottom:430.760670px;}
.y12d{bottom:432.060000px;}
.yd6{bottom:432.970710px;}
.y191{bottom:433.721670px;}
.y12e{bottom:435.300450px;}
.y1d3{bottom:435.891750px;}
.ya6{bottom:436.700490px;}
.y45{bottom:437.477370px;}
.y1c{bottom:439.071600px;}
.y85{bottom:442.406100px;}
.y164{bottom:448.045170px;}
.y12c{bottom:450.060000px;}
.yd5{bottom:450.165030px;}
.y190{bottom:451.006170px;}
.y1d2{bottom:453.176250px;}
.y12b{bottom:453.300450px;}
.y100{bottom:453.980490px;}
.ya5{bottom:453.984990px;}
.y1b{bottom:454.637100px;}
.y44{bottom:454.671690px;}
.y86{bottom:465.356100px;}
.yd4{bottom:467.449530px;}
.y18f{bottom:468.200490px;}
.y1a{bottom:470.121600px;}
.y1d1{bottom:470.370570px;}
.yff{bottom:471.264990px;}
.ya4{bottom:471.269490px;}
.y43{bottom:471.956190px;}
.y163{bottom:480.269490px;}
.y88{bottom:482.640450px;}
.yd3{bottom:484.734030px;}
.y18e{bottom:485.484990px;}
.y19{bottom:485.687100px;}
.y12a{bottom:486.204990px;}
.y1d0{bottom:487.655070px;}
.yfe{bottom:488.459310px;}
.ya3{bottom:488.553990px;}
.y42{bottom:489.240690px;}
.y162{bottom:497.463810px;}
.y18{bottom:501.171600px;}
.y18d{bottom:502.769490px;}
.y129{bottom:503.489490px;}
.y1cf{bottom:504.939570px;}
.yfd{bottom:505.743810px;}
.y41{bottom:506.435010px;}
.y64{bottom:512.469600px;}
.y161{bottom:514.748310px;}
.y17{bottom:516.737100px;}
.yd2{bottom:516.958350px;}
.y18c{bottom:519.963810px;}
.ya2{bottom:520.778310px;}
.y1ce{bottom:522.133890px;}
.yfc{bottom:523.028310px;}
.y40{bottom:523.719510px;}
.y63{bottom:527.589780px;}
.y160{bottom:532.032810px;}
.y16{bottom:532.221600px;}
.yd1{bottom:534.242850px;}
.y128{bottom:535.713810px;}
.y74{bottom:537.000450px;}
.y18b{bottom:537.248310px;}
.ya1{bottom:537.972630px;}
.y80{bottom:538.620450px;}
.y1cd{bottom:539.418390px;}
.yfb{bottom:540.222630px;}
.y3f{bottom:541.004010px;}
.y15{bottom:547.706100px;}
.y15f{bottom:549.227130px;}
.yd0{bottom:551.437170px;}
.y127{bottom:552.998310px;}
.ya0{bottom:555.257130px;}
.y1cc{bottom:556.702890px;}
.yfa{bottom:557.507130px;}
.y3e{bottom:558.198330px;}
.y7e{bottom:558.784950px;}
.y72{bottom:563.091450px;}
.y14{bottom:563.271600px;}
.y15e{bottom:566.511630px;}
.ycf{bottom:568.721670px;}
.y18a{bottom:569.472630px;}
.y126{bottom:570.282810px;}
.y9f{bottom:572.541630px;}
.y1cb{bottom:573.897210px;}
.y75{bottom:574.620450px;}
.yf9{bottom:574.791630px;}
.y3d{bottom:575.482830px;}
.y13{bottom:578.756100px;}
.y6d{bottom:578.940450px;}
.y15d{bottom:583.796130px;}
.yce{bottom:586.006170px;}
.y189{bottom:586.757130px;}
.y125{bottom:587.477130px;}
.y9e{bottom:589.735950px;}
.y1ca{bottom:591.181710px;}
.y76{bottom:591.360450px;}
.yf8{bottom:591.985950px;}
.y3c{bottom:592.677150px;}
.y12{bottom:594.321600px;}
.y15c{bottom:600.990450px;}
.ycd{bottom:603.200490px;}
.y188{bottom:604.041630px;}
.y124{bottom:604.761630px;}
.y9d{bottom:607.020450px;}
.y77{bottom:608.194950px;}
.y1c9{bottom:608.466210px;}
.yf7{bottom:609.270450px;}
.y11{bottom:609.806100px;}
.y3b{bottom:609.961650px;}
.y6e{bottom:611.785950px;}
.y15b{bottom:618.990450px;}
.ycc{bottom:620.484990px;}
.y187{bottom:621.235950px;}
.y9b{bottom:621.780000px;}
.y123{bottom:622.046130px;}
.y78{bottom:624.934950px;}
.y9c{bottom:625.020450px;}
.y10{bottom:625.371600px;}
.y1c8{bottom:625.660530px;}
.y3a{bottom:627.246150px;}
.yf6{bottom:627.265950px;}
.y159{bottom:633.750000px;}
.y15a{bottom:636.990450px;}
.ycb{bottom:637.769490px;}
.y186{bottom:638.520450px;}
.y122{bottom:639.240450px;}
.y9a{bottom:639.780000px;}
.y1b8{bottom:640.690530px;}
.yf{bottom:640.856100px;}
.y79{bottom:641.674950px;}
.y1c7{bottom:642.945030px;}
.y99{bottom:643.020450px;}
.y39{bottom:644.440470px;}
.yf5{bottom:644.550450px;}
.y6f{bottom:644.631450px;}
.y157{bottom:651.750000px;}
.y184{bottom:653.280000px;}
.y121{bottom:654.000000px;}
.yca{bottom:654.963810px;}
.y158{bottom:654.990450px;}
.ye{bottom:656.421600px;}
.y185{bottom:656.520450px;}
.y120{bottom:657.240450px;}
.y98{bottom:657.780000px;}
.y1b7{bottom:657.975030px;}
.y7a{bottom:658.414950px;}
.yf4{bottom:659.310000px;}
.y1c6{bottom:660.229530px;}
.y97{bottom:661.020450px;}
.y38{bottom:661.724970px;}
.yf3{bottom:662.550450px;}
.yd{bottom:671.906100px;}
.yc9{bottom:672.248310px;}
.y156{bottom:672.990450px;}
.y183{bottom:674.520450px;}
.y7b{bottom:675.154950px;}
.y1b6{bottom:675.169350px;}
.y11f{bottom:675.240450px;}
.y95{bottom:675.780000px;}
.yf2{bottom:677.310000px;}
.y1c5{bottom:677.423850px;}
.y70{bottom:677.571450px;}
.y37{bottom:679.009470px;}
.y94{bottom:679.020450px;}
.yf1{bottom:680.550450px;}
.yc{bottom:687.471600px;}
.yc8{bottom:689.532810px;}
.y11e{bottom:690.000000px;}
.y155{bottom:690.990450px;}
.y7c{bottom:691.894950px;}
.y1b5{bottom:692.453850px;}
.y182{bottom:692.520450px;}
.y11d{bottom:693.240450px;}
.y1c4{bottom:694.708350px;}
.yf0{bottom:695.310000px;}
.y36{bottom:696.203790px;}
.yef{bottom:698.550450px;}
.yb{bottom:702.956100px;}
.yc7{bottom:706.727130px;}
.y11c{bottom:708.000000px;}
.y7d{bottom:708.729450px;}
.y154{bottom:708.990450px;}
.y1b4{bottom:709.738350px;}
.y71{bottom:710.416950px;}
.y181{bottom:710.520450px;}
.y11b{bottom:711.240450px;}
.y93{bottom:711.902670px;}
.y1c3{bottom:711.992850px;}
.y35{bottom:713.488290px;}
.ya{bottom:718.521600px;}
.yc6{bottom:724.011630px;}
.y11a{bottom:726.000000px;}
.y1b3{bottom:726.932670px;}
.y153{bottom:726.990450px;}
.y180{bottom:728.520450px;}
.y1c2{bottom:729.187170px;}
.y119{bottom:729.240450px;}
.yee{bottom:731.441670px;}
.y7f{bottom:732.300450px;}
.y73{bottom:733.830450px;}
.y9{bottom:734.006100px;}
.yc5{bottom:741.296130px;}
.y117{bottom:744.000000px;}
.y92{bottom:744.217170px;}
.y152{bottom:744.990450px;}
.y1c1{bottom:746.471670px;}
.y17f{bottom:746.520450px;}
.y118{bottom:747.240450px;}
.yed{bottom:748.726170px;}
.y8{bottom:749.571600px;}
.yc4{bottom:758.490450px;}
.y34{bottom:760.652430px;}
.y91{bottom:761.501670px;}
.y116{bottom:762.000000px;}
.y151{bottom:762.990450px;}
.y62{bottom:763.756170px;}
.y17e{bottom:764.520450px;}
.y7{bottom:765.056100px;}
.y115{bottom:765.240450px;}
.yc3{bottom:776.490450px;}
.y150{bottom:777.750000px;}
.y90{bottom:778.695990px;}
.y17d{bottom:779.280000px;}
.y6{bottom:780.540600px;}
.y61{bottom:780.950490px;}
.y14f{bottom:780.990450px;}
.y17c{bottom:782.520450px;}
.y33{bottom:789.720450px;}
.yc2{bottom:791.250000px;}
.yc1{bottom:794.490450px;}
.y14e{bottom:795.750000px;}
.y8f{bottom:795.980490px;}
.y114{bottom:798.144810px;}
.y60{bottom:798.234990px;}
.y14d{bottom:798.990450px;}
.yc0{bottom:809.250000px;}
.y5{bottom:810.874950px;}
.ybf{bottom:812.490450px;}
.y8e{bottom:813.174810px;}
.y14b{bottom:813.750000px;}
.y5f{bottom:815.429310px;}
.y113{bottom:815.519490px;}
.y14a{bottom:816.962370px;}
.y14c{bottom:816.990450px;}
.y4{bottom:824.640450px;}
.ybe{bottom:827.250000px;}
.y8d{bottom:830.459310px;}
.ybd{bottom:830.490450px;}
.y5e{bottom:832.713810px;}
.ybb{bottom:845.250000px;}
.y8c{bottom:847.743810px;}
.ybc{bottom:848.490450px;}
.y149{bottom:849.908130px;}
.y5d{bottom:849.998310px;}
.y3{bottom:855.339450px;}
.yba{bottom:863.250000px;}
.y8b{bottom:864.938130px;}
.yb9{bottom:866.490450px;}
.y5c{bottom:867.192630px;}
.y148{bottom:867.282810px;}
.y2{bottom:879.454950px;}
.y8a{bottom:882.222630px;}
.yb8{bottom:883.770450px;}
.y5b{bottom:884.477130px;}
.y89{bottom:899.507130px;}
.yec{bottom:901.761630px;}
.y1{bottom:903.570450px;}
.y5a{bottom:916.701450px;}
.yeb{bottom:918.955950px;}
.y59{bottom:933.985950px;}
.yea{bottom:936.240450px;}
.y58{bottom:951.270450px;}
.y2e{bottom:1018.668450px;}
.h9{height:16.740000px;}
.h7{height:29.162109px;}
.h2{height:42.011895px;}
.h6{height:45.826172px;}
.h4{height:47.381836px;}
.h3{height:47.513672px;}
.h5{height:52.751777px;}
.hc{height:52.898555px;}
.h8{height:57.805840px;}
.h1{height:73.599785px;}
.ha{height:87.311777px;}
.hb{height:87.320777px;}
.h0{height:1080.000000px;}
.w6{width:7.830000px;}
.w19{width:11.070000px;}
.w28{width:18.540000px;}
.w26{width:23.310000px;}
.w17{width:25.020000px;}
.w32{width:30.870000px;}
.w20{width:31.590000px;}
.wc{width:32.670000px;}
.w9{width:34.200000px;}
.we{width:40.680000px;}
.w1f{width:41.220000px;}
.w23{width:41.670000px;}
.w7{width:47.880000px;}
.w29{width:49.410000px;}
.w1e{width:52.380000px;}
.w2e{width:61.560000px;}
.w25{width:65.340000px;}
.w13{width:70.380000px;}
.w22{width:85.410000px;}
.w2f{width:90.450000px;}
.w8{width:93.060000px;}
.w1a{width:98.640000px;}
.wa{width:99.900000px;}
.w1d{width:101.250000px;}
.w10{width:102.060000px;}
.w12{width:107.100000px;}
.w33{width:109.980000px;}
.wf{width:113.220000px;}
.w14{width:114.030000px;}
.w21{width:114.570000px;}
.w11{width:117.090000px;}
.wd{width:121.680000px;}
.w2c{width:123.750000px;}
.w31{width:130.320000px;}
.w5{width:132.390000px;}
.w18{width:134.910000px;}
.w30{width:138.780000px;}
.w3{width:144.990000px;}
.w2{width:146.610000px;}
.w1c{width:151.200000px;}
.wb{width:158.670000px;}
.w1b{width:168.210000px;}
.w2b{width:179.460000px;}
.w15{width:184.590000px;}
.w2a{width:191.880000px;}
.w4{width:215.730000px;}
.w2d{width:222.840000px;}
.w24{width:224.910000px;}
.w27{width:250.740000px;}
.w16{width:347.400000px;}
.w1{width:756.750000px;}
.w0{width:756.850500px;}
.x0{left:0.000000px;}
.x27{left:4.139985px;}
.x2d{left:11.249985px;}
.x35{left:14.939985px;}
.x89{left:16.649985px;}
.x79{left:18.269985px;}
.x6d{left:19.979985px;}
.x44{left:25.739985px;}
.x31{left:29.159985px;}
.x8a{left:30.869985px;}
.x3d{left:35.009985px;}
.x8c{left:38.339985px;}
.x3a{left:42.479985px;}
.x6b{left:44.909985px;}
.x46{left:48.329985px;}
.x78{left:53.729985px;}
.x51{left:58.769985px;}
.x9e{left:61.289985px;}
.x4f{left:64.169985px;}
.x91{left:65.429985px;}
.x22{left:74.609985px;}
.x92{left:79.559985px;}
.xa0{left:86.309985px;}
.x4c{left:90.449985px;}
.x4a{left:94.499985px;}
.x9b{left:96.209985px;}
.xa4{left:98.639985px;}
.xe{left:100.133250px;}
.x7{left:102.110250px;}
.x58{left:106.559985px;}
.x2a{left:108.719985px;}
.x3f{left:110.429985px;}
.x5{left:114.347820px;}
.x54{left:115.610250px;}
.xd{left:120.467100px;}
.x64{left:125.729985px;}
.x20{left:127.510950px;}
.x3{left:129.104040px;}
.xb{left:131.419050px;}
.xa2{left:133.739985px;}
.x16{left:134.870250px;}
.x88{left:136.760250px;}
.x5e{left:138.107100px;}
.xa7{left:140.358720px;}
.x67{left:143.729985px;}
.x1{left:147.830250px;}
.x2{left:152.779170px;}
.x33{left:153.950250px;}
.x80{left:155.930250px;}
.x34{left:158.990265px;}
.x21{left:161.330250px;}
.x15{left:163.580250px;}
.x3c{left:164.840250px;}
.x30{left:165.927630px;}
.x29{left:169.700265px;}
.x94{left:170.870250px;}
.x26{left:172.220265px;}
.x69{left:175.460250px;}
.x12{left:176.523780px;}
.x95{left:179.420250px;}
.x36{left:181.490250px;}
.x28{left:183.830250px;}
.x6f{left:185.450265px;}
.x61{left:186.620250px;}
.x77{left:191.300250px;}
.x53{left:194.270250px;}
.x3e{left:196.520250px;}
.x71{left:197.960265px;}
.x62{left:200.030265px;}
.x5b{left:201.959985px;}
.x47{left:209.840250px;}
.x9c{left:211.730250px;}
.x1c{left:216.140250px;}
.xf{left:219.103770px;}
.x68{left:220.730250px;}
.x93{left:223.790250px;}
.x72{left:226.310250px;}
.x49{left:227.840250px;}
.x11{left:229.820160px;}
.x55{left:235.580250px;}
.x63{left:237.110250px;}
.x5a{left:238.190250px;}
.x56{left:239.360265px;}
.x7a{left:242.240250px;}
.x23{left:243.500250px;}
.x57{left:246.830250px;}
.x1d{left:248.715750px;}
.x6c{left:256.370250px;}
.x81{left:257.720265px;}
.x37{left:258.800265px;}
.x48{left:260.962320px;}
.x70{left:265.010250px;}
.x1e{left:266.900250px;}
.x82{left:268.790250px;}
.x38{left:270.140265px;}
.x40{left:271.940250px;}
.x41{left:275.540265px;}
.x39{left:277.700250px;}
.x6a{left:280.400265px;}
.x42{left:283.190250px;}
.x2b{left:285.890250px;}
.x43{left:286.970265px;}
.x6e{left:291.650250px;}
.x9d{left:294.530265px;}
.x5c{left:296.189985px;}
.x52{left:298.220250px;}
.x50{left:299.570250px;}
.x2c{left:302.000265px;}
.x73{left:305.060250px;}
.x14{left:309.474750px;}
.x7b{left:311.360265px;}
.x8{left:314.330250px;}
.xa6{left:318.470250px;}
.x3b{left:320.180250px;}
.x4d{left:325.850250px;}
.x2e{left:328.460250px;}
.x65{left:330.800250px;}
.x5f{left:334.940265px;}
.x4{left:336.020250px;}
.x83{left:341.690250px;}
.x6{left:343.220250px;}
.x13{left:349.070250px;}
.x74{left:358.340250px;}
.x9f{left:363.290250px;}
.x96{left:369.320250px;}
.xa{left:370.871550px;}
.x4b{left:372.380250px;}
.x75{left:381.290250px;}
.x18{left:399.740250px;}
.x17{left:406.490250px;}
.x84{left:408.650250px;}
.x5d{left:419.270250px;}
.x7c{left:428.450250px;}
.x1b{left:430.880250px;}
.x1a{left:434.570250px;}
.x4e{left:437.630250px;}
.x8b{left:439.700265px;}
.x97{left:442.670265px;}
.x19{left:448.164750px;}
.x24{left:450.410265px;}
.x2f{left:461.300250px;}
.x7d{left:465.080265px;}
.x7e{left:476.150250px;}
.xa1{left:478.490250px;}
.x9{left:481.898100px;}
.x1f{left:483.201600px;}
.x8d{left:485.600250px;}
.x59{left:487.850250px;}
.x66{left:491.990250px;}
.x60{left:497.570250px;}
.x76{left:503.150250px;}
.x32{left:515.030250px;}
.x45{left:522.860250px;}
.x98{left:526.100265px;}
.x25{left:532.580250px;}
.x7f{left:533.660250px;}
.x99{left:537.170250px;}
.x85{left:544.460265px;}
.x86{left:555.530250px;}
.x8f{left:565.790265px;}
.x9a{left:575.420250px;}
.x90{left:576.860250px;}
.x87{left:593.780250px;}
.xa3{left:617.180250px;}
.x8e{left:619.160250px;}
.xa5{left:633.826560px;}
.x10{left:652.553940px;}
.xc{left:655.610250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:30.720000pt;}
.ls7b{letter-spacing:-2.158976pt;}
.ls66{letter-spacing:-1.202400pt;}
.ls56{letter-spacing:-0.881760pt;}
.ls6c{letter-spacing:-0.448896pt;}
.ls6e{letter-spacing:-0.358048pt;}
.ls83{letter-spacing:-0.325984pt;}
.ls65{letter-spacing:-0.261856pt;}
.ls87{letter-spacing:-0.251168pt;}
.ls25{letter-spacing:-0.245824pt;}
.ls4d{letter-spacing:-0.240480pt;}
.ls7a{letter-spacing:-0.224448pt;}
.ls3f{letter-spacing:-0.219104pt;}
.ls64{letter-spacing:-0.208416pt;}
.ls54{letter-spacing:-0.197728pt;}
.ls59{letter-spacing:-0.192384pt;}
.ls80{letter-spacing:-0.187040pt;}
.ls79{letter-spacing:-0.181696pt;}
.ls57{letter-spacing:-0.176352pt;}
.ls33{letter-spacing:-0.171008pt;}
.ls5e{letter-spacing:-0.165664pt;}
.ls29{letter-spacing:-0.160320pt;}
.ls39{letter-spacing:-0.154976pt;}
.ls43{letter-spacing:-0.149632pt;}
.ls4f{letter-spacing:-0.144288pt;}
.ls50{letter-spacing:-0.138944pt;}
.ls32{letter-spacing:-0.133600pt;}
.ls48{letter-spacing:-0.128256pt;}
.ls27{letter-spacing:-0.122912pt;}
.ls42{letter-spacing:-0.117568pt;}
.ls30{letter-spacing:-0.112224pt;}
.ls49{letter-spacing:-0.106880pt;}
.ls3d{letter-spacing:-0.101536pt;}
.ls5a{letter-spacing:-0.096192pt;}
.ls2b{letter-spacing:-0.090848pt;}
.ls3e{letter-spacing:-0.085504pt;}
.ls45{letter-spacing:-0.080160pt;}
.ls63{letter-spacing:-0.074816pt;}
.ls2a{letter-spacing:-0.069472pt;}
.ls4c{letter-spacing:-0.064128pt;}
.ls34{letter-spacing:-0.058784pt;}
.ls46{letter-spacing:-0.053440pt;}
.ls26{letter-spacing:-0.048096pt;}
.ls24{letter-spacing:-0.043200pt;}
.ls28{letter-spacing:-0.042752pt;}
.ls3c{letter-spacing:-0.037408pt;}
.ls1c{letter-spacing:-0.033600pt;}
.ls38{letter-spacing:-0.032064pt;}
.ls23{letter-spacing:-0.028800pt;}
.ls5f{letter-spacing:-0.026720pt;}
.ls2c{letter-spacing:-0.021376pt;}
.ls20{letter-spacing:-0.019200pt;}
.ls31{letter-spacing:-0.016032pt;}
.ls55{letter-spacing:-0.010688pt;}
.ls21{letter-spacing:-0.009600pt;}
.ls2f{letter-spacing:-0.005344pt;}
.ls22{letter-spacing:-0.004800pt;}
.ls1d{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.004800pt;}
.ls36{letter-spacing:0.005344pt;}
.ls51{letter-spacing:0.005856pt;}
.ls1{letter-spacing:0.007456pt;}
.ls4{letter-spacing:0.008512pt;}
.lsa{letter-spacing:0.009600pt;}
.ls14{letter-spacing:0.010688pt;}
.ls10{letter-spacing:0.014400pt;}
.ls0{letter-spacing:0.014912pt;}
.ls13{letter-spacing:0.016032pt;}
.ls8{letter-spacing:0.019200pt;}
.ls58{letter-spacing:0.021376pt;}
.ls2{letter-spacing:0.022368pt;}
.lse{letter-spacing:0.024000pt;}
.ls37{letter-spacing:0.026720pt;}
.ls35{letter-spacing:0.032064pt;}
.ls9{letter-spacing:0.033600pt;}
.ls16{letter-spacing:0.037408pt;}
.lsb{letter-spacing:0.038400pt;}
.ls17{letter-spacing:0.042752pt;}
.lsc{letter-spacing:0.043200pt;}
.ls47{letter-spacing:0.048096pt;}
.ls3{letter-spacing:0.052192pt;}
.ls12{letter-spacing:0.052800pt;}
.ls2d{letter-spacing:0.053440pt;}
.ls11{letter-spacing:0.057600pt;}
.ls40{letter-spacing:0.058784pt;}
.lsd{letter-spacing:0.062400pt;}
.ls18{letter-spacing:0.064128pt;}
.ls1f{letter-spacing:0.067200pt;}
.ls2e{letter-spacing:0.069472pt;}
.ls52{letter-spacing:0.070272pt;}
.ls7{letter-spacing:0.072000pt;}
.ls3a{letter-spacing:0.074816pt;}
.ls19{letter-spacing:0.080160pt;}
.ls3b{letter-spacing:0.085504pt;}
.ls1a{letter-spacing:0.090848pt;}
.ls44{letter-spacing:0.096192pt;}
.ls5{letter-spacing:0.097888pt;}
.ls1b{letter-spacing:0.101536pt;}
.ls41{letter-spacing:0.106880pt;}
.ls15{letter-spacing:0.112224pt;}
.ls53{letter-spacing:0.117120pt;}
.ls4a{letter-spacing:0.117568pt;}
.ls4e{letter-spacing:0.122912pt;}
.ls62{letter-spacing:0.128256pt;}
.ls6d{letter-spacing:0.133600pt;}
.ls6f{letter-spacing:0.138944pt;}
.ls6{letter-spacing:0.140448pt;}
.ls5c{letter-spacing:0.144288pt;}
.ls6a{letter-spacing:0.149632pt;}
.ls67{letter-spacing:0.154976pt;}
.ls5d{letter-spacing:0.160320pt;}
.ls84{letter-spacing:0.165664pt;}
.ls86{letter-spacing:0.400800pt;}
.ls1e{letter-spacing:1.761600pt;}
.ls85{letter-spacing:1.998656pt;}
.ls89{letter-spacing:2.297920pt;}
.ls81{letter-spacing:2.319296pt;}
.ls61{letter-spacing:2.639936pt;}
.ls82{letter-spacing:3.281216pt;}
.ls60{letter-spacing:3.922496pt;}
.ls7e{letter-spacing:4.237792pt;}
.ls78{letter-spacing:4.558432pt;}
.ls68{letter-spacing:4.879072pt;}
.ls4b{letter-spacing:10.960544pt;}
.ls8a{letter-spacing:32.170880pt;}
.ls88{letter-spacing:59.051200pt;}
.ls6b{letter-spacing:83.484480pt;}
.ls5b{letter-spacing:166.401600pt;}
.ls7f{letter-spacing:281.040000pt;}
.ls7c{letter-spacing:445.840000pt;}
.ls69{letter-spacing:482.317376pt;}
.ls73{letter-spacing:708.881600pt;}
.ls72{letter-spacing:738.642336pt;}
.ls74{letter-spacing:768.082432pt;}
.ls76{letter-spacing:889.679808pt;}
.ls71{letter-spacing:913.359072pt;}
.ls70{letter-spacing:951.119776pt;}
.ls75{letter-spacing:970.962048pt;}
.ls77{letter-spacing:1017.038016pt;}
.ls7d{letter-spacing:1152.400000pt;}
.ws29{word-spacing:-30.621120pt;}
.ws27{word-spacing:-30.300480pt;}
.ws6{word-spacing:-14.666667pt;}
.ws10{word-spacing:-13.520320pt;}
.ws2b{word-spacing:-13.504288pt;}
.ws2a{word-spacing:-13.493600pt;}
.ws16{word-spacing:-13.482912pt;}
.wsf{word-spacing:-13.408096pt;}
.ws12{word-spacing:-13.386720pt;}
.ws24{word-spacing:-13.354656pt;}
.ws15{word-spacing:-13.317248pt;}
.ws23{word-spacing:-13.311904pt;}
.ws19{word-spacing:-13.301216pt;}
.ws1b{word-spacing:-13.295872pt;}
.ws26{word-spacing:-13.285184pt;}
.ws28{word-spacing:-13.274496pt;}
.ws25{word-spacing:-13.269152pt;}
.ws1a{word-spacing:-13.247776pt;}
.wse{word-spacing:-13.231744pt;}
.ws11{word-spacing:-13.226400pt;}
.ws21{word-spacing:-13.215712pt;}
.ws17{word-spacing:-13.199680pt;}
.ws13{word-spacing:-13.178304pt;}
.ws7{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.966400pt;}
.ws2f{word-spacing:-1.800928pt;}
.ws2e{word-spacing:-0.181696pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:0.124800pt;}
.ws3{word-spacing:0.134400pt;}
.ws4{word-spacing:0.158400pt;}
.ws5{word-spacing:0.168000pt;}
.ws2c{word-spacing:2.458240pt;}
.ws30{word-spacing:4.659968pt;}
.ws2d{word-spacing:9.464224pt;}
.ws8{word-spacing:46.643200pt;}
.wsb{word-spacing:48.308672pt;}
.ws1c{word-spacing:60.740224pt;}
.wsa{word-spacing:89.889600pt;}
.ws9{word-spacing:145.203200pt;}
.ws1d{word-spacing:193.519040pt;}
.ws1e{word-spacing:220.720000pt;}
.wsc{word-spacing:245.509952pt;}
.ws1f{word-spacing:365.048640pt;}
.ws22{word-spacing:366.870944pt;}
.ws20{word-spacing:398.769280pt;}
.ws14{word-spacing:1022.734720pt;}
.ws18{word-spacing:1038.691904pt;}
.wsd{word-spacing:1092.693024pt;}
._3c{margin-left:-1016.899072pt;}
._3a{margin-left:-913.214784pt;}
._29{margin-left:-482.178432pt;}
._15{margin-left:-199.872000pt;}
._17{margin-left:-166.272000pt;}
._16{margin-left:-32.644800pt;}
._12{margin-left:-11.063808pt;}
._13{margin-left:-10.115104pt;}
._28{margin-left:-6.065696pt;}
._18{margin-left:-4.836288pt;}
._10{margin-left:-3.665984pt;}
._2{margin-left:-2.454112pt;}
._1{margin-left:-0.949088pt;}
._0{width:1.260064pt;}
._6{width:3.019200pt;}
._8{width:4.310400pt;}
._d{width:5.326592pt;}
._f{width:6.488672pt;}
._7{width:7.478400pt;}
._4{width:9.100800pt;}
._5{width:10.041600pt;}
._3{width:10.993728pt;}
._11{width:12.449280pt;}
._9{width:13.593600pt;}
._a{width:14.752736pt;}
._c{width:16.471328pt;}
._b{width:17.373344pt;}
._5a{width:18.645216pt;}
._4d{width:19.876064pt;}
._e{width:21.130667pt;}
._5b{width:27.607104pt;}
._58{width:53.931648pt;}
._59{width:55.219552pt;}
._1c{width:62.166752pt;}
._57{width:65.854112pt;}
._1a{width:67.208672pt;}
._30{width:83.537408pt;}
._23{width:88.186880pt;}
._1f{width:89.105856pt;}
._2f{width:96.748736pt;}
._56{width:153.399520pt;}
._41{width:158.080864pt;}
._46{width:159.240512pt;}
._43{width:171.521024pt;}
._47{width:172.418816pt;}
._1b{width:174.251808pt;}
._4c{width:178.334624pt;}
._45{width:191.919072pt;}
._39{width:197.094144pt;}
._4e{width:206.935520pt;}
._40{width:218.799392pt;}
._1d{width:222.032512pt;}
._3e{width:230.437056pt;}
._52{width:233.531328pt;}
._35{width:292.103040pt;}
._4a{width:296.645440pt;}
._48{width:300.386240pt;}
._34{width:303.890944pt;}
._31{width:304.971392pt;}
._32{width:306.905920pt;}
._42{width:309.764960pt;}
._50{width:311.039360pt;}
._33{width:318.640384pt;}
._2d{width:320.928576pt;}
._51{width:325.364192pt;}
._55{width:357.139520pt;}
._49{width:369.628448pt;}
._44{width:391.073920pt;}
._3f{width:404.487360pt;}
._54{width:412.289600pt;}
._4b{width:417.590848pt;}
._2a{width:480.628672pt;}
._19{width:505.620800pt;}
._1e{width:529.216320pt;}
._20{width:584.990336pt;}
._2b{width:601.948160pt;}
._3d{width:605.015616pt;}
._37{width:660.233024pt;}
._25{width:664.061472pt;}
._38{width:726.739104pt;}
._4f{width:791.480064pt;}
._53{width:798.480000pt;}
._27{width:836.943072pt;}
._2c{width:886.786720pt;}
._26{width:895.449184pt;}
._3b{width:916.934208pt;}
._14{width:923.208064pt;}
._36{width:944.103104pt;}
._21{width:971.940000pt;}
._22{width:1049.027200pt;}
._24{width:1170.047424pt;}
._2e{width:1311.465696pt;}
.fs6{font-size:37.333333pt;}
.fs1{font-size:42.560000pt;}
.fs4{font-size:47.999467pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.440000pt;}
.fs7{font-size:58.560000pt;}
.fs5{font-size:58.666667pt;}
.fs0{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y96{bottom:2.880400pt;}
.y104{bottom:2.880533pt;}
.y32{bottom:36.804267pt;}
.y30{bottom:49.693600pt;}
.y31{bottom:61.154933pt;}
.y2f{bottom:61.640267pt;}
.y17b{bottom:105.546053pt;}
.y147{bottom:105.549893pt;}
.y1c0{bottom:110.119093pt;}
.y1b2{bottom:110.293733pt;}
.y1e5{bottom:111.388293pt;}
.yb7{bottom:111.561893pt;}
.y57{bottom:112.797733pt;}
.y2d{bottom:116.550533pt;}
.y17a{bottom:120.910053pt;}
.y146{bottom:120.913893pt;}
.y6c{bottom:122.864533pt;}
.y1af{bottom:123.413333pt;}
.ye9{bottom:123.573733pt;}
.y1bf{bottom:125.483093pt;}
.y112{bottom:126.266213pt;}
.y1ae{bottom:126.289893pt;}
.y1b0{bottom:126.293733pt;}
.y1e4{bottom:126.752293pt;}
.yb6{bottom:126.925893pt;}
.y56{bottom:128.161733pt;}
.y2c{bottom:131.914533pt;}
.y179{bottom:136.274053pt;}
.y145{bottom:136.277893pt;}
.y6b{bottom:138.148373pt;}
.ye8{bottom:139.573733pt;}
.y1be{bottom:140.847093pt;}
.y111{bottom:141.550053pt;}
.y1ad{bottom:141.573733pt;}
.y1b1{bottom:141.577573pt;}
.y1e3{bottom:142.116293pt;}
.yb5{bottom:142.289893pt;}
.y55{bottom:143.445573pt;}
.y2b{bottom:147.198373pt;}
.y144{bottom:151.561733pt;}
.y1a7{bottom:154.693333pt;}
.ye7{bottom:155.573733pt;}
.y1bd{bottom:156.130933pt;}
.y110{bottom:156.914053pt;}
.y1e2{bottom:157.400133pt;}
.y1aa{bottom:157.560373pt;}
.y1a6{bottom:157.565733pt;}
.yb4{bottom:157.573733pt;}
.y54{bottom:158.809573pt;}
.y2a{bottom:162.562373pt;}
.y178{bottom:164.917893pt;}
.y1ac{bottom:165.255733pt;}
.y143{bottom:166.925733pt;}
.ye6{bottom:168.693333pt;}
.yb3{bottom:170.693333pt;}
.y1bc{bottom:171.494933pt;}
.ye5{bottom:171.573733pt;}
.y10f{bottom:172.278053pt;}
.y1e1{bottom:172.764133pt;}
.y1a9{bottom:172.924373pt;}
.y1a5{bottom:172.929733pt;}
.yb2{bottom:173.573733pt;}
.y53{bottom:174.173573pt;}
.y29{bottom:177.846213pt;}
.y6a{bottom:180.152213pt;}
.y177{bottom:180.281893pt;}
.y1ab{bottom:180.619733pt;}
.y142{bottom:182.289733pt;}
.ye4{bottom:184.693333pt;}
.y10e{bottom:187.561893pt;}
.ye3{bottom:187.573733pt;}
.y1e0{bottom:188.128133pt;}
.y1a8{bottom:188.288373pt;}
.y1a4{bottom:188.293733pt;}
.y52{bottom:189.457413pt;}
.yb1{bottom:189.573733pt;}
.y28{bottom:193.210213pt;}
.y69{bottom:195.516213pt;}
.y176{bottom:195.565733pt;}
.y141{bottom:197.653733pt;}
.ye2{bottom:200.693333pt;}
.y10d{bottom:202.925893pt;}
.y1df{bottom:203.411973pt;}
.ye1{bottom:203.573733pt;}
.y1a3{bottom:204.255307pt;}
.y19c{bottom:204.282027pt;}
.y51{bottom:204.821413pt;}
.yb0{bottom:205.573733pt;}
.y27{bottom:208.574213pt;}
.y68{bottom:210.880213pt;}
.y175{bottom:210.929733pt;}
.y19f{bottom:211.870507pt;}
.y1bb{bottom:213.498773pt;}
.ye0{bottom:216.693333pt;}
.y10c{bottom:218.289893pt;}
.y1de{bottom:218.775973pt;}
.y1a2{bottom:219.539147pt;}
.y19b{bottom:219.565867pt;}
.ydf{bottom:219.573733pt;}
.y50{bottom:220.105253pt;}
.yaf{bottom:221.573733pt;}
.y26{bottom:223.858053pt;}
.y140{bottom:224.053333pt;}
.y67{bottom:226.164053pt;}
.y174{bottom:226.293733pt;}
.y13f{bottom:226.933733pt;}
.y19e{bottom:227.234507pt;}
.y1ba{bottom:228.862773pt;}
.y10b{bottom:233.573733pt;}
.y1dd{bottom:234.139973pt;}
.y1a1{bottom:234.903147pt;}
.y19a{bottom:234.929867pt;}
.y4f{bottom:235.469253pt;}
.yae{bottom:237.573733pt;}
.y25{bottom:239.222053pt;}
.y173{bottom:239.413333pt;}
.y13e{bottom:240.053333pt;}
.y66{bottom:241.528053pt;}
.y172{bottom:242.293733pt;}
.y19d{bottom:242.598507pt;}
.y13d{bottom:242.933733pt;}
.yde{bottom:248.831333pt;}
.y1dc{bottom:249.423813pt;}
.y10a{bottom:249.573733pt;}
.y1a0{bottom:250.267147pt;}
.y199{bottom:250.293867pt;}
.y4e{bottom:250.833253pt;}
.yad{bottom:253.573733pt;}
.y24{bottom:254.586053pt;}
.y1b9{bottom:254.620853pt;}
.y171{bottom:255.413333pt;}
.y13c{bottom:256.053333pt;}
.y170{bottom:258.293867pt;}
.y13b{bottom:258.933733pt;}
.y198{bottom:263.413333pt;}
.ydd{bottom:264.195333pt;}
.y1db{bottom:264.787813pt;}
.y109{bottom:265.573867pt;}
.y4d{bottom:266.117093pt;}
.y197{bottom:266.293733pt;}
.yac{bottom:268.933733pt;}
.y23{bottom:269.869893pt;}
.y65{bottom:270.171893pt;}
.y16f{bottom:271.413333pt;}
.y13a{bottom:272.053333pt;}
.y16e{bottom:274.293733pt;}
.y139{bottom:274.933733pt;}
.y1da{bottom:280.151813pt;}
.y4c{bottom:281.481093pt;}
.y108{bottom:281.573867pt;}
.y22{bottom:285.233893pt;}
.y138{bottom:288.053333pt;}
.y16d{bottom:290.293733pt;}
.y137{bottom:290.933733pt;}
.ydc{bottom:292.839173pt;}
.y1d9{bottom:295.435653pt;}
.y196{bottom:295.510693pt;}
.y4b{bottom:296.845093pt;}
.y107{bottom:297.573867pt;}
.y87{bottom:297.645867pt;}
.yab{bottom:298.158533pt;}
.y21{bottom:300.597893pt;}
.y16b{bottom:303.413333pt;}
.y16c{bottom:306.293733pt;}
.y136{bottom:306.933733pt;}
.ydb{bottom:308.203173pt;}
.y1d8{bottom:310.799653pt;}
.y195{bottom:310.874693pt;}
.y81{bottom:311.733867pt;}
.y4a{bottom:312.128933pt;}
.yaa{bottom:313.522533pt;}
.y106{bottom:313.573867pt;}
.y20{bottom:315.881733pt;}
.y16a{bottom:319.413333pt;}
.y135{bottom:320.053333pt;}
.y169{bottom:322.293733pt;}
.y134{bottom:322.933733pt;}
.yda{bottom:323.487013pt;}
.y1d7{bottom:326.163653pt;}
.y49{bottom:327.492933pt;}
.ya9{bottom:328.886533pt;}
.y105{bottom:329.573867pt;}
.y1f{bottom:331.245733pt;}
.y82{bottom:332.133867pt;}
.y168{bottom:335.333333pt;}
.y133{bottom:336.053333pt;}
.y167{bottom:338.213733pt;}
.yd9{bottom:338.851013pt;}
.y132{bottom:338.933733pt;}
.y194{bottom:339.518533pt;}
.y1d6{bottom:341.447493pt;}
.y103{bottom:342.693333pt;}
.y48{bottom:342.856933pt;}
.y102{bottom:345.573867pt;}
.y1e{bottom:346.609733pt;}
.y83{bottom:352.533867pt;}
.yd8{bottom:354.215013pt;}
.y193{bottom:354.882533pt;}
.y131{bottom:354.933733pt;}
.y1d5{bottom:356.811493pt;}
.ya8{bottom:357.530373pt;}
.y47{bottom:358.140773pt;}
.y1d{bottom:361.973733pt;}
.y166{bottom:367.534373pt;}
.y130{bottom:368.053333pt;}
.yd7{bottom:369.498853pt;}
.y192{bottom:370.166373pt;}
.y12f{bottom:370.933733pt;}
.y1d4{bottom:372.175493pt;}
.ya7{bottom:372.894373pt;}
.y84{bottom:372.933867pt;}
.y46{bottom:373.504773pt;}
.y101{bottom:374.814213pt;}
.y165{bottom:382.898373pt;}
.y12d{bottom:384.053333pt;}
.yd6{bottom:384.862853pt;}
.y191{bottom:385.530373pt;}
.y12e{bottom:386.933733pt;}
.y1d3{bottom:387.459333pt;}
.ya6{bottom:388.178213pt;}
.y45{bottom:388.868773pt;}
.y1c{bottom:390.285867pt;}
.y85{bottom:393.249867pt;}
.y164{bottom:398.262373pt;}
.y12c{bottom:400.053333pt;}
.yd5{bottom:400.146693pt;}
.y190{bottom:400.894373pt;}
.y1d2{bottom:402.823333pt;}
.y12b{bottom:402.933733pt;}
.y100{bottom:403.538213pt;}
.ya5{bottom:403.542213pt;}
.y1b{bottom:404.121867pt;}
.y44{bottom:404.152613pt;}
.y86{bottom:413.649867pt;}
.yd4{bottom:415.510693pt;}
.y18f{bottom:416.178213pt;}
.y1a{bottom:417.885867pt;}
.y1d1{bottom:418.107173pt;}
.yff{bottom:418.902213pt;}
.ya4{bottom:418.906213pt;}
.y43{bottom:419.516613pt;}
.y163{bottom:426.906213pt;}
.y88{bottom:429.013733pt;}
.yd3{bottom:430.874693pt;}
.y18e{bottom:431.542213pt;}
.y19{bottom:431.721867pt;}
.y12a{bottom:432.182213pt;}
.y1d0{bottom:433.471173pt;}
.yfe{bottom:434.186053pt;}
.ya3{bottom:434.270213pt;}
.y42{bottom:434.880613pt;}
.y162{bottom:442.190053pt;}
.y18{bottom:445.485867pt;}
.y18d{bottom:446.906213pt;}
.y129{bottom:447.546213pt;}
.y1cf{bottom:448.835173pt;}
.yfd{bottom:449.550053pt;}
.y41{bottom:450.164453pt;}
.y64{bottom:455.528533pt;}
.y161{bottom:457.554053pt;}
.y17{bottom:459.321867pt;}
.yd2{bottom:459.518533pt;}
.y18c{bottom:462.190053pt;}
.ya2{bottom:462.914053pt;}
.y1ce{bottom:464.119013pt;}
.yfc{bottom:464.914053pt;}
.y40{bottom:465.528453pt;}
.y63{bottom:468.968693pt;}
.y160{bottom:472.918053pt;}
.y16{bottom:473.085867pt;}
.yd1{bottom:474.882533pt;}
.y128{bottom:476.190053pt;}
.y74{bottom:477.333733pt;}
.y18b{bottom:477.554053pt;}
.ya1{bottom:478.197893pt;}
.y80{bottom:478.773733pt;}
.y1cd{bottom:479.483013pt;}
.yfb{bottom:480.197893pt;}
.y3f{bottom:480.892453pt;}
.y15{bottom:486.849867pt;}
.y15f{bottom:488.201893pt;}
.yd0{bottom:490.166373pt;}
.y127{bottom:491.554053pt;}
.ya0{bottom:493.561893pt;}
.y1cc{bottom:494.847013pt;}
.yfa{bottom:495.561893pt;}
.y3e{bottom:496.176293pt;}
.y7e{bottom:496.697733pt;}
.y72{bottom:500.525733pt;}
.y14{bottom:500.685867pt;}
.y15e{bottom:503.565893pt;}
.ycf{bottom:505.530373pt;}
.y18a{bottom:506.197893pt;}
.y126{bottom:506.918053pt;}
.y9f{bottom:508.925893pt;}
.y1cb{bottom:510.130853pt;}
.y75{bottom:510.773733pt;}
.yf9{bottom:510.925893pt;}
.y3d{bottom:511.540293pt;}
.y13{bottom:514.449867pt;}
.y6d{bottom:514.613733pt;}
.y15d{bottom:518.929893pt;}
.yce{bottom:520.894373pt;}
.y189{bottom:521.561893pt;}
.y125{bottom:522.201893pt;}
.y9e{bottom:524.209733pt;}
.y1ca{bottom:525.494853pt;}
.y76{bottom:525.653733pt;}
.yf8{bottom:526.209733pt;}
.y3c{bottom:526.824133pt;}
.y12{bottom:528.285867pt;}
.y15c{bottom:534.213733pt;}
.ycd{bottom:536.178213pt;}
.y188{bottom:536.925893pt;}
.y124{bottom:537.565893pt;}
.y9d{bottom:539.573733pt;}
.y77{bottom:540.617733pt;}
.y1c9{bottom:540.858853pt;}
.yf7{bottom:541.573733pt;}
.y11{bottom:542.049867pt;}
.y3b{bottom:542.188133pt;}
.y6e{bottom:543.809733pt;}
.y15b{bottom:550.213733pt;}
.ycc{bottom:551.542213pt;}
.y187{bottom:552.209733pt;}
.y9b{bottom:552.693333pt;}
.y123{bottom:552.929893pt;}
.y78{bottom:555.497733pt;}
.y9c{bottom:555.573733pt;}
.y10{bottom:555.885867pt;}
.y1c8{bottom:556.142693pt;}
.y3a{bottom:557.552133pt;}
.yf6{bottom:557.569733pt;}
.y159{bottom:563.333333pt;}
.y15a{bottom:566.213733pt;}
.ycb{bottom:566.906213pt;}
.y186{bottom:567.573733pt;}
.y122{bottom:568.213733pt;}
.y9a{bottom:568.693333pt;}
.y1b8{bottom:569.502693pt;}
.yf{bottom:569.649867pt;}
.y79{bottom:570.377733pt;}
.y1c7{bottom:571.506693pt;}
.y99{bottom:571.573733pt;}
.y39{bottom:572.835973pt;}
.yf5{bottom:572.933733pt;}
.y6f{bottom:573.005733pt;}
.y157{bottom:579.333333pt;}
.y184{bottom:580.693333pt;}
.y121{bottom:581.333333pt;}
.yca{bottom:582.190053pt;}
.y158{bottom:582.213733pt;}
.ye{bottom:583.485867pt;}
.y185{bottom:583.573733pt;}
.y120{bottom:584.213733pt;}
.y98{bottom:584.693333pt;}
.y1b7{bottom:584.866693pt;}
.y7a{bottom:585.257733pt;}
.yf4{bottom:586.053333pt;}
.y1c6{bottom:586.870693pt;}
.y97{bottom:587.573733pt;}
.y38{bottom:588.199973pt;}
.yf3{bottom:588.933733pt;}
.yd{bottom:597.249867pt;}
.yc9{bottom:597.554053pt;}
.y156{bottom:598.213733pt;}
.y183{bottom:599.573733pt;}
.y7b{bottom:600.137733pt;}
.y1b6{bottom:600.150533pt;}
.y11f{bottom:600.213733pt;}
.y95{bottom:600.693333pt;}
.yf2{bottom:602.053333pt;}
.y1c5{bottom:602.154533pt;}
.y70{bottom:602.285733pt;}
.y37{bottom:603.563973pt;}
.y94{bottom:603.573733pt;}
.yf1{bottom:604.933733pt;}
.yc{bottom:611.085867pt;}
.yc8{bottom:612.918053pt;}
.y11e{bottom:613.333333pt;}
.y155{bottom:614.213733pt;}
.y7c{bottom:615.017733pt;}
.y1b5{bottom:615.514533pt;}
.y182{bottom:615.573733pt;}
.y11d{bottom:616.213733pt;}
.y1c4{bottom:617.518533pt;}
.yf0{bottom:618.053333pt;}
.y36{bottom:618.847813pt;}
.yef{bottom:620.933733pt;}
.yb{bottom:624.849867pt;}
.yc7{bottom:628.201893pt;}
.y11c{bottom:629.333333pt;}
.y7d{bottom:629.981733pt;}
.y154{bottom:630.213733pt;}
.y1b4{bottom:630.878533pt;}
.y71{bottom:631.481733pt;}
.y181{bottom:631.573733pt;}
.y11b{bottom:632.213733pt;}
.y93{bottom:632.802373pt;}
.y1c3{bottom:632.882533pt;}
.y35{bottom:634.211813pt;}
.ya{bottom:638.685867pt;}
.yc6{bottom:643.565893pt;}
.y11a{bottom:645.333333pt;}
.y1b3{bottom:646.162373pt;}
.y153{bottom:646.213733pt;}
.y180{bottom:647.573733pt;}
.y1c2{bottom:648.166373pt;}
.y119{bottom:648.213733pt;}
.yee{bottom:650.170373pt;}
.y7f{bottom:650.933733pt;}
.y73{bottom:652.293733pt;}
.y9{bottom:652.449867pt;}
.yc5{bottom:658.929893pt;}
.y117{bottom:661.333333pt;}
.y92{bottom:661.526373pt;}
.y152{bottom:662.213733pt;}
.y1c1{bottom:663.530373pt;}
.y17f{bottom:663.573733pt;}
.y118{bottom:664.213733pt;}
.yed{bottom:665.534373pt;}
.y8{bottom:666.285867pt;}
.yc4{bottom:674.213733pt;}
.y34{bottom:676.135493pt;}
.y91{bottom:676.890373pt;}
.y116{bottom:677.333333pt;}
.y151{bottom:678.213733pt;}
.y62{bottom:678.894373pt;}
.y17e{bottom:679.573733pt;}
.y7{bottom:680.049867pt;}
.y115{bottom:680.213733pt;}
.yc3{bottom:690.213733pt;}
.y150{bottom:691.333333pt;}
.y90{bottom:692.174213pt;}
.y17d{bottom:692.693333pt;}
.y6{bottom:693.813867pt;}
.y61{bottom:694.178213pt;}
.y14f{bottom:694.213733pt;}
.y17c{bottom:695.573733pt;}
.y33{bottom:701.973733pt;}
.yc2{bottom:703.333333pt;}
.yc1{bottom:706.213733pt;}
.y14e{bottom:707.333333pt;}
.y8f{bottom:707.538213pt;}
.y114{bottom:709.462053pt;}
.y60{bottom:709.542213pt;}
.y14d{bottom:710.213733pt;}
.yc0{bottom:719.333333pt;}
.y5{bottom:720.777733pt;}
.ybf{bottom:722.213733pt;}
.y8e{bottom:722.822053pt;}
.y14b{bottom:723.333333pt;}
.y5f{bottom:724.826053pt;}
.y113{bottom:724.906213pt;}
.y14a{bottom:726.188773pt;}
.y14c{bottom:726.213733pt;}
.y4{bottom:733.013733pt;}
.ybe{bottom:735.333333pt;}
.y8d{bottom:738.186053pt;}
.ybd{bottom:738.213733pt;}
.y5e{bottom:740.190053pt;}
.ybb{bottom:751.333333pt;}
.y8c{bottom:753.550053pt;}
.ybc{bottom:754.213733pt;}
.y149{bottom:755.473893pt;}
.y5d{bottom:755.554053pt;}
.y3{bottom:760.301733pt;}
.yba{bottom:767.333333pt;}
.y8b{bottom:768.833893pt;}
.yb9{bottom:770.213733pt;}
.y5c{bottom:770.837893pt;}
.y148{bottom:770.918053pt;}
.y2{bottom:781.737733pt;}
.y8a{bottom:784.197893pt;}
.yb8{bottom:785.573733pt;}
.y5b{bottom:786.201893pt;}
.y89{bottom:799.561893pt;}
.yec{bottom:801.565893pt;}
.y1{bottom:803.173733pt;}
.y5a{bottom:814.845733pt;}
.yeb{bottom:816.849733pt;}
.y59{bottom:830.209733pt;}
.yea{bottom:832.213733pt;}
.y58{bottom:845.573733pt;}
.y2e{bottom:905.483067pt;}
.h9{height:14.880000pt;}
.h7{height:25.921875pt;}
.h2{height:37.343906pt;}
.h6{height:40.734375pt;}
.h4{height:42.117188pt;}
.h3{height:42.234375pt;}
.h5{height:46.890469pt;}
.hc{height:47.020937pt;}
.h8{height:51.382969pt;}
.h1{height:65.422031pt;}
.ha{height:77.610469pt;}
.hb{height:77.618469pt;}
.h0{height:960.000000pt;}
.w6{width:6.960000pt;}
.w19{width:9.840000pt;}
.w28{width:16.480000pt;}
.w26{width:20.720000pt;}
.w17{width:22.240000pt;}
.w32{width:27.440000pt;}
.w20{width:28.080000pt;}
.wc{width:29.040000pt;}
.w9{width:30.400000pt;}
.we{width:36.160000pt;}
.w1f{width:36.640000pt;}
.w23{width:37.040000pt;}
.w7{width:42.560000pt;}
.w29{width:43.920000pt;}
.w1e{width:46.560000pt;}
.w2e{width:54.720000pt;}
.w25{width:58.080000pt;}
.w13{width:62.560000pt;}
.w22{width:75.920000pt;}
.w2f{width:80.400000pt;}
.w8{width:82.720000pt;}
.w1a{width:87.680000pt;}
.wa{width:88.800000pt;}
.w1d{width:90.000000pt;}
.w10{width:90.720000pt;}
.w12{width:95.200000pt;}
.w33{width:97.760000pt;}
.wf{width:100.640000pt;}
.w14{width:101.360000pt;}
.w21{width:101.840000pt;}
.w11{width:104.080000pt;}
.wd{width:108.160000pt;}
.w2c{width:110.000000pt;}
.w31{width:115.840000pt;}
.w5{width:117.680000pt;}
.w18{width:119.920000pt;}
.w30{width:123.360000pt;}
.w3{width:128.880000pt;}
.w2{width:130.320000pt;}
.w1c{width:134.400000pt;}
.wb{width:141.040000pt;}
.w1b{width:149.520000pt;}
.w2b{width:159.520000pt;}
.w15{width:164.080000pt;}
.w2a{width:170.560000pt;}
.w4{width:191.760000pt;}
.w2d{width:198.080000pt;}
.w24{width:199.920000pt;}
.w27{width:222.880000pt;}
.w16{width:308.800000pt;}
.w1{width:672.666667pt;}
.w0{width:672.756000pt;}
.x0{left:0.000000pt;}
.x27{left:3.679987pt;}
.x2d{left:9.999987pt;}
.x35{left:13.279987pt;}
.x89{left:14.799987pt;}
.x79{left:16.239987pt;}
.x6d{left:17.759987pt;}
.x44{left:22.879987pt;}
.x31{left:25.919987pt;}
.x8a{left:27.439987pt;}
.x3d{left:31.119987pt;}
.x8c{left:34.079987pt;}
.x3a{left:37.759987pt;}
.x6b{left:39.919987pt;}
.x46{left:42.959987pt;}
.x78{left:47.759987pt;}
.x51{left:52.239987pt;}
.x9e{left:54.479987pt;}
.x4f{left:57.039987pt;}
.x91{left:58.159987pt;}
.x22{left:66.319987pt;}
.x92{left:70.719987pt;}
.xa0{left:76.719987pt;}
.x4c{left:80.399987pt;}
.x4a{left:83.999987pt;}
.x9b{left:85.519987pt;}
.xa4{left:87.679987pt;}
.xe{left:89.007333pt;}
.x7{left:90.764667pt;}
.x58{left:94.719987pt;}
.x2a{left:96.639987pt;}
.x3f{left:98.159987pt;}
.x5{left:101.642507pt;}
.x54{left:102.764667pt;}
.xd{left:107.081867pt;}
.x64{left:111.759987pt;}
.x20{left:113.343067pt;}
.x3{left:114.759147pt;}
.xb{left:116.816933pt;}
.xa2{left:118.879987pt;}
.x16{left:119.884667pt;}
.x88{left:121.564667pt;}
.x5e{left:122.761867pt;}
.xa7{left:124.763307pt;}
.x67{left:127.759987pt;}
.x1{left:131.404667pt;}
.x2{left:135.803707pt;}
.x33{left:136.844667pt;}
.x80{left:138.604667pt;}
.x34{left:141.324680pt;}
.x21{left:143.404667pt;}
.x15{left:145.404667pt;}
.x3c{left:146.524667pt;}
.x30{left:147.491227pt;}
.x29{left:150.844680pt;}
.x94{left:151.884667pt;}
.x26{left:153.084680pt;}
.x69{left:155.964667pt;}
.x12{left:156.910027pt;}
.x95{left:159.484667pt;}
.x36{left:161.324667pt;}
.x28{left:163.404667pt;}
.x6f{left:164.844680pt;}
.x61{left:165.884667pt;}
.x77{left:170.044667pt;}
.x53{left:172.684667pt;}
.x3e{left:174.684667pt;}
.x71{left:175.964680pt;}
.x62{left:177.804680pt;}
.x5b{left:179.519987pt;}
.x47{left:186.524667pt;}
.x9c{left:188.204667pt;}
.x1c{left:192.124667pt;}
.xf{left:194.758907pt;}
.x68{left:196.204667pt;}
.x93{left:198.924667pt;}
.x72{left:201.164667pt;}
.x49{left:202.524667pt;}
.x11{left:204.284587pt;}
.x55{left:209.404667pt;}
.x63{left:210.764667pt;}
.x5a{left:211.724667pt;}
.x56{left:212.764680pt;}
.x7a{left:215.324667pt;}
.x23{left:216.444667pt;}
.x57{left:219.404667pt;}
.x1d{left:221.080667pt;}
.x6c{left:227.884667pt;}
.x81{left:229.084680pt;}
.x37{left:230.044680pt;}
.x48{left:231.966507pt;}
.x70{left:235.564667pt;}
.x1e{left:237.244667pt;}
.x82{left:238.924667pt;}
.x38{left:240.124680pt;}
.x40{left:241.724667pt;}
.x41{left:244.924680pt;}
.x39{left:246.844667pt;}
.x6a{left:249.244680pt;}
.x42{left:251.724667pt;}
.x2b{left:254.124667pt;}
.x43{left:255.084680pt;}
.x6e{left:259.244667pt;}
.x9d{left:261.804680pt;}
.x5c{left:263.279987pt;}
.x52{left:265.084667pt;}
.x50{left:266.284667pt;}
.x2c{left:268.444680pt;}
.x73{left:271.164667pt;}
.x14{left:275.088667pt;}
.x7b{left:276.764680pt;}
.x8{left:279.404667pt;}
.xa6{left:283.084667pt;}
.x3b{left:284.604667pt;}
.x4d{left:289.644667pt;}
.x2e{left:291.964667pt;}
.x65{left:294.044667pt;}
.x5f{left:297.724680pt;}
.x4{left:298.684667pt;}
.x83{left:303.724667pt;}
.x6{left:305.084667pt;}
.x13{left:310.284667pt;}
.x74{left:318.524667pt;}
.x9f{left:322.924667pt;}
.x96{left:328.284667pt;}
.xa{left:329.663600pt;}
.x4b{left:331.004667pt;}
.x75{left:338.924667pt;}
.x18{left:355.324667pt;}
.x17{left:361.324667pt;}
.x84{left:363.244667pt;}
.x5d{left:372.684667pt;}
.x7c{left:380.844667pt;}
.x1b{left:383.004667pt;}
.x1a{left:386.284667pt;}
.x4e{left:389.004667pt;}
.x8b{left:390.844680pt;}
.x97{left:393.484680pt;}
.x19{left:398.368667pt;}
.x24{left:400.364680pt;}
.x2f{left:410.044667pt;}
.x7d{left:413.404680pt;}
.x7e{left:423.244667pt;}
.xa1{left:425.324667pt;}
.x9{left:428.353867pt;}
.x1f{left:429.512533pt;}
.x8d{left:431.644667pt;}
.x59{left:433.644667pt;}
.x66{left:437.324667pt;}
.x60{left:442.284667pt;}
.x76{left:447.244667pt;}
.x32{left:457.804667pt;}
.x45{left:464.764667pt;}
.x98{left:467.644680pt;}
.x25{left:473.404667pt;}
.x7f{left:474.364667pt;}
.x99{left:477.484667pt;}
.x85{left:483.964680pt;}
.x86{left:493.804667pt;}
.x8f{left:502.924680pt;}
.x9a{left:511.484667pt;}
.x90{left:512.764667pt;}
.x87{left:527.804667pt;}
.xa3{left:548.604667pt;}
.x8e{left:550.364667pt;}
.xa5{left:563.401387pt;}
.x10{left:580.047947pt;}
.xc{left:582.764667pt;}
}




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