
    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_104ac125540ca2aefae1b771.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f9ddd31da10d779330c4f10a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.887207;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_f30d55ea680e237adec532a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_72ae6b41594b76f4c4d880d6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.992000;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_7a1bd8d209bbe64dae89142a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.116000;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_6f0156c80554f7e9a683b7ec.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.043000;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_5067ccf0b39127e01bc508cb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.125533;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c06843680b645adbf510e126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.967000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d1ac8277276d610ef1ce67f4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_104140d31110cbe8ade013b6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9e99f7667df637b21bc8b5eb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.961000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1903f6fa1565754e63a71ae7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5511caf23f4f4a5b4a78f8a1.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_5d6851b0ebd705f9b0615a94.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_dac59aaba2b68ff59b94df69.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_e7514568593e52f03001b4bd.woff2')format("woff");}.ff10{font-family:ff10;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;}
.ls10{letter-spacing:-0.541080px;}
.ls11{letter-spacing:-0.480960px;}
.ls1a{letter-spacing:-0.420840px;}
.lsa{letter-spacing:-0.360720px;}
.ls1c{letter-spacing:-0.300600px;}
.ls19{letter-spacing:-0.240480px;}
.ls9{letter-spacing:-0.180360px;}
.ls12{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.131760px;}
.ls7{letter-spacing:-0.120240px;}
.ls14{letter-spacing:-0.065880px;}
.lse{letter-spacing:-0.060120px;}
.ls8{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.060120px;}
.ls1{letter-spacing:0.065880px;}
.ls13{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.078120px;}
.ls0{letter-spacing:0.120240px;}
.ls29{letter-spacing:0.162324px;}
.lsd{letter-spacing:0.180360px;}
.ls24{letter-spacing:0.480960px;}
.ls25{letter-spacing:0.541080px;}
.ls4{letter-spacing:0.841680px;}
.ls2a{letter-spacing:1.995984px;}
.ls15{letter-spacing:3.727440px;}
.ls2{letter-spacing:6.613200px;}
.ls1b{letter-spacing:7.334640px;}
.ls16{letter-spacing:7.695360px;}
.ls18{letter-spacing:8.777520px;}
.ls6{letter-spacing:10.220400px;}
.ls5{letter-spacing:10.581120px;}
.ls26{letter-spacing:12.384720px;}
.ls28{letter-spacing:13.466880px;}
.ls1f{letter-spacing:16.653240px;}
.ls20{letter-spacing:16.713360px;}
.lsf{letter-spacing:17.434800px;}
.ls1e{letter-spacing:18.516960px;}
.ls23{letter-spacing:20.681280px;}
.ls22{letter-spacing:21.042000px;}
.ls17{letter-spacing:27.534960px;}
.ls27{letter-spacing:30.060000px;}
.ls21{letter-spacing:62.103960px;}
.ls1d{letter-spacing:83.025720px;}
.ls2b{letter-spacing:848.954520px;}
.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;}
}
.ws13{word-spacing:-18.072000px;}
.ws12{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.856000px;}
.ws8{word-spacing:-16.352640px;}
.ws6{word-spacing:-16.292520px;}
.ws18{word-spacing:-16.172280px;}
.ws22{word-spacing:-16.112160px;}
.ws5{word-spacing:-15.877080px;}
.ws1e{word-spacing:-14.789520px;}
.ws1d{word-spacing:-14.669280px;}
.ws1f{word-spacing:-14.609160px;}
.ws9{word-spacing:-14.549040px;}
.ws19{word-spacing:-14.488920px;}
.ws7{word-spacing:-14.428800px;}
.ws1a{word-spacing:-14.368680px;}
.ws20{word-spacing:-14.308560px;}
.ws21{word-spacing:-14.248440px;}
.ws3{word-spacing:-12.504960px;}
.ws1c{word-spacing:-10.220400px;}
.ws1b{word-spacing:-7.334640px;}
.ws25{word-spacing:-0.312480px;}
.ws26{word-spacing:-0.234360px;}
.wsd{word-spacing:-0.180360px;}
.ws24{word-spacing:-0.131760px;}
.wsf{word-spacing:-0.120240px;}
.wsc{word-spacing:-0.078120px;}
.ws2{word-spacing:-0.060120px;}
.wsa{word-spacing:0.000000px;}
.ws0{word-spacing:0.060120px;}
.ws16{word-spacing:0.065880px;}
.ws1{word-spacing:0.120240px;}
.wsb{word-spacing:0.131760px;}
.wse{word-spacing:0.180360px;}
.ws4{word-spacing:0.300600px;}
.ws23{word-spacing:0.360720px;}
.ws17{word-spacing:0.420840px;}
.ws15{word-spacing:0.480960px;}
.ws14{word-spacing:0.541080px;}
.ws10{word-spacing:152.604000px;}
._27{margin-left:-10.046052px;}
._25{margin-left:-7.184340px;}
._1f{margin-left:-5.256000px;}
._9{margin-left:-3.270528px;}
._a{margin-left:-2.218428px;}
._3{margin-left:-1.166328px;}
._0{width:1.052100px;}
._8{width:2.242476px;}
._f{width:3.372732px;}
._5{width:4.436856px;}
._4{width:6.048072px;}
._b{width:7.082136px;}
._d{width:8.615196px;}
._c{width:9.979920px;}
._7{width:11.470896px;}
._6{width:13.160268px;}
._10{width:16.376688px;}
._1a{width:17.855640px;}
._11{width:19.514952px;}
._e{width:20.699316px;}
._23{width:21.895704px;}
._36{width:23.104116px;}
._19{width:24.198300px;}
._15{width:25.508916px;}
._16{width:27.090072px;}
._12{width:29.025936px;}
._1b{width:30.066012px;}
._29{width:31.803480px;}
._28{width:32.921712px;}
._2b{width:34.136136px;}
._34{width:35.164188px;}
._1d{width:36.583020px;}
._1c{width:37.737324px;}
._39{width:38.849544px;}
._24{width:40.057956px;}
._33{width:44.158140px;}
._14{width:45.366552px;}
._30{width:46.917648px;}
._3a{width:48.246300px;}
._3c{width:51.126048px;}
._3b{width:52.142076px;}
._2a{width:63.005760px;}
._38{width:67.628988px;}
._37{width:68.795316px;}
._2e{width:71.626968px;}
._2d{width:73.400508px;}
._32{width:75.679056px;}
._31{width:77.049792px;}
._35{width:79.280244px;}
._13{width:87.456564px;}
._26{width:110.777112px;}
._22{width:130.935348px;}
._17{width:132.107688px;}
._20{width:156.185460px;}
._1e{width:178.524000px;}
._1{width:201.131460px;}
._21{width:737.131320px;}
._2f{width:740.738520px;}
._2c{width:742.542120px;}
._2{width:743.985000px;}
._18{width:745.427880px;}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:78.120000px;}
.y0{bottom:0.000000px;}
.y142{bottom:4.230000px;}
.yb7{bottom:4.680000px;}
.yb9{bottom:4.770000px;}
.ye3{bottom:90.671310px;}
.y37{bottom:94.909590px;}
.y4c{bottom:95.014800px;}
.y8e{bottom:95.475510px;}
.y1ca{bottom:108.652710px;}
.y1f0{bottom:108.848100px;}
.ye2{bottom:110.375640px;}
.y109{bottom:110.586060px;}
.y175{bottom:110.610000px;}
.y36{bottom:114.794280px;}
.y4b{bottom:114.899490px;}
.y8d{bottom:115.360200px;}
.y14b{bottom:122.490000px;}
.y16e{bottom:124.692300px;}
.y1c9{bottom:128.537400px;}
.y1ef{bottom:128.732790px;}
.ye1{bottom:130.079970px;}
.y108{bottom:130.290390px;}
.y8c{bottom:130.931280px;}
.y17c{bottom:134.578350px;}
.y174{bottom:134.627130px;}
.y35{bottom:134.678970px;}
.y4a{bottom:134.784180px;}
.y176{bottom:142.200000px;}
.y16d{bottom:144.396630px;}
.ya2{bottom:147.276150px;}
.y1c8{bottom:148.422090px;}
.y1ee{bottom:148.617480px;}
.ye0{bottom:149.784300px;}
.y107{bottom:149.994720px;}
.y17b{bottom:154.282680px;}
.y173{bottom:154.331460px;}
.y34{bottom:154.563660px;}
.y49{bottom:154.668870px;}
.y16c{bottom:164.100960px;}
.y1c7{bottom:168.306780px;}
.y1ed{bottom:168.502170px;}
.ydf{bottom:169.488630px;}
.y106{bottom:169.699050px;}
.y167{bottom:173.975670px;}
.y17a{bottom:173.987010px;}
.y172{bottom:174.035790px;}
.y33{bottom:174.448350px;}
.y48{bottom:174.553560px;}
.y9b{bottom:179.989800px;}
.y16b{bottom:183.805290px;}
.y1c6{bottom:188.191470px;}
.y1ec{bottom:188.386860px;}
.yde{bottom:189.192960px;}
.y105{bottom:189.403380px;}
.y166{bottom:193.680000px;}
.y179{bottom:193.691340px;}
.y171{bottom:193.740120px;}
.y32{bottom:194.242860px;}
.y47{bottom:194.348070px;}
.y16a{bottom:203.509620px;}
.y1c5{bottom:207.985980px;}
.y1eb{bottom:208.181370px;}
.ydd{bottom:208.897290px;}
.y104{bottom:209.107710px;}
.y178{bottom:213.395670px;}
.y170{bottom:213.444450px;}
.y8f{bottom:213.658350px;}
.y31{bottom:214.127550px;}
.y46{bottom:214.232760px;}
.y9c{bottom:220.776150px;}
.y169{bottom:223.213950px;}
.y95{bottom:226.942350px;}
.y1c4{bottom:227.870670px;}
.y1ea{bottom:228.066060px;}
.ydc{bottom:228.601620px;}
.y103{bottom:228.812040px;}
.y177{bottom:233.100000px;}
.y16f{bottom:233.148780px;}
.y30{bottom:234.012240px;}
.y45{bottom:234.117450px;}
.y168{bottom:242.918280px;}
.y1c3{bottom:247.755360px;}
.y1e9{bottom:247.950750px;}
.ydb{bottom:248.305950px;}
.y102{bottom:248.516370px;}
.y2f{bottom:253.896930px;}
.y44{bottom:254.002140px;}
.y90{bottom:264.346350px;}
.y1c2{bottom:267.640050px;}
.y1e8{bottom:267.835440px;}
.yda{bottom:268.010280px;}
.y101{bottom:268.220700px;}
.y165{bottom:269.010000px;}
.y9d{bottom:271.464150px;}
.y2e{bottom:273.781620px;}
.y43{bottom:273.886830px;}
.y96{bottom:277.630350px;}
.y15c{bottom:283.166370px;}
.y160{bottom:283.181400px;}
.y1c1{bottom:287.524740px;}
.yd9{bottom:287.714610px;}
.y1e7{bottom:287.720130px;}
.y100{bottom:287.925030px;}
.y164{bottom:293.011020px;}
.y2d{bottom:293.666310px;}
.y42{bottom:293.771520px;}
.y158{bottom:302.855670px;}
.y15b{bottom:302.870700px;}
.y15f{bottom:302.885730px;}
.y1c0{bottom:307.409430px;}
.yd8{bottom:307.418940px;}
.y1e6{bottom:307.604820px;}
.yff{bottom:307.629360px;}
.y163{bottom:312.715350px;}
.y2c{bottom:313.460820px;}
.y41{bottom:313.566030px;}
.y91{bottom:315.034350px;}
.y9e{bottom:322.152150px;}
.y157{bottom:322.560000px;}
.y15a{bottom:322.575030px;}
.y15e{bottom:322.590060px;}
.yd7{bottom:327.123270px;}
.y1bf{bottom:327.203940px;}
.yfe{bottom:327.333690px;}
.y1e5{bottom:327.399330px;}
.y97{bottom:328.318350px;}
.y162{bottom:332.419680px;}
.y2b{bottom:333.345510px;}
.y40{bottom:333.450720px;}
.y159{bottom:342.279360px;}
.y15d{bottom:342.294390px;}
.yd6{bottom:346.827600px;}
.yfd{bottom:347.038020px;}
.y1be{bottom:347.088630px;}
.y1e4{bottom:347.284020px;}
.y219{bottom:349.571430px;}
.y161{bottom:352.124010px;}
.y2a{bottom:353.230200px;}
.y3f{bottom:353.335410px;}
.y92{bottom:365.722350px;}
.yd5{bottom:366.531930px;}
.yfc{bottom:366.742350px;}
.y1bd{bottom:366.973320px;}
.y1e3{bottom:367.168710px;}
.y14a{bottom:368.370000px;}
.y218{bottom:369.456120px;}
.y9f{bottom:372.840150px;}
.y29{bottom:373.114890px;}
.y3e{bottom:373.220100px;}
.y98{bottom:379.006350px;}
.y156{bottom:382.438350px;}
.yd4{bottom:386.236260px;}
.yfb{bottom:386.446680px;}
.y1bc{bottom:386.858010px;}
.y1e2{bottom:387.053400px;}
.y217{bottom:389.340810px;}
.y149{bottom:392.331780px;}
.y150{bottom:392.332680px;}
.y28{bottom:392.999580px;}
.y3d{bottom:393.104790px;}
.y155{bottom:402.142680px;}
.yd3{bottom:405.940590px;}
.yfa{bottom:406.151010px;}
.y1bb{bottom:406.742700px;}
.y1e1{bottom:406.938090px;}
.y216{bottom:409.225500px;}
.y148{bottom:412.036110px;}
.y14f{bottom:412.037010px;}
.y27{bottom:412.884270px;}
.y3c{bottom:412.989480px;}
.y93{bottom:416.410350px;}
.y144{bottom:421.835670px;}
.y154{bottom:421.847010px;}
.ya0{bottom:423.528150px;}
.yd2{bottom:425.644920px;}
.yf9{bottom:425.855340px;}
.y1ba{bottom:426.627390px;}
.y1e0{bottom:426.822780px;}
.y215{bottom:429.020010px;}
.y99{bottom:429.694350px;}
.y147{bottom:431.740440px;}
.y14e{bottom:431.741340px;}
.y26{bottom:432.678780px;}
.y3b{bottom:432.783990px;}
.y143{bottom:441.540000px;}
.y153{bottom:441.551340px;}
.yd1{bottom:445.349250px;}
.yf8{bottom:445.559670px;}
.y1b9{bottom:446.421900px;}
.y1df{bottom:446.617290px;}
.y214{bottom:448.904700px;}
.y146{bottom:451.444770px;}
.y14d{bottom:451.445670px;}
.y25{bottom:452.563470px;}
.y3a{bottom:452.668680px;}
.y152{bottom:461.255670px;}
.yd0{bottom:465.053580px;}
.yf7{bottom:465.264000px;}
.y1b8{bottom:466.306590px;}
.y1de{bottom:466.501980px;}
.y94{bottom:467.098350px;}
.y213{bottom:468.789390px;}
.y145{bottom:471.149100px;}
.y14c{bottom:471.150000px;}
.y24{bottom:472.448160px;}
.y39{bottom:472.553370px;}
.ya1{bottom:474.216150px;}
.y9a{bottom:480.382350px;}
.y151{bottom:480.960000px;}
.ycf{bottom:484.757910px;}
.yf6{bottom:484.968330px;}
.y1b7{bottom:486.191280px;}
.y1dd{bottom:486.386670px;}
.y212{bottom:488.674080px;}
.y23{bottom:492.332850px;}
.y38{bottom:492.438060px;}
.yce{bottom:504.462240px;}
.yf5{bottom:504.672660px;}
.y1b6{bottom:506.075970px;}
.y1dc{bottom:506.271360px;}
.y141{bottom:507.060000px;}
.y211{bottom:508.558770px;}
.y22{bottom:512.217540px;}
.ycd{bottom:524.166570px;}
.yf4{bottom:524.376990px;}
.y1b5{bottom:525.960660px;}
.y1db{bottom:526.156050px;}
.y8b{bottom:526.746330px;}
.y210{bottom:528.443460px;}
.y140{bottom:532.066770px;}
.y21{bottom:532.102230px;}
.ycc{bottom:543.780720px;}
.yf3{bottom:543.991140px;}
.y1b4{bottom:545.845350px;}
.y1da{bottom:546.040740px;}
.y6a{bottom:546.375510px;}
.y8a{bottom:546.540840px;}
.y20f{bottom:548.237970px;}
.y13f{bottom:551.771100px;}
.y20{bottom:551.896740px;}
.ycb{bottom:563.485050px;}
.yf2{bottom:563.695470px;}
.y1b3{bottom:565.639860px;}
.y1d9{bottom:565.835250px;}
.y69{bottom:566.260200px;}
.y89{bottom:566.425530px;}
.y20e{bottom:568.122660px;}
.y13e{bottom:571.475430px;}
.y1f{bottom:571.781430px;}
.yca{bottom:583.189380px;}
.yf1{bottom:583.399800px;}
.y1b2{bottom:585.524550px;}
.y1d8{bottom:585.719940px;}
.y68{bottom:586.144890px;}
.y88{bottom:586.310220px;}
.y20d{bottom:588.007350px;}
.y11f{bottom:591.014430px;}
.y13d{bottom:591.179760px;}
.y1e{bottom:591.666120px;}
.yc9{bottom:602.893710px;}
.yf0{bottom:603.104130px;}
.y1b1{bottom:605.409240px;}
.y1d7{bottom:605.604630px;}
.y67{bottom:606.029580px;}
.y87{bottom:606.194910px;}
.y20c{bottom:607.892040px;}
.y11e{bottom:610.718760px;}
.y13c{bottom:610.884090px;}
.y1d{bottom:611.550810px;}
.yc8{bottom:622.598040px;}
.yef{bottom:622.808460px;}
.y1b0{bottom:625.293930px;}
.y1d6{bottom:625.489320px;}
.y66{bottom:625.914270px;}
.y86{bottom:626.079600px;}
.y20b{bottom:627.776730px;}
.y11d{bottom:630.423090px;}
.y13b{bottom:630.588420px;}
.y1c{bottom:631.435500px;}
.yc7{bottom:642.302370px;}
.yee{bottom:642.512790px;}
.y1af{bottom:645.178620px;}
.y1d5{bottom:645.374010px;}
.y65{bottom:645.798960px;}
.y85{bottom:645.964290px;}
.y20a{bottom:647.661420px;}
.y11c{bottom:650.127420px;}
.y13a{bottom:650.292750px;}
.y1b{bottom:651.320190px;}
.yc6{bottom:662.006700px;}
.yed{bottom:662.217120px;}
.y1ae{bottom:665.063310px;}
.y1d4{bottom:665.258700px;}
.y64{bottom:665.593470px;}
.y84{bottom:665.758800px;}
.y209{bottom:667.455930px;}
.y11b{bottom:669.831750px;}
.y139{bottom:669.997080px;}
.y1a{bottom:671.114700px;}
.yc5{bottom:681.711030px;}
.yec{bottom:681.921450px;}
.y1ad{bottom:684.857820px;}
.y1d3{bottom:685.053210px;}
.y63{bottom:685.478160px;}
.y83{bottom:685.643490px;}
.y208{bottom:687.340620px;}
.y11a{bottom:689.536080px;}
.y138{bottom:689.701410px;}
.y19{bottom:690.999390px;}
.yc4{bottom:701.415360px;}
.yeb{bottom:701.625780px;}
.y1ac{bottom:704.742510px;}
.y1d2{bottom:704.937900px;}
.y62{bottom:705.362850px;}
.y82{bottom:705.528180px;}
.y207{bottom:707.225310px;}
.y119{bottom:709.240410px;}
.y137{bottom:709.405740px;}
.y18{bottom:710.884080px;}
.yc3{bottom:721.119690px;}
.yea{bottom:721.330110px;}
.y1ab{bottom:724.627200px;}
.y1d1{bottom:724.822590px;}
.y61{bottom:725.247540px;}
.y81{bottom:725.412870px;}
.y206{bottom:727.110000px;}
.y118{bottom:728.944740px;}
.y136{bottom:729.110070px;}
.y17{bottom:730.768770px;}
.yc2{bottom:740.824020px;}
.ye9{bottom:741.034440px;}
.y1aa{bottom:744.511890px;}
.y1d0{bottom:744.707280px;}
.y60{bottom:745.132230px;}
.y80{bottom:745.297560px;}
.y205{bottom:748.251810px;}
.y117{bottom:748.649070px;}
.y135{bottom:748.814400px;}
.y16{bottom:750.653460px;}
.yc1{bottom:760.528350px;}
.ye8{bottom:760.738770px;}
.y1a9{bottom:764.396580px;}
.y1cf{bottom:764.591970px;}
.y5f{bottom:765.016920px;}
.y7f{bottom:765.182250px;}
.y116{bottom:768.353400px;}
.y134{bottom:768.518730px;}
.y15{bottom:770.538150px;}
.y204{bottom:774.090000px;}
.yc0{bottom:780.232680px;}
.ye7{bottom:780.443100px;}
.y1a8{bottom:784.281270px;}
.y1ce{bottom:784.476660px;}
.y5e{bottom:784.811430px;}
.y7e{bottom:784.976760px;}
.y115{bottom:788.057730px;}
.y133{bottom:788.223060px;}
.y14{bottom:790.332660px;}
.y203{bottom:799.020000px;}
.ybf{bottom:799.937010px;}
.ye6{bottom:800.147430px;}
.y1a7{bottom:804.075780px;}
.y1cd{bottom:804.271170px;}
.y5d{bottom:804.696120px;}
.y7d{bottom:804.861450px;}
.y114{bottom:807.762060px;}
.y132{bottom:807.927390px;}
.y13{bottom:810.217350px;}
.ybe{bottom:819.641340px;}
.ye5{bottom:819.851760px;}
.y202{bottom:820.890000px;}
.y1a6{bottom:823.960470px;}
.y1cc{bottom:824.155860px;}
.y5c{bottom:824.580810px;}
.y7c{bottom:824.746140px;}
.y113{bottom:827.466390px;}
.y131{bottom:827.631720px;}
.y12{bottom:830.102040px;}
.ybd{bottom:839.345670px;}
.ye4{bottom:839.556090px;}
.y201{bottom:842.760000px;}
.y1a5{bottom:843.845160px;}
.y1cb{bottom:844.040550px;}
.y5b{bottom:844.465500px;}
.y7b{bottom:844.630830px;}
.y112{bottom:847.170720px;}
.y130{bottom:847.336050px;}
.y11{bottom:849.986730px;}
.ybc{bottom:859.050000px;}
.y1a4{bottom:863.729850px;}
.y5a{bottom:864.350190px;}
.y200{bottom:864.410310px;}
.y7a{bottom:864.515520px;}
.y111{bottom:866.875050px;}
.y12f{bottom:867.040380px;}
.y10{bottom:869.871420px;}
.ybb{bottom:875.340000px;}
.y19e{bottom:880.020000px;}
.y59{bottom:884.234880px;}
.y1ff{bottom:884.295000px;}
.y79{bottom:884.400210px;}
.y110{bottom:886.579380px;}
.y12e{bottom:886.744710px;}
.yf{bottom:889.756110px;}
.yba{bottom:896.760000px;}
.y198{bottom:903.981600px;}
.y1a3{bottom:903.982680px;}
.y19d{bottom:903.996630px;}
.y58{bottom:904.029390px;}
.y1fe{bottom:904.089510px;}
.y78{bottom:904.194720px;}
.y10f{bottom:906.283710px;}
.y12d{bottom:906.449040px;}
.ye{bottom:909.550620px;}
.yb8{bottom:918.180000px;}
.y197{bottom:923.685930px;}
.y1a2{bottom:923.687010px;}
.y19c{bottom:923.700960px;}
.y57{bottom:923.914080px;}
.y1fd{bottom:923.974200px;}
.y77{bottom:924.079410px;}
.y10e{bottom:925.988040px;}
.y12c{bottom:926.153370px;}
.yd{bottom:929.435310px;}
.y193{bottom:933.575670px;}
.yb5{bottom:933.743520px;}
.yb6{bottom:939.690000px;}
.y196{bottom:943.390260px;}
.y1a1{bottom:943.391340px;}
.y19b{bottom:943.405290px;}
.y56{bottom:943.798770px;}
.y1fc{bottom:943.858890px;}
.y76{bottom:943.964100px;}
.y10d{bottom:945.692370px;}
.y12b{bottom:945.857700px;}
.yc{bottom:949.320000px;}
.y192{bottom:953.280000px;}
.y195{bottom:963.094590px;}
.y1a0{bottom:963.095670px;}
.y19a{bottom:963.109620px;}
.y55{bottom:963.683460px;}
.y1fb{bottom:963.743580px;}
.y75{bottom:963.848790px;}
.y10c{bottom:965.396700px;}
.yb4{bottom:965.426760px;}
.y12a{bottom:965.562030px;}
.yb{bottom:970.461810px;}
.y194{bottom:982.798920px;}
.y19f{bottom:982.800000px;}
.y199{bottom:982.813950px;}
.y54{bottom:983.568150px;}
.y1fa{bottom:983.628270px;}
.y74{bottom:983.733480px;}
.y10b{bottom:985.101030px;}
.yb3{bottom:985.131090px;}
.y129{bottom:985.266360px;}
.ya{bottom:996.300000px;}
.y53{bottom:1003.452840px;}
.y1f9{bottom:1003.512960px;}
.y73{bottom:1003.618170px;}
.y10a{bottom:1004.805360px;}
.yb2{bottom:1004.835420px;}
.y128{bottom:1004.970690px;}
.y191{bottom:1018.710000px;}
.y9{bottom:1021.225680px;}
.y52{bottom:1023.247350px;}
.y1f8{bottom:1023.307470px;}
.y72{bottom:1023.412680px;}
.yaa{bottom:1024.509690px;}
.y127{bottom:1024.675020px;}
.y18a{bottom:1032.887070px;}
.y184{bottom:1042.671600px;}
.y190{bottom:1042.731720px;}
.y8{bottom:1043.097840px;}
.y51{bottom:1043.132040px;}
.y1f7{bottom:1043.192160px;}
.y71{bottom:1043.297370px;}
.ya9{bottom:1044.214020px;}
.yb1{bottom:1044.259110px;}
.y126{bottom:1044.379350px;}
.y189{bottom:1052.591400px;}
.y183{bottom:1062.375930px;}
.y18f{bottom:1062.436050px;}
.y50{bottom:1063.016730px;}
.y1f6{bottom:1063.076850px;}
.y70{bottom:1063.182060px;}
.ya8{bottom:1063.918350px;}
.yb0{bottom:1063.963440px;}
.y125{bottom:1064.083680px;}
.y7{bottom:1064.970000px;}
.y17f{bottom:1072.265670px;}
.y188{bottom:1072.295730px;}
.y182{bottom:1082.080260px;}
.y18e{bottom:1082.140380px;}
.y4f{bottom:1082.901420px;}
.y1f5{bottom:1082.961540px;}
.y6f{bottom:1083.066750px;}
.ya7{bottom:1083.622680px;}
.yaf{bottom:1083.667770px;}
.y124{bottom:1083.788010px;}
.y6{bottom:1086.480000px;}
.y17e{bottom:1091.970000px;}
.y187{bottom:1092.000060px;}
.y181{bottom:1101.784590px;}
.y18d{bottom:1101.844710px;}
.y4e{bottom:1102.786110px;}
.y1f4{bottom:1102.846230px;}
.y6e{bottom:1102.951440px;}
.ya6{bottom:1103.327010px;}
.yae{bottom:1103.372100px;}
.y123{bottom:1103.492340px;}
.y4{bottom:1106.550000px;}
.y186{bottom:1111.704390px;}
.y5{bottom:1116.720000px;}
.y180{bottom:1121.488920px;}
.y18c{bottom:1121.549040px;}
.y4d{bottom:1122.670800px;}
.y1f3{bottom:1122.730920px;}
.y6d{bottom:1122.836130px;}
.ya5{bottom:1123.031340px;}
.yad{bottom:1123.076430px;}
.y122{bottom:1123.196670px;}
.y185{bottom:1131.408720px;}
.y18b{bottom:1141.253370px;}
.y3{bottom:1142.465310px;}
.y1f2{bottom:1142.525430px;}
.y6c{bottom:1142.630640px;}
.ya4{bottom:1142.735670px;}
.yac{bottom:1142.780760px;}
.y121{bottom:1142.901000px;}
.y17d{bottom:1157.490000px;}
.y2{bottom:1162.350000px;}
.y1f1{bottom:1162.410120px;}
.ya3{bottom:1162.440000px;}
.yab{bottom:1162.485090px;}
.y6b{bottom:1162.515330px;}
.y120{bottom:1162.605330px;}
.y1{bottom:1194.030000px;}
.h11{height:19.710000px;}
.hf{height:20.700000px;}
.h10{height:20.701500px;}
.h4{height:31.590000px;}
.hc{height:35.991211px;}
.h2{height:42.271875px;}
.h8{height:45.210240px;}
.he{height:45.742852px;}
.h3{height:45.811440px;}
.hb{height:48.761719px;}
.h15{height:49.541760px;}
.hd{height:49.992188px;}
.ha{height:53.266320px;}
.h9{height:53.839464px;}
.h5{height:58.369680px;}
.h16{height:58.746240px;}
.h6{height:58.997736px;}
.h7{height:69.959064px;}
.h13{height:98.550000px;}
.h12{height:137.970000px;}
.h14{height:157.680000px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w2{width:50.310000px;}
.w5{width:92.880000px;}
.w6{width:101.338500px;}
.w4{width:109.890000px;}
.wb{width:159.118500px;}
.wa{width:170.551500px;}
.w9{width:193.950000px;}
.w8{width:195.570000px;}
.w3{width:305.640000px;}
.w7{width:415.080000px;}
.w0{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x41{left:11.790000px;}
.x59{left:15.480000px;}
.x45{left:17.730000px;}
.x2d{left:20.520000px;}
.x2b{left:22.680000px;}
.x31{left:24.570000px;}
.x2f{left:28.800000px;}
.x29{left:31.410000px;}
.x37{left:35.190000px;}
.x32{left:38.610000px;}
.x35{left:39.780000px;}
.x4{left:42.210000px;}
.x6e{left:43.380000px;}
.x50{left:46.080000px;}
.x39{left:47.160000px;}
.x5f{left:54.180000px;}
.x30{left:79.470000px;}
.x1{left:85.050000px;}
.x60{left:93.510000px;}
.x3a{left:96.030000px;}
.x68{left:98.550000px;}
.x51{left:99.630000px;}
.x4b{left:102.060000px;}
.xa{left:106.376130px;}
.x28{left:108.540000px;}
.x3b{left:111.961800px;}
.x61{left:122.397660px;}
.x4c{left:127.896570px;}
.x69{left:130.503780px;}
.x7{left:133.730460px;}
.x52{left:135.897390px;}
.x2e{left:139.770000px;}
.x1d{left:150.113700px;}
.x20{left:158.825700px;}
.x1f{left:164.585700px;}
.x21{left:169.823700px;}
.x71{left:174.245310px;}
.x1e{left:175.493700px;}
.x1c{left:179.669700px;}
.xe{left:183.706920px;}
.x24{left:188.729370px;}
.x9{left:198.175860px;}
.x33{left:200.720880px;}
.x22{left:206.560650px;}
.x8{left:226.260000px;}
.x1b{left:234.712200px;}
.x25{left:242.461620px;}
.x26{left:256.499640px;}
.x70{left:279.180000px;}
.x34{left:282.060000px;}
.x3e{left:289.977120px;}
.x63{left:292.221630px;}
.x62{left:293.589360px;}
.x3d{left:296.004150px;}
.x6a{left:297.006120px;}
.x3c{left:298.078290px;}
.x55{left:300.070080px;}
.x53{left:301.407750px;}
.x3f{left:302.482080px;}
.x54{left:304.293510px;}
.x6{left:311.310000px;}
.x56{left:321.307470px;}
.x3{left:326.160000px;}
.x40{left:347.211360px;}
.x6b{left:354.510900px;}
.x64{left:359.360640px;}
.x14{left:362.372850px;}
.x5{left:384.570000px;}
.x1a{left:395.312850px;}
.x2{left:446.490000px;}
.x72{left:457.101180px;}
.xc{left:473.002920px;}
.x36{left:476.730000px;}
.x10{left:483.134850px;}
.x42{left:485.547030px;}
.x4d{left:488.075490px;}
.x57{left:489.418020px;}
.x4e{left:490.600530px;}
.x6c{left:492.381090px;}
.xb{left:494.330490px;}
.x43{left:497.601090px;}
.x65{left:498.688740px;}
.x27{left:501.570000px;}
.x44{left:504.349560px;}
.x6d{left:513.543330px;}
.x66{left:529.109460px;}
.x15{left:532.544850px;}
.x58{left:545.930820px;}
.x12{left:548.996850px;}
.xf{left:554.504850px;}
.x16{left:559.994850px;}
.x11{left:576.446850px;}
.x13{left:587.426850px;}
.x6f{left:596.611080px;}
.x2a{left:612.180000px;}
.x19{left:625.856850px;}
.x18{left:642.326850px;}
.x38{left:648.090000px;}
.x5d{left:656.095770px;}
.x5b{left:657.989550px;}
.x47{left:659.518470px;}
.x48{left:660.780990px;}
.x5c{left:664.016580px;}
.x5a{left:665.730000px;}
.x46{left:667.800000px;}
.x49{left:670.505400px;}
.x4f{left:672.673950px;}
.x67{left:675.636930px;}
.x5e{left:679.136760px;}
.x4a{left:691.201710px;}
.x17{left:702.716850px;}
.x2c{left:705.870000px;}
.x23{left:737.189100px;}
.xd{left:757.011240px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.480960pt;}
.ls11{letter-spacing:-0.427520pt;}
.ls1a{letter-spacing:-0.374080pt;}
.lsa{letter-spacing:-0.320640pt;}
.ls1c{letter-spacing:-0.267200pt;}
.ls19{letter-spacing:-0.213760pt;}
.ls9{letter-spacing:-0.160320pt;}
.ls12{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.117120pt;}
.ls7{letter-spacing:-0.106880pt;}
.ls14{letter-spacing:-0.058560pt;}
.lse{letter-spacing:-0.053440pt;}
.ls8{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.053440pt;}
.ls1{letter-spacing:0.058560pt;}
.ls13{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.069440pt;}
.ls0{letter-spacing:0.106880pt;}
.ls29{letter-spacing:0.144288pt;}
.lsd{letter-spacing:0.160320pt;}
.ls24{letter-spacing:0.427520pt;}
.ls25{letter-spacing:0.480960pt;}
.ls4{letter-spacing:0.748160pt;}
.ls2a{letter-spacing:1.774208pt;}
.ls15{letter-spacing:3.313280pt;}
.ls2{letter-spacing:5.878400pt;}
.ls1b{letter-spacing:6.519680pt;}
.ls16{letter-spacing:6.840320pt;}
.ls18{letter-spacing:7.802240pt;}
.ls6{letter-spacing:9.084800pt;}
.ls5{letter-spacing:9.405440pt;}
.ls26{letter-spacing:11.008640pt;}
.ls28{letter-spacing:11.970560pt;}
.ls1f{letter-spacing:14.802880pt;}
.ls20{letter-spacing:14.856320pt;}
.lsf{letter-spacing:15.497600pt;}
.ls1e{letter-spacing:16.459520pt;}
.ls23{letter-spacing:18.383360pt;}
.ls22{letter-spacing:18.704000pt;}
.ls17{letter-spacing:24.475520pt;}
.ls27{letter-spacing:26.720000pt;}
.ls21{letter-spacing:55.203520pt;}
.ls1d{letter-spacing:73.800640pt;}
.ls2b{letter-spacing:754.626240pt;}
.ws13{word-spacing:-16.064000pt;}
.ws12{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.872000pt;}
.ws8{word-spacing:-14.535680pt;}
.ws6{word-spacing:-14.482240pt;}
.ws18{word-spacing:-14.375360pt;}
.ws22{word-spacing:-14.321920pt;}
.ws5{word-spacing:-14.112960pt;}
.ws1e{word-spacing:-13.146240pt;}
.ws1d{word-spacing:-13.039360pt;}
.ws1f{word-spacing:-12.985920pt;}
.ws9{word-spacing:-12.932480pt;}
.ws19{word-spacing:-12.879040pt;}
.ws7{word-spacing:-12.825600pt;}
.ws1a{word-spacing:-12.772160pt;}
.ws20{word-spacing:-12.718720pt;}
.ws21{word-spacing:-12.665280pt;}
.ws3{word-spacing:-11.115520pt;}
.ws1c{word-spacing:-9.084800pt;}
.ws1b{word-spacing:-6.519680pt;}
.ws25{word-spacing:-0.277760pt;}
.ws26{word-spacing:-0.208320pt;}
.wsd{word-spacing:-0.160320pt;}
.ws24{word-spacing:-0.117120pt;}
.wsf{word-spacing:-0.106880pt;}
.wsc{word-spacing:-0.069440pt;}
.ws2{word-spacing:-0.053440pt;}
.wsa{word-spacing:0.000000pt;}
.ws0{word-spacing:0.053440pt;}
.ws16{word-spacing:0.058560pt;}
.ws1{word-spacing:0.106880pt;}
.wsb{word-spacing:0.117120pt;}
.wse{word-spacing:0.160320pt;}
.ws4{word-spacing:0.267200pt;}
.ws23{word-spacing:0.320640pt;}
.ws17{word-spacing:0.374080pt;}
.ws15{word-spacing:0.427520pt;}
.ws14{word-spacing:0.480960pt;}
.ws10{word-spacing:135.648000pt;}
._27{margin-left:-8.929824pt;}
._25{margin-left:-6.386080pt;}
._1f{margin-left:-4.672000pt;}
._9{margin-left:-2.907136pt;}
._a{margin-left:-1.971936pt;}
._3{margin-left:-1.036736pt;}
._0{width:0.935200pt;}
._8{width:1.993312pt;}
._f{width:2.997984pt;}
._5{width:3.943872pt;}
._4{width:5.376064pt;}
._b{width:6.295232pt;}
._d{width:7.657952pt;}
._c{width:8.871040pt;}
._7{width:10.196352pt;}
._6{width:11.698016pt;}
._10{width:14.557056pt;}
._1a{width:15.871680pt;}
._11{width:17.346624pt;}
._e{width:18.399392pt;}
._23{width:19.462848pt;}
._36{width:20.536992pt;}
._19{width:21.509600pt;}
._15{width:22.674592pt;}
._16{width:24.080064pt;}
._12{width:25.800832pt;}
._1b{width:26.725344pt;}
._29{width:28.269760pt;}
._28{width:29.263744pt;}
._2b{width:30.343232pt;}
._34{width:31.257056pt;}
._1d{width:32.518240pt;}
._1c{width:33.544288pt;}
._39{width:34.532928pt;}
._24{width:35.607072pt;}
._33{width:39.251680pt;}
._14{width:40.325824pt;}
._30{width:41.704576pt;}
._3a{width:42.885600pt;}
._3c{width:45.445376pt;}
._3b{width:46.348512pt;}
._2a{width:56.005120pt;}
._38{width:60.114656pt;}
._37{width:61.151392pt;}
._2e{width:63.668416pt;}
._2d{width:65.244896pt;}
._32{width:67.270272pt;}
._31{width:68.488704pt;}
._35{width:70.471328pt;}
._13{width:77.739168pt;}
._26{width:98.468544pt;}
._22{width:116.386976pt;}
._17{width:117.429056pt;}
._20{width:138.831520pt;}
._1e{width:158.688000pt;}
._1{width:178.783520pt;}
._21{width:655.227840pt;}
._2f{width:658.434240pt;}
._2c{width:660.037440pt;}
._2{width:661.320000pt;}
._18{width:662.602560pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:69.440000pt;}
.y0{bottom:0.000000pt;}
.y142{bottom:3.760000pt;}
.yb7{bottom:4.160000pt;}
.yb9{bottom:4.240000pt;}
.ye3{bottom:80.596720pt;}
.y37{bottom:84.364080pt;}
.y4c{bottom:84.457600pt;}
.y8e{bottom:84.867120pt;}
.y1ca{bottom:96.580187pt;}
.y1f0{bottom:96.753867pt;}
.ye2{bottom:98.111680pt;}
.y109{bottom:98.298720pt;}
.y175{bottom:98.320000pt;}
.y36{bottom:102.039360pt;}
.y4b{bottom:102.132880pt;}
.y8d{bottom:102.542400pt;}
.y14b{bottom:108.880000pt;}
.y16e{bottom:110.837600pt;}
.y1c9{bottom:114.255467pt;}
.y1ef{bottom:114.429147pt;}
.ye1{bottom:115.626640pt;}
.y108{bottom:115.813680pt;}
.y8c{bottom:116.383360pt;}
.y17c{bottom:119.625200pt;}
.y174{bottom:119.668560pt;}
.y35{bottom:119.714640pt;}
.y4a{bottom:119.808160pt;}
.y176{bottom:126.400000pt;}
.y16d{bottom:128.352560pt;}
.ya2{bottom:130.912133pt;}
.y1c8{bottom:131.930747pt;}
.y1ee{bottom:132.104427pt;}
.ye0{bottom:133.141600pt;}
.y107{bottom:133.328640pt;}
.y17b{bottom:137.140160pt;}
.y173{bottom:137.183520pt;}
.y34{bottom:137.389920pt;}
.y49{bottom:137.483440pt;}
.y16c{bottom:145.867520pt;}
.y1c7{bottom:149.606027pt;}
.y1ed{bottom:149.779707pt;}
.ydf{bottom:150.656560pt;}
.y106{bottom:150.843600pt;}
.y167{bottom:154.645040pt;}
.y17a{bottom:154.655120pt;}
.y172{bottom:154.698480pt;}
.y33{bottom:155.065200pt;}
.y48{bottom:155.158720pt;}
.y9b{bottom:159.990933pt;}
.y16b{bottom:163.382480pt;}
.y1c6{bottom:167.281307pt;}
.y1ec{bottom:167.454987pt;}
.yde{bottom:168.171520pt;}
.y105{bottom:168.358560pt;}
.y166{bottom:172.160000pt;}
.y179{bottom:172.170080pt;}
.y171{bottom:172.213440pt;}
.y32{bottom:172.660320pt;}
.y47{bottom:172.753840pt;}
.y16a{bottom:180.897440pt;}
.y1c5{bottom:184.876427pt;}
.y1eb{bottom:185.050107pt;}
.ydd{bottom:185.686480pt;}
.y104{bottom:185.873520pt;}
.y178{bottom:189.685040pt;}
.y170{bottom:189.728400pt;}
.y8f{bottom:189.918533pt;}
.y31{bottom:190.335600pt;}
.y46{bottom:190.429120pt;}
.y9c{bottom:196.245467pt;}
.y169{bottom:198.412400pt;}
.y95{bottom:201.726533pt;}
.y1c4{bottom:202.551707pt;}
.y1ea{bottom:202.725387pt;}
.ydc{bottom:203.201440pt;}
.y103{bottom:203.388480pt;}
.y177{bottom:207.200000pt;}
.y16f{bottom:207.243360pt;}
.y30{bottom:208.010880pt;}
.y45{bottom:208.104400pt;}
.y168{bottom:215.927360pt;}
.y1c3{bottom:220.226987pt;}
.y1e9{bottom:220.400667pt;}
.ydb{bottom:220.716400pt;}
.y102{bottom:220.903440pt;}
.y2f{bottom:225.686160pt;}
.y44{bottom:225.779680pt;}
.y90{bottom:234.974533pt;}
.y1c2{bottom:237.902267pt;}
.y1e8{bottom:238.075947pt;}
.yda{bottom:238.231360pt;}
.y101{bottom:238.418400pt;}
.y165{bottom:239.120000pt;}
.y9d{bottom:241.301467pt;}
.y2e{bottom:243.361440pt;}
.y43{bottom:243.454960pt;}
.y96{bottom:246.782533pt;}
.y15c{bottom:251.703440pt;}
.y160{bottom:251.716800pt;}
.y1c1{bottom:255.577547pt;}
.yd9{bottom:255.746320pt;}
.y1e7{bottom:255.751227pt;}
.y100{bottom:255.933360pt;}
.y164{bottom:260.454240pt;}
.y2d{bottom:261.036720pt;}
.y42{bottom:261.130240pt;}
.y158{bottom:269.205040pt;}
.y15b{bottom:269.218400pt;}
.y15f{bottom:269.231760pt;}
.y1c0{bottom:273.252827pt;}
.yd8{bottom:273.261280pt;}
.y1e6{bottom:273.426507pt;}
.yff{bottom:273.448320pt;}
.y163{bottom:277.969200pt;}
.y2c{bottom:278.631840pt;}
.y41{bottom:278.725360pt;}
.y91{bottom:280.030533pt;}
.y9e{bottom:286.357467pt;}
.y157{bottom:286.720000pt;}
.y15a{bottom:286.733360pt;}
.y15e{bottom:286.746720pt;}
.yd7{bottom:290.776240pt;}
.y1bf{bottom:290.847947pt;}
.yfe{bottom:290.963280pt;}
.y1e5{bottom:291.021627pt;}
.y97{bottom:291.838533pt;}
.y162{bottom:295.484160pt;}
.y2b{bottom:296.307120pt;}
.y40{bottom:296.400640pt;}
.y159{bottom:304.248320pt;}
.y15d{bottom:304.261680pt;}
.yd6{bottom:308.291200pt;}
.yfd{bottom:308.478240pt;}
.y1be{bottom:308.523227pt;}
.y1e4{bottom:308.696907pt;}
.y219{bottom:310.730160pt;}
.y161{bottom:312.999120pt;}
.y2a{bottom:313.982400pt;}
.y3f{bottom:314.075920pt;}
.y92{bottom:325.086533pt;}
.yd5{bottom:325.806160pt;}
.yfc{bottom:325.993200pt;}
.y1bd{bottom:326.198507pt;}
.y1e3{bottom:326.372187pt;}
.y14a{bottom:327.440000pt;}
.y218{bottom:328.405440pt;}
.y9f{bottom:331.413467pt;}
.y29{bottom:331.657680pt;}
.y3e{bottom:331.751200pt;}
.y98{bottom:336.894533pt;}
.y156{bottom:339.945200pt;}
.yd4{bottom:343.321120pt;}
.yfb{bottom:343.508160pt;}
.y1bc{bottom:343.873787pt;}
.y1e2{bottom:344.047467pt;}
.y217{bottom:346.080720pt;}
.y149{bottom:348.739360pt;}
.y150{bottom:348.740160pt;}
.y28{bottom:349.332960pt;}
.y3d{bottom:349.426480pt;}
.y155{bottom:357.460160pt;}
.yd3{bottom:360.836080pt;}
.yfa{bottom:361.023120pt;}
.y1bb{bottom:361.549067pt;}
.y1e1{bottom:361.722747pt;}
.y216{bottom:363.756000pt;}
.y148{bottom:366.254320pt;}
.y14f{bottom:366.255120pt;}
.y27{bottom:367.008240pt;}
.y3c{bottom:367.101760pt;}
.y93{bottom:370.142533pt;}
.y144{bottom:374.965040pt;}
.y154{bottom:374.975120pt;}
.ya0{bottom:376.469467pt;}
.yd2{bottom:378.351040pt;}
.yf9{bottom:378.538080pt;}
.y1ba{bottom:379.224347pt;}
.y1e0{bottom:379.398027pt;}
.y215{bottom:381.351120pt;}
.y99{bottom:381.950533pt;}
.y147{bottom:383.769280pt;}
.y14e{bottom:383.770080pt;}
.y26{bottom:384.603360pt;}
.y3b{bottom:384.696880pt;}
.y143{bottom:392.480000pt;}
.y153{bottom:392.490080pt;}
.yd1{bottom:395.866000pt;}
.yf8{bottom:396.053040pt;}
.y1b9{bottom:396.819467pt;}
.y1df{bottom:396.993147pt;}
.y214{bottom:399.026400pt;}
.y146{bottom:401.284240pt;}
.y14d{bottom:401.285040pt;}
.y25{bottom:402.278640pt;}
.y3a{bottom:402.372160pt;}
.y152{bottom:410.005040pt;}
.yd0{bottom:413.380960pt;}
.yf7{bottom:413.568000pt;}
.y1b8{bottom:414.494747pt;}
.y1de{bottom:414.668427pt;}
.y94{bottom:415.198533pt;}
.y213{bottom:416.701680pt;}
.y145{bottom:418.799200pt;}
.y14c{bottom:418.800000pt;}
.y24{bottom:419.953920pt;}
.y39{bottom:420.047440pt;}
.ya1{bottom:421.525467pt;}
.y9a{bottom:427.006533pt;}
.y151{bottom:427.520000pt;}
.ycf{bottom:430.895920pt;}
.yf6{bottom:431.082960pt;}
.y1b7{bottom:432.170027pt;}
.y1dd{bottom:432.343707pt;}
.y212{bottom:434.376960pt;}
.y23{bottom:437.629200pt;}
.y38{bottom:437.722720pt;}
.yce{bottom:448.410880pt;}
.yf5{bottom:448.597920pt;}
.y1b6{bottom:449.845307pt;}
.y1dc{bottom:450.018987pt;}
.y141{bottom:450.720000pt;}
.y211{bottom:452.052240pt;}
.y22{bottom:455.304480pt;}
.ycd{bottom:465.925840pt;}
.yf4{bottom:466.112880pt;}
.y1b5{bottom:467.520587pt;}
.y1db{bottom:467.694267pt;}
.y8b{bottom:468.218960pt;}
.y210{bottom:469.727520pt;}
.y140{bottom:472.948240pt;}
.y21{bottom:472.979760pt;}
.ycc{bottom:483.360640pt;}
.yf3{bottom:483.547680pt;}
.y1b4{bottom:485.195867pt;}
.y1da{bottom:485.369547pt;}
.y6a{bottom:485.667120pt;}
.y8a{bottom:485.814080pt;}
.y20f{bottom:487.322640pt;}
.y13f{bottom:490.463200pt;}
.y20{bottom:490.574880pt;}
.ycb{bottom:500.875600pt;}
.yf2{bottom:501.062640pt;}
.y1b3{bottom:502.790987pt;}
.y1d9{bottom:502.964667pt;}
.y69{bottom:503.342400pt;}
.y89{bottom:503.489360pt;}
.y20e{bottom:504.997920pt;}
.y13e{bottom:507.978160pt;}
.y1f{bottom:508.250160pt;}
.yca{bottom:518.390560pt;}
.yf1{bottom:518.577600pt;}
.y1b2{bottom:520.466267pt;}
.y1d8{bottom:520.639947pt;}
.y68{bottom:521.017680pt;}
.y88{bottom:521.164640pt;}
.y20d{bottom:522.673200pt;}
.y11f{bottom:525.346160pt;}
.y13d{bottom:525.493120pt;}
.y1e{bottom:525.925440pt;}
.yc9{bottom:535.905520pt;}
.yf0{bottom:536.092560pt;}
.y1b1{bottom:538.141547pt;}
.y1d7{bottom:538.315227pt;}
.y67{bottom:538.692960pt;}
.y87{bottom:538.839920pt;}
.y20c{bottom:540.348480pt;}
.y11e{bottom:542.861120pt;}
.y13c{bottom:543.008080pt;}
.y1d{bottom:543.600720pt;}
.yc8{bottom:553.420480pt;}
.yef{bottom:553.607520pt;}
.y1b0{bottom:555.816827pt;}
.y1d6{bottom:555.990507pt;}
.y66{bottom:556.368240pt;}
.y86{bottom:556.515200pt;}
.y20b{bottom:558.023760pt;}
.y11d{bottom:560.376080pt;}
.y13b{bottom:560.523040pt;}
.y1c{bottom:561.276000pt;}
.yc7{bottom:570.935440pt;}
.yee{bottom:571.122480pt;}
.y1af{bottom:573.492107pt;}
.y1d5{bottom:573.665787pt;}
.y65{bottom:574.043520pt;}
.y85{bottom:574.190480pt;}
.y20a{bottom:575.699040pt;}
.y11c{bottom:577.891040pt;}
.y13a{bottom:578.038000pt;}
.y1b{bottom:578.951280pt;}
.yc6{bottom:588.450400pt;}
.yed{bottom:588.637440pt;}
.y1ae{bottom:591.167387pt;}
.y1d4{bottom:591.341067pt;}
.y64{bottom:591.638640pt;}
.y84{bottom:591.785600pt;}
.y209{bottom:593.294160pt;}
.y11b{bottom:595.406000pt;}
.y139{bottom:595.552960pt;}
.y1a{bottom:596.546400pt;}
.yc5{bottom:605.965360pt;}
.yec{bottom:606.152400pt;}
.y1ad{bottom:608.762507pt;}
.y1d3{bottom:608.936187pt;}
.y63{bottom:609.313920pt;}
.y83{bottom:609.460880pt;}
.y208{bottom:610.969440pt;}
.y11a{bottom:612.920960pt;}
.y138{bottom:613.067920pt;}
.y19{bottom:614.221680pt;}
.yc4{bottom:623.480320pt;}
.yeb{bottom:623.667360pt;}
.y1ac{bottom:626.437787pt;}
.y1d2{bottom:626.611467pt;}
.y62{bottom:626.989200pt;}
.y82{bottom:627.136160pt;}
.y207{bottom:628.644720pt;}
.y119{bottom:630.435920pt;}
.y137{bottom:630.582880pt;}
.y18{bottom:631.896960pt;}
.yc3{bottom:640.995280pt;}
.yea{bottom:641.182320pt;}
.y1ab{bottom:644.113067pt;}
.y1d1{bottom:644.286747pt;}
.y61{bottom:644.664480pt;}
.y81{bottom:644.811440pt;}
.y206{bottom:646.320000pt;}
.y118{bottom:647.950880pt;}
.y136{bottom:648.097840pt;}
.y17{bottom:649.572240pt;}
.yc2{bottom:658.510240pt;}
.ye9{bottom:658.697280pt;}
.y1aa{bottom:661.788347pt;}
.y1d0{bottom:661.962027pt;}
.y60{bottom:662.339760pt;}
.y80{bottom:662.486720pt;}
.y205{bottom:665.112720pt;}
.y117{bottom:665.465840pt;}
.y135{bottom:665.612800pt;}
.y16{bottom:667.247520pt;}
.yc1{bottom:676.025200pt;}
.ye8{bottom:676.212240pt;}
.y1a9{bottom:679.463627pt;}
.y1cf{bottom:679.637307pt;}
.y5f{bottom:680.015040pt;}
.y7f{bottom:680.162000pt;}
.y116{bottom:682.980800pt;}
.y134{bottom:683.127760pt;}
.y15{bottom:684.922800pt;}
.y204{bottom:688.080000pt;}
.yc0{bottom:693.540160pt;}
.ye7{bottom:693.727200pt;}
.y1a8{bottom:697.138907pt;}
.y1ce{bottom:697.312587pt;}
.y5e{bottom:697.610160pt;}
.y7e{bottom:697.757120pt;}
.y115{bottom:700.495760pt;}
.y133{bottom:700.642720pt;}
.y14{bottom:702.517920pt;}
.y203{bottom:710.240000pt;}
.ybf{bottom:711.055120pt;}
.ye6{bottom:711.242160pt;}
.y1a7{bottom:714.734027pt;}
.y1cd{bottom:714.907707pt;}
.y5d{bottom:715.285440pt;}
.y7d{bottom:715.432400pt;}
.y114{bottom:718.010720pt;}
.y132{bottom:718.157680pt;}
.y13{bottom:720.193200pt;}
.ybe{bottom:728.570080pt;}
.ye5{bottom:728.757120pt;}
.y202{bottom:729.680000pt;}
.y1a6{bottom:732.409307pt;}
.y1cc{bottom:732.582987pt;}
.y5c{bottom:732.960720pt;}
.y7c{bottom:733.107680pt;}
.y113{bottom:735.525680pt;}
.y131{bottom:735.672640pt;}
.y12{bottom:737.868480pt;}
.ybd{bottom:746.085040pt;}
.ye4{bottom:746.272080pt;}
.y201{bottom:749.120000pt;}
.y1a5{bottom:750.084587pt;}
.y1cb{bottom:750.258267pt;}
.y5b{bottom:750.636000pt;}
.y7b{bottom:750.782960pt;}
.y112{bottom:753.040640pt;}
.y130{bottom:753.187600pt;}
.y11{bottom:755.543760pt;}
.ybc{bottom:763.600000pt;}
.y1a4{bottom:767.759867pt;}
.y5a{bottom:768.311280pt;}
.y200{bottom:768.364720pt;}
.y7a{bottom:768.458240pt;}
.y111{bottom:770.555600pt;}
.y12f{bottom:770.702560pt;}
.y10{bottom:773.219040pt;}
.ybb{bottom:778.080000pt;}
.y19e{bottom:782.240000pt;}
.y59{bottom:785.986560pt;}
.y1ff{bottom:786.040000pt;}
.y79{bottom:786.133520pt;}
.y110{bottom:788.070560pt;}
.y12e{bottom:788.217520pt;}
.yf{bottom:790.894320pt;}
.yba{bottom:797.120000pt;}
.y198{bottom:803.539200pt;}
.y1a3{bottom:803.540160pt;}
.y19d{bottom:803.552560pt;}
.y58{bottom:803.581680pt;}
.y1fe{bottom:803.635120pt;}
.y78{bottom:803.728640pt;}
.y10f{bottom:805.585520pt;}
.y12d{bottom:805.732480pt;}
.ye{bottom:808.489440pt;}
.yb8{bottom:816.160000pt;}
.y197{bottom:821.054160pt;}
.y1a2{bottom:821.055120pt;}
.y19c{bottom:821.067520pt;}
.y57{bottom:821.256960pt;}
.y1fd{bottom:821.310400pt;}
.y77{bottom:821.403920pt;}
.y10e{bottom:823.100480pt;}
.y12c{bottom:823.247440pt;}
.yd{bottom:826.164720pt;}
.y193{bottom:829.845040pt;}
.yb5{bottom:829.994240pt;}
.yb6{bottom:835.280000pt;}
.y196{bottom:838.569120pt;}
.y1a1{bottom:838.570080pt;}
.y19b{bottom:838.582480pt;}
.y56{bottom:838.932240pt;}
.y1fc{bottom:838.985680pt;}
.y76{bottom:839.079200pt;}
.y10d{bottom:840.615440pt;}
.y12b{bottom:840.762400pt;}
.yc{bottom:843.840000pt;}
.y192{bottom:847.360000pt;}
.y195{bottom:856.084080pt;}
.y1a0{bottom:856.085040pt;}
.y19a{bottom:856.097440pt;}
.y55{bottom:856.607520pt;}
.y1fb{bottom:856.660960pt;}
.y75{bottom:856.754480pt;}
.y10c{bottom:858.130400pt;}
.yb4{bottom:858.157120pt;}
.y12a{bottom:858.277360pt;}
.yb{bottom:862.632720pt;}
.y194{bottom:873.599040pt;}
.y19f{bottom:873.600000pt;}
.y199{bottom:873.612400pt;}
.y54{bottom:874.282800pt;}
.y1fa{bottom:874.336240pt;}
.y74{bottom:874.429760pt;}
.y10b{bottom:875.645360pt;}
.yb3{bottom:875.672080pt;}
.y129{bottom:875.792320pt;}
.ya{bottom:885.600000pt;}
.y53{bottom:891.958080pt;}
.y1f9{bottom:892.011520pt;}
.y73{bottom:892.105040pt;}
.y10a{bottom:893.160320pt;}
.yb2{bottom:893.187040pt;}
.y128{bottom:893.307280pt;}
.y191{bottom:905.520000pt;}
.y9{bottom:907.756160pt;}
.y52{bottom:909.553200pt;}
.y1f8{bottom:909.606640pt;}
.y72{bottom:909.700160pt;}
.yaa{bottom:910.675280pt;}
.y127{bottom:910.822240pt;}
.y18a{bottom:918.121840pt;}
.y184{bottom:926.819200pt;}
.y190{bottom:926.872640pt;}
.y8{bottom:927.198080pt;}
.y51{bottom:927.228480pt;}
.y1f7{bottom:927.281920pt;}
.y71{bottom:927.375440pt;}
.ya9{bottom:928.190240pt;}
.yb1{bottom:928.230320pt;}
.y126{bottom:928.337200pt;}
.y189{bottom:935.636800pt;}
.y183{bottom:944.334160pt;}
.y18f{bottom:944.387600pt;}
.y50{bottom:944.903760pt;}
.y1f6{bottom:944.957200pt;}
.y70{bottom:945.050720pt;}
.ya8{bottom:945.705200pt;}
.yb0{bottom:945.745280pt;}
.y125{bottom:945.852160pt;}
.y7{bottom:946.640000pt;}
.y17f{bottom:953.125040pt;}
.y188{bottom:953.151760pt;}
.y182{bottom:961.849120pt;}
.y18e{bottom:961.902560pt;}
.y4f{bottom:962.579040pt;}
.y1f5{bottom:962.632480pt;}
.y6f{bottom:962.726000pt;}
.ya7{bottom:963.220160pt;}
.yaf{bottom:963.260240pt;}
.y124{bottom:963.367120pt;}
.y6{bottom:965.760000pt;}
.y17e{bottom:970.640000pt;}
.y187{bottom:970.666720pt;}
.y181{bottom:979.364080pt;}
.y18d{bottom:979.417520pt;}
.y4e{bottom:980.254320pt;}
.y1f4{bottom:980.307760pt;}
.y6e{bottom:980.401280pt;}
.ya6{bottom:980.735120pt;}
.yae{bottom:980.775200pt;}
.y123{bottom:980.882080pt;}
.y4{bottom:983.600000pt;}
.y186{bottom:988.181680pt;}
.y5{bottom:992.640000pt;}
.y180{bottom:996.879040pt;}
.y18c{bottom:996.932480pt;}
.y4d{bottom:997.929600pt;}
.y1f3{bottom:997.983040pt;}
.y6d{bottom:998.076560pt;}
.ya5{bottom:998.250080pt;}
.yad{bottom:998.290160pt;}
.y122{bottom:998.397040pt;}
.y185{bottom:1005.696640pt;}
.y18b{bottom:1014.447440pt;}
.y3{bottom:1015.524720pt;}
.y1f2{bottom:1015.578160pt;}
.y6c{bottom:1015.671680pt;}
.ya4{bottom:1015.765040pt;}
.yac{bottom:1015.805120pt;}
.y121{bottom:1015.912000pt;}
.y17d{bottom:1028.880000pt;}
.y2{bottom:1033.200000pt;}
.y1f1{bottom:1033.253440pt;}
.ya3{bottom:1033.280000pt;}
.yab{bottom:1033.320080pt;}
.y6b{bottom:1033.346960pt;}
.y120{bottom:1033.426960pt;}
.y1{bottom:1061.360000pt;}
.h11{height:17.520000pt;}
.hf{height:18.400000pt;}
.h10{height:18.401333pt;}
.h4{height:28.080000pt;}
.hc{height:31.992188pt;}
.h2{height:37.575000pt;}
.h8{height:40.186880pt;}
.he{height:40.660312pt;}
.h3{height:40.721280pt;}
.hb{height:43.343750pt;}
.h15{height:44.037120pt;}
.hd{height:44.437500pt;}
.ha{height:47.347840pt;}
.h9{height:47.857301pt;}
.h5{height:51.884160pt;}
.h16{height:52.218880pt;}
.h6{height:52.442432pt;}
.h7{height:62.185835pt;}
.h13{height:87.600000pt;}
.h12{height:122.640000pt;}
.h14{height:140.160000pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.720000pt;}
.w5{width:82.560000pt;}
.w6{width:90.078667pt;}
.w4{width:97.680000pt;}
.wb{width:141.438667pt;}
.wa{width:151.601333pt;}
.w9{width:172.400000pt;}
.w8{width:173.840000pt;}
.w3{width:271.680000pt;}
.w7{width:368.960000pt;}
.w0{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x41{left:10.480000pt;}
.x59{left:13.760000pt;}
.x45{left:15.760000pt;}
.x2d{left:18.240000pt;}
.x2b{left:20.160000pt;}
.x31{left:21.840000pt;}
.x2f{left:25.600000pt;}
.x29{left:27.920000pt;}
.x37{left:31.280000pt;}
.x32{left:34.320000pt;}
.x35{left:35.360000pt;}
.x4{left:37.520000pt;}
.x6e{left:38.560000pt;}
.x50{left:40.960000pt;}
.x39{left:41.920000pt;}
.x5f{left:48.160000pt;}
.x30{left:70.640000pt;}
.x1{left:75.600000pt;}
.x60{left:83.120000pt;}
.x3a{left:85.360000pt;}
.x68{left:87.600000pt;}
.x51{left:88.560000pt;}
.x4b{left:90.720000pt;}
.xa{left:94.556560pt;}
.x28{left:96.480000pt;}
.x3b{left:99.521600pt;}
.x61{left:108.797920pt;}
.x4c{left:113.685840pt;}
.x69{left:116.003360pt;}
.x7{left:118.871520pt;}
.x52{left:120.797680pt;}
.x2e{left:124.240000pt;}
.x1d{left:133.434400pt;}
.x20{left:141.178400pt;}
.x1f{left:146.298400pt;}
.x21{left:150.954400pt;}
.x71{left:154.884720pt;}
.x1e{left:155.994400pt;}
.x1c{left:159.706400pt;}
.xe{left:163.295040pt;}
.x24{left:167.759440pt;}
.x9{left:176.156320pt;}
.x33{left:178.418560pt;}
.x22{left:183.609467pt;}
.x8{left:201.120000pt;}
.x1b{left:208.633067pt;}
.x25{left:215.521440pt;}
.x26{left:227.999680pt;}
.x70{left:248.160000pt;}
.x34{left:250.720000pt;}
.x3e{left:257.757440pt;}
.x63{left:259.752560pt;}
.x62{left:260.968320pt;}
.x3d{left:263.114800pt;}
.x6a{left:264.005440pt;}
.x3c{left:264.958480pt;}
.x55{left:266.728960pt;}
.x53{left:267.918000pt;}
.x3f{left:268.872960pt;}
.x54{left:270.483120pt;}
.x6{left:276.720000pt;}
.x56{left:285.606640pt;}
.x3{left:289.920000pt;}
.x40{left:308.632320pt;}
.x6b{left:315.120800pt;}
.x64{left:319.431680pt;}
.x14{left:322.109200pt;}
.x5{left:341.840000pt;}
.x1a{left:351.389200pt;}
.x2{left:396.880000pt;}
.x72{left:406.312160pt;}
.xc{left:420.447040pt;}
.x36{left:423.760000pt;}
.x10{left:429.453200pt;}
.x42{left:431.597360pt;}
.x4d{left:433.844880pt;}
.x57{left:435.038240pt;}
.x4e{left:436.089360pt;}
.x6c{left:437.672080pt;}
.xb{left:439.404880pt;}
.x43{left:442.312080pt;}
.x65{left:443.278880pt;}
.x27{left:445.840000pt;}
.x44{left:448.310720pt;}
.x6d{left:456.482960pt;}
.x66{left:470.319520pt;}
.x15{left:473.373200pt;}
.x58{left:485.271840pt;}
.x12{left:487.997200pt;}
.xf{left:492.893200pt;}
.x16{left:497.773200pt;}
.x11{left:512.397200pt;}
.x13{left:522.157200pt;}
.x6f{left:530.320960pt;}
.x2a{left:544.160000pt;}
.x19{left:556.317200pt;}
.x18{left:570.957200pt;}
.x38{left:576.080000pt;}
.x5d{left:583.196240pt;}
.x5b{left:584.879600pt;}
.x47{left:586.238640pt;}
.x48{left:587.360880pt;}
.x5c{left:590.236960pt;}
.x5a{left:591.760000pt;}
.x46{left:593.600000pt;}
.x49{left:596.004800pt;}
.x4f{left:597.932400pt;}
.x67{left:600.566160pt;}
.x5e{left:603.677120pt;}
.x4a{left:614.401520pt;}
.x17{left:624.637200pt;}
.x2c{left:627.440000pt;}
.x23{left:655.279200pt;}
.xd{left:672.898880pt;}
}




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