
    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_2d6e8cbfe9bdca71e412c9ec.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.054000;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_cbc86d69f4c1b0ab70dce1bf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.070000;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_c2c0e52ad274fc989bccdcb2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.053000;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_2e459a132270d09961d6ec80.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958008;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);}
.v4{vertical-align:-19.800000px;}
.v3{vertical-align:-16.200600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.788000px;}
.v1{vertical-align:27.030600px;}
.v5{vertical-align:31.650000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:13.170000px;}
.ls4{letter-spacing:13.372200px;}
.ls1{letter-spacing:14.202600px;}
.ls5{letter-spacing:14.390400px;}
.ls2{letter-spacing:15.373200px;}
.ls0{letter-spacing:15.386400px;}
.ls9{letter-spacing:18.473400px;}
.lsb{letter-spacing:19.110000px;}
.ls6{letter-spacing:20.135400px;}
.ls8{letter-spacing:20.934600px;}
.ls7{letter-spacing:23.689800px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-17.094000px;}
.ws15{word-spacing:-15.540000px;}
.ws2{word-spacing:-13.986000px;}
.ws7{word-spacing:-13.500000px;}
.ws1d{word-spacing:-12.820500px;}
.ws0{word-spacing:-11.965800px;}
.ws46{word-spacing:-9.790200px;}
.ws1{word-spacing:0.000000px;}
.ws1b{word-spacing:0.432000px;}
.ws10{word-spacing:0.486000px;}
.ws2a{word-spacing:2.815200px;}
.ws25{word-spacing:2.857800px;}
.ws2b{word-spacing:2.969400px;}
.ws45{word-spacing:3.552000px;}
.ws35{word-spacing:3.555600px;}
.ws3d{word-spacing:3.791400px;}
.ws34{word-spacing:3.841800px;}
.ws16{word-spacing:3.842400px;}
.ws17{word-spacing:3.848400px;}
.ws29{word-spacing:3.849000px;}
.ws1e{word-spacing:3.966600px;}
.ws2f{word-spacing:4.169400px;}
.ws36{word-spacing:4.170000px;}
.ws3{word-spacing:4.257000px;}
.ws41{word-spacing:4.320000px;}
.wsb{word-spacing:4.351800px;}
.ws23{word-spacing:4.390200px;}
.wsc{word-spacing:4.783800px;}
.ws5{word-spacing:4.923000px;}
.ws6{word-spacing:4.924200px;}
.ws12{word-spacing:4.926000px;}
.ws2c{word-spacing:5.050800px;}
.ws3b{word-spacing:5.184600px;}
.ws14{word-spacing:5.202000px;}
.ws32{word-spacing:5.206800px;}
.ws1a{word-spacing:5.241600px;}
.ws1c{word-spacing:5.256600px;}
.wse{word-spacing:5.260800px;}
.ws8{word-spacing:5.280000px;}
.ws2d{word-spacing:5.338800px;}
.ws3c{word-spacing:5.598000px;}
.ws13{word-spacing:5.646600px;}
.ws38{word-spacing:5.704200px;}
.ws2e{word-spacing:5.746200px;}
.ws9{word-spacing:5.805600px;}
.ws11{word-spacing:6.061800px;}
.ws3f{word-spacing:6.228000px;}
.ws3e{word-spacing:6.651600px;}
.wsa{word-spacing:6.696000px;}
.ws31{word-spacing:7.023600px;}
.wsd{word-spacing:7.189200px;}
.ws1f{word-spacing:7.240200px;}
.ws39{word-spacing:8.058600px;}
.ws30{word-spacing:8.217600px;}
.ws33{word-spacing:8.230800px;}
.ws43{word-spacing:8.254800px;}
.ws3a{word-spacing:8.317800px;}
.ws22{word-spacing:8.322600px;}
.ws42{word-spacing:8.457600px;}
.ws44{word-spacing:8.721000px;}
.ws24{word-spacing:10.029000px;}
.ws37{word-spacing:10.395600px;}
.wsf{word-spacing:11.496600px;}
.ws21{word-spacing:11.719800px;}
.ws20{word-spacing:12.235200px;}
.ws40{word-spacing:13.572600px;}
.ws19{word-spacing:197.181600px;}
.ws26{word-spacing:203.342400px;}
.ws27{word-spacing:203.367000px;}
.ws28{word-spacing:250.022400px;}
.ws18{word-spacing:259.461600px;}
._11{margin-left:-11.700000px;}
._b{margin-left:-9.360000px;}
._8{margin-left:-7.326000px;}
._16{margin-left:-5.940000px;}
._a{margin-left:-4.800000px;}
._e{margin-left:-3.600000px;}
._1{margin-left:-2.178000px;}
._0{margin-left:-1.122000px;}
._6{width:1.122000px;}
._9{width:2.376000px;}
._3{width:3.432000px;}
._2{width:4.488000px;}
._7{width:6.468000px;}
._c{width:7.698000px;}
._5{width:9.174000px;}
._4{width:10.296000px;}
._f{width:11.484000px;}
._d{width:13.068000px;}
._12{width:14.520000px;}
._14{width:15.642000px;}
._15{width:17.136000px;}
._28{width:18.216000px;}
._31{width:19.338000px;}
._10{width:20.844000px;}
._17{width:22.134000px;}
._33{width:29.832000px;}
._18{width:31.501200px;}
._13{width:35.001600px;}
._32{width:42.372000px;}
._2a{width:84.662400px;}
._19{width:110.121000px;}
._29{width:165.168600px;}
._22{width:210.346800px;}
._1d{width:212.745600px;}
._2d{width:218.882400px;}
._1b{width:243.861600px;}
._1c{width:274.989600px;}
._1f{width:401.386800px;}
._1e{width:406.798800px;}
._21{width:414.886800px;}
._1a{width:423.580800px;}
._23{width:494.668800px;}
._24{width:549.178800px;}
._2c{width:564.174000px;}
._20{width:581.155200px;}
._30{width:681.209400px;}
._26{width:689.308800px;}
._2b{width:719.094000px;}
._25{width:722.548800px;}
._2e{width:758.640000px;}
._2f{width:806.417400px;}
._27{width:855.418800px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:37.800000px;}
.fs9{font-size:45.000000px;}
.fs3{font-size:46.200000px;}
.fs4{font-size:48.000000px;}
.fs7{font-size:49.500000px;}
.fs6{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y45{bottom:104.701050px;}
.y44{bottom:119.101050px;}
.y1bf{bottom:151.776600px;}
.y98{bottom:152.299650px;}
.y12f{bottom:152.302800px;}
.y24{bottom:152.303100px;}
.y1ad{bottom:152.304300px;}
.y223{bottom:152.306700px;}
.yf3{bottom:152.306850px;}
.y51{bottom:152.307750px;}
.y16f{bottom:152.344800px;}
.y11f{bottom:152.730000px;}
.y1e8{bottom:152.878350px;}
.y1bb{bottom:153.312750px;}
.y1d8{bottom:153.313800px;}
.ye0{bottom:153.313950px;}
.y225{bottom:153.314100px;}
.y73{bottom:153.314400px;}
.y209{bottom:153.323700px;}
.y152{bottom:153.327750px;}
.yb5{bottom:153.332100px;}
.y184{bottom:154.017600px;}
.y108{bottom:154.362750px;}
.yc4{bottom:154.590600px;}
.y24d{bottom:156.349800px;}
.y11e{bottom:166.974000px;}
.y1e7{bottom:167.122350px;}
.y222{bottom:168.290700px;}
.yf2{bottom:168.290850px;}
.y50{bottom:168.291750px;}
.y24c{bottom:168.294450px;}
.y16e{bottom:168.328800px;}
.y208{bottom:169.307700px;}
.y151{bottom:169.311750px;}
.yb4{bottom:169.316100px;}
.y97{bottom:172.333650px;}
.y247{bottom:172.336800px;}
.y12e{bottom:172.336950px;}
.y23{bottom:172.337100px;}
.y1ac{bottom:172.338150px;}
.y183{bottom:173.141100px;}
.y1ba{bottom:173.346600px;}
.ydf{bottom:173.347950px;}
.y72{bottom:173.348250px;}
.y107{bottom:173.486250px;}
.yc3{bottom:173.714100px;}
.y246{bottom:184.278000px;}
.y24b{bottom:184.278450px;}
.y22{bottom:184.285350px;}
.y96{bottom:184.285500px;}
.y1ab{bottom:184.308150px;}
.y16d{bottom:184.312800px;}
.y1b9{bottom:185.287950px;}
.yde{bottom:185.289000px;}
.y207{bottom:185.291700px;}
.y150{bottom:185.295750px;}
.yb3{bottom:185.300100px;}
.y221{bottom:188.324700px;}
.yf1{bottom:188.324850px;}
.y4f{bottom:188.325900px;}
.y182{bottom:192.264600px;}
.y106{bottom:192.609750px;}
.yc2{bottom:192.837600px;}
.yf0{bottom:200.265900px;}
.y21{bottom:200.269350px;}
.y95{bottom:200.269500px;}
.y4e{bottom:200.284950px;}
.y1aa{bottom:200.292150px;}
.y16c{bottom:200.296800px;}
.y206{bottom:201.275700px;}
.y14f{bottom:201.279750px;}
.yb2{bottom:201.284100px;}
.y71{bottom:203.389950px;}
.y245{bottom:204.312000px;}
.y24a{bottom:204.312300px;}
.y1b8{bottom:205.321950px;}
.ydd{bottom:205.323000px;}
.y181{bottom:211.388100px;}
.y105{bottom:211.733250px;}
.yc1{bottom:211.961100px;}
.y244{bottom:216.253050px;}
.y20{bottom:216.253350px;}
.y94{bottom:216.253500px;}
.y249{bottom:216.253650px;}
.y4d{bottom:216.268950px;}
.y1a9{bottom:216.276150px;}
.y16b{bottom:216.280800px;}
.y14e{bottom:217.263750px;}
.yb1{bottom:217.268100px;}
.y220{bottom:220.299900px;}
.yef{bottom:220.300050px;}
.y1b7{bottom:221.309700px;}
.y205{bottom:221.309850px;}
.y70{bottom:222.513450px;}
.y180{bottom:230.511600px;}
.y104{bottom:230.856750px;}
.y224{bottom:231.056100px;}
.yc0{bottom:231.084600px;}
.y93{bottom:232.237500px;}
.y4c{bottom:232.252950px;}
.y1a8{bottom:232.260150px;}
.y16a{bottom:232.264800px;}
.yb0{bottom:233.252100px;}
.y204{bottom:233.254500px;}
.y1b6{bottom:233.261400px;}
.y243{bottom:236.287050px;}
.y1f{bottom:236.287350px;}
.y248{bottom:236.287650px;}
.y14d{bottom:237.297900px;}
.ydc{bottom:241.642950px;}
.y6f{bottom:241.645950px;}
.y4b{bottom:248.236950px;}
.y1e{bottom:248.239200px;}
.y1a7{bottom:248.244150px;}
.y169{bottom:248.248800px;}
.y203{bottom:249.238500px;}
.y14c{bottom:249.242550px;}
.y1b5{bottom:249.245400px;}
.y17f{bottom:249.635100px;}
.y103{bottom:249.980250px;}
.y12d{bottom:250.179600px;}
.ybf{bottom:250.208100px;}
.y92{bottom:252.271650px;}
.yaf{bottom:253.286100px;}
.ydb{bottom:260.766450px;}
.y6e{bottom:260.769450px;}
.y91{bottom:264.219900px;}
.y4a{bottom:264.220950px;}
.y1d{bottom:264.223200px;}
.y1a6{bottom:264.228150px;}
.y168{bottom:264.232800px;}
.yee{bottom:265.021650px;}
.y14b{bottom:265.226550px;}
.y1b4{bottom:265.229400px;}
.yae{bottom:265.252350px;}
.y17e{bottom:268.758600px;}
.y102{bottom:269.103750px;}
.y202{bottom:269.272500px;}
.y21f{bottom:269.286600px;}
.y12c{bottom:269.303100px;}
.y1d7{bottom:269.321100px;}
.ybe{bottom:269.331600px;}
.yda{bottom:279.889950px;}
.y6d{bottom:279.892950px;}
.y90{bottom:280.203900px;}
.y49{bottom:280.204950px;}
.y1c{bottom:280.207200px;}
.y1a5{bottom:280.212150px;}
.y167{bottom:280.216800px;}
.y1b3{bottom:281.213400px;}
.y201{bottom:281.213700px;}
.yad{bottom:281.236350px;}
.yed{bottom:284.145150px;}
.y14a{bottom:285.260550px;}
.y242{bottom:286.990950px;}
.y17d{bottom:287.882100px;}
.y101{bottom:288.227250px;}
.y21e{bottom:288.410100px;}
.y12b{bottom:288.426600px;}
.y1d6{bottom:288.444600px;}
.ybd{bottom:288.455100px;}
.y8f{bottom:296.187900px;}
.y1b{bottom:296.191200px;}
.y1a4{bottom:296.196150px;}
.y166{bottom:296.200800px;}
.yac{bottom:297.220350px;}
.yd9{bottom:299.013450px;}
.y6c{bottom:299.016450px;}
.y48{bottom:300.238950px;}
.y1b2{bottom:301.247400px;}
.y200{bottom:301.247700px;}
.yec{bottom:303.268650px;}
.y241{bottom:306.114450px;}
.y17c{bottom:307.005600px;}
.y100{bottom:307.350750px;}
.y21d{bottom:307.533600px;}
.y12a{bottom:307.550100px;}
.y1d5{bottom:307.568100px;}
.ybc{bottom:307.578600px;}
.y47{bottom:312.180150px;}
.y165{bottom:312.184800px;}
.y1ff{bottom:313.188750px;}
.yab{bottom:313.204350px;}
.y8e{bottom:316.221900px;}
.y1a{bottom:316.225350px;}
.y6b{bottom:318.139950px;}
.yd8{bottom:318.162450px;}
.yeb{bottom:322.392150px;}
.y240{bottom:325.237950px;}
.y17b{bottom:326.129100px;}
.yff{bottom:326.474250px;}
.y129{bottom:326.673600px;}
.y1d4{bottom:326.691600px;}
.ybb{bottom:326.702100px;}
.y8d{bottom:328.163100px;}
.y164{bottom:328.168800px;}
.yaa{bottom:329.188350px;}
.y46{bottom:332.214150px;}
.y1fe{bottom:333.222900px;}
.y6a{bottom:337.263450px;}
.yd7{bottom:337.285950px;}
.yea{bottom:341.515650px;}
.y1a3{bottom:344.155200px;}
.y149{bottom:344.329950px;}
.y23f{bottom:344.361450px;}
.ya9{bottom:345.172350px;}
.y17a{bottom:345.252600px;}
.yfe{bottom:345.597750px;}
.y21c{bottom:345.791100px;}
.y128{bottom:345.797100px;}
.y1d3{bottom:345.815100px;}
.yba{bottom:345.825600px;}
.y8c{bottom:348.197100px;}
.y163{bottom:348.202950px;}
.y13{bottom:349.380450px;}
.y69{bottom:356.386950px;}
.yd6{bottom:356.409450px;}
.y8b{bottom:360.138150px;}
.y162{bottom:360.144000px;}
.ye9{bottom:360.639150px;}
.ya8{bottom:361.156350px;}
.y148{bottom:363.453450px;}
.y23e{bottom:363.484950px;}
.y1a2{bottom:364.189350px;}
.y179{bottom:364.376100px;}
.yfd{bottom:364.721250px;}
.y127{bottom:364.920600px;}
.y41{bottom:364.925100px;}
.y1d2{bottom:364.938600px;}
.yb9{bottom:364.949100px;}
.y12{bottom:368.503950px;}
.yd5{bottom:375.532950px;}
.ya7{bottom:377.140350px;}
.ye8{bottom:379.762650px;}
.y8a{bottom:380.172150px;}
.y161{bottom:380.178150px;}
.y147{bottom:382.576950px;}
.y23d{bottom:382.608450px;}
.y178{bottom:383.499600px;}
.yfc{bottom:383.844750px;}
.y1be{bottom:383.935650px;}
.y1fd{bottom:384.038100px;}
.y126{bottom:384.044100px;}
.y40{bottom:384.048600px;}
.y1d1{bottom:384.062100px;}
.yb8{bottom:384.072600px;}
.y11{bottom:387.627450px;}
.y160{bottom:392.126400px;}
.y89{bottom:392.134800px;}
.y68{bottom:392.553600px;}
.yd4{bottom:394.656450px;}
.ya6{bottom:397.174350px;}
.ye7{bottom:398.886150px;}
.y146{bottom:401.700450px;}
.y1bd{bottom:401.710650px;}
.y23c{bottom:401.731950px;}
.y177{bottom:402.623100px;}
.yfb{bottom:402.968250px;}
.y1fc{bottom:403.161600px;}
.y125{bottom:403.167600px;}
.y3f{bottom:403.172100px;}
.y1d0{bottom:403.185600px;}
.yb7{bottom:403.196100px;}
.y10{bottom:406.750950px;}
.y15f{bottom:408.110400px;}
.y88{bottom:408.118800px;}
.ya5{bottom:409.115550px;}
.yd3{bottom:413.779950px;}
.ye6{bottom:418.009650px;}
.y145{bottom:420.823950px;}
.y23b{bottom:420.855450px;}
.y176{bottom:421.746600px;}
.yfa{bottom:422.091750px;}
.y1fb{bottom:422.285100px;}
.y124{bottom:422.291100px;}
.y3e{bottom:422.295600px;}
.y1cf{bottom:422.309100px;}
.yb6{bottom:422.319600px;}
.y15e{bottom:424.094400px;}
.y87{bottom:424.102800px;}
.yf{bottom:425.874450px;}
.y1bc{bottom:427.990650px;}
.ya4{bottom:429.149550px;}
.yd2{bottom:432.903450px;}
.ye5{bottom:437.133150px;}
.y144{bottom:439.947450px;}
.y23a{bottom:439.978950px;}
.y86{bottom:440.086800px;}
.y175{bottom:440.870100px;}
.yf9{bottom:441.215250px;}
.y123{bottom:441.414600px;}
.y1a1{bottom:441.417600px;}
.y3d{bottom:441.419100px;}
.y1ce{bottom:441.432600px;}
.y1fa{bottom:441.435600px;}
.y21b{bottom:441.440100px;}
.y67{bottom:441.443100px;}
.y15d{bottom:444.128400px;}
.ye{bottom:444.997950px;}
.yd1{bottom:452.026950px;}
.y15c{bottom:456.069450px;}
.y85{bottom:456.070800px;}
.ye4{bottom:456.256650px;}
.y239{bottom:459.102450px;}
.y174{bottom:459.993600px;}
.yf8{bottom:460.338750px;}
.y122{bottom:460.538100px;}
.y1a0{bottom:460.541100px;}
.y3c{bottom:460.542600px;}
.ya3{bottom:460.548600px;}
.y1cd{bottom:460.556100px;}
.y1f9{bottom:460.559100px;}
.y21a{bottom:460.563600px;}
.y66{bottom:460.566600px;}
.yd{bottom:464.121450px;}
.yd0{bottom:471.150450px;}
.y84{bottom:472.054800px;}
.ye3{bottom:475.380150px;}
.y15b{bottom:476.103600px;}
.y143{bottom:478.203075px;}
.y238{bottom:478.225950px;}
.y173{bottom:479.117100px;}
.y121{bottom:479.661600px;}
.y19f{bottom:479.664600px;}
.y3b{bottom:479.666100px;}
.ya2{bottom:479.672100px;}
.y1cc{bottom:479.679600px;}
.y1f8{bottom:479.682600px;}
.y219{bottom:479.687100px;}
.y65{bottom:479.690100px;}
.yc{bottom:483.244950px;}
.y83{bottom:488.038800px;}
.ycf{bottom:490.273950px;}
.ye2{bottom:494.505150px;}
.y237{bottom:497.349450px;}
.y142{bottom:497.352450px;}
.y172{bottom:498.240600px;}
.y120{bottom:498.785100px;}
.y19e{bottom:498.788100px;}
.y3a{bottom:498.789600px;}
.ya1{bottom:498.795600px;}
.y1cb{bottom:498.803100px;}
.y1f7{bottom:498.806100px;}
.y218{bottom:498.810600px;}
.y64{bottom:498.813600px;}
.yb{bottom:502.368450px;}
.y82{bottom:508.072800px;}
.yce{bottom:509.397450px;}
.y10d{bottom:511.270950px;}
.ye1{bottom:513.628650px;}
.y236{bottom:516.472950px;}
.y171{bottom:517.364100px;}
.y19d{bottom:517.911600px;}
.y39{bottom:517.913100px;}
.ya0{bottom:517.919100px;}
.y15a{bottom:517.922100px;}
.y1ca{bottom:517.926600px;}
.y1f6{bottom:517.929600px;}
.y217{bottom:517.934100px;}
.y63{bottom:517.937100px;}
.y81{bottom:520.021200px;}
.ya{bottom:521.491950px;}
.y10c{bottom:525.514950px;}
.ycd{bottom:528.520950px;}
.y235{bottom:535.596450px;}
.y80{bottom:536.005200px;}
.y170{bottom:536.487600px;}
.y19c{bottom:537.035100px;}
.y38{bottom:537.036600px;}
.y9f{bottom:537.042600px;}
.y159{bottom:537.045600px;}
.y1c9{bottom:537.050100px;}
.y1f5{bottom:537.053100px;}
.y216{bottom:537.057600px;}
.y62{bottom:537.060600px;}
.y9{bottom:540.615450px;}
.ycc{bottom:547.644450px;}
.y7f{bottom:551.989200px;}
.y234{bottom:554.719950px;}
.y141{bottom:554.722950px;}
.y1b1{bottom:556.158600px;}
.y37{bottom:556.160100px;}
.y9e{bottom:556.166100px;}
.y158{bottom:556.169100px;}
.y1c8{bottom:556.173600px;}
.y1f4{bottom:556.176600px;}
.y215{bottom:556.181100px;}
.y61{bottom:556.184100px;}
.y11a{bottom:556.285950px;}
.y8{bottom:559.743450px;}
.yf7{bottom:560.433150px;}
.ycb{bottom:566.767950px;}
.y7e{bottom:572.023200px;}
.y233{bottom:573.843450px;}
.y140{bottom:573.846450px;}
.y9d{bottom:575.289600px;}
.y157{bottom:575.292600px;}
.y1c7{bottom:575.297100px;}
.y1f3{bottom:575.300100px;}
.y36{bottom:575.301600px;}
.y214{bottom:575.304600px;}
.y60{bottom:575.307600px;}
.y119{bottom:578.295750px;}
.y7{bottom:578.866950px;}
.y1e6{bottom:578.915850px;}
.yca{bottom:585.891450px;}
.y232{bottom:592.966950px;}
.y13f{bottom:592.969950px;}
.y9c{bottom:594.413100px;}
.y156{bottom:594.416100px;}
.y1b0{bottom:594.417600px;}
.y1c6{bottom:594.420600px;}
.y1f2{bottom:594.423600px;}
.y35{bottom:594.425100px;}
.y213{bottom:594.428100px;}
.y5f{bottom:594.431100px;}
.y194{bottom:594.463500px;}
.y1e5{bottom:596.690850px;}
.y6{bottom:597.990450px;}
.y118{bottom:599.555700px;}
.yc9{bottom:605.014950px;}
.y231{bottom:612.090450px;}
.y13e{bottom:612.093450px;}
.y7d{bottom:613.536600px;}
.y155{bottom:613.539600px;}
.y1c5{bottom:613.544100px;}
.y1f1{bottom:613.547100px;}
.y34{bottom:613.548600px;}
.y212{bottom:613.551600px;}
.y5e{bottom:613.554600px;}
.y5{bottom:617.116950px;}
.y117{bottom:620.815500px;}
.y1e4{bottom:622.970850px;}
.yc8{bottom:624.138450px;}
.y190{bottom:626.121750px;}
.y230{bottom:631.213950px;}
.y13d{bottom:631.216950px;}
.y7c{bottom:632.660100px;}
.y154{bottom:632.663100px;}
.y1c4{bottom:632.667600px;}
.y1f0{bottom:632.670600px;}
.y33{bottom:632.672100px;}
.y211{bottom:632.675100px;}
.y5d{bottom:632.678100px;}
.y4{bottom:636.240450px;}
.y18d{bottom:640.620150px;}
.y116{bottom:642.075450px;}
.yc7{bottom:643.261950px;}
.y18f{bottom:649.507650px;}
.y22f{bottom:650.337450px;}
.y13c{bottom:650.340450px;}
.y9b{bottom:651.783600px;}
.y7b{bottom:651.786600px;}
.y1af{bottom:651.788100px;}
.y1c3{bottom:651.791100px;}
.y1ef{bottom:651.794100px;}
.y32{bottom:651.795600px;}
.y210{bottom:651.798600px;}
.y19b{bottom:651.800100px;}
.y5c{bottom:651.801600px;}
.y3{bottom:655.363950px;}
.y18c{bottom:658.395150px;}
.y115{bottom:663.335250px;}
.y22e{bottom:669.460950px;}
.y13b{bottom:669.463950px;}
.y7a{bottom:670.910100px;}
.y1ae{bottom:670.911600px;}
.y1c2{bottom:670.914600px;}
.y1ee{bottom:670.917600px;}
.y31{bottom:670.919100px;}
.y20f{bottom:670.922100px;}
.y19a{bottom:670.923600px;}
.y5b{bottom:670.925100px;}
.y18e{bottom:672.893400px;}
.yc6{bottom:679.397100px;}
.y114{bottom:685.186500px;}
.y22d{bottom:688.584450px;}
.y13a{bottom:688.587450px;}
.y1e3{bottom:689.088600px;}
.y153{bottom:690.035100px;}
.y79{bottom:690.036600px;}
.y9a{bottom:690.038100px;}
.y1ed{bottom:690.041100px;}
.y30{bottom:690.042600px;}
.y20e{bottom:690.045600px;}
.y199{bottom:690.047100px;}
.y5a{bottom:690.048600px;}
.y18b{bottom:697.029300px;}
.y113{bottom:701.011500px;}
.y22c{bottom:707.707950px;}
.y139{bottom:707.710950px;}
.y1e2{bottom:708.212100px;}
.y78{bottom:709.160100px;}
.y1c1{bottom:709.161600px;}
.y1ec{bottom:709.164600px;}
.y2f{bottom:709.166100px;}
.y20d{bottom:709.169100px;}
.y198{bottom:709.170600px;}
.y59{bottom:709.172100px;}
.y2{bottom:712.732050px;}
.y18a{bottom:720.415050px;}
.y112{bottom:722.862750px;}
.y187{bottom:723.220500px;}
.y22b{bottom:726.831450px;}
.y138{bottom:726.834450px;}
.y1e1{bottom:727.335600px;}
.y1c0{bottom:728.285100px;}
.yc5{bottom:728.286600px;}
.y77{bottom:728.288100px;}
.y2e{bottom:728.289600px;}
.y20c{bottom:728.292600px;}
.y197{bottom:728.294100px;}
.y58{bottom:728.295600px;}
.y1{bottom:736.739550px;}
.y186{bottom:740.995500px;}
.y189{bottom:743.800800px;}
.y111{bottom:744.122700px;}
.y22a{bottom:745.954950px;}
.y137{bottom:745.957950px;}
.y1e0{bottom:746.459100px;}
.y99{bottom:747.410100px;}
.y76{bottom:747.411600px;}
.y2d{bottom:747.413100px;}
.y20b{bottom:747.416100px;}
.y196{bottom:747.417600px;}
.y57{bottom:747.419100px;}
.y229{bottom:765.078450px;}
.y136{bottom:765.081450px;}
.y110{bottom:765.382350px;}
.y1df{bottom:765.582600px;}
.y75{bottom:766.535100px;}
.y2c{bottom:766.536600px;}
.y20a{bottom:766.539600px;}
.y195{bottom:766.541100px;}
.y56{bottom:766.542600px;}
.y188{bottom:767.186700px;}
.y228{bottom:784.201950px;}
.y135{bottom:784.204950px;}
.y1de{bottom:784.706100px;}
.y2b{bottom:785.660100px;}
.y1eb{bottom:785.663100px;}
.y74{bottom:785.664600px;}
.y55{bottom:785.666100px;}
.y10f{bottom:788.733750px;}
.y185{bottom:797.387550px;}
.y227{bottom:803.325450px;}
.y134{bottom:803.328450px;}
.y1dd{bottom:803.829600px;}
.y10e{bottom:804.558750px;}
.y1ea{bottom:804.786600px;}
.y2a{bottom:804.788100px;}
.y54{bottom:804.789600px;}
.y19{bottom:812.455350px;}
.y226{bottom:822.448950px;}
.y133{bottom:822.451950px;}
.y1dc{bottom:822.953100px;}
.y1e9{bottom:823.910100px;}
.y29{bottom:823.911600px;}
.y53{bottom:823.913100px;}
.y18{bottom:826.855350px;}
.yf6{bottom:835.789200px;}
.y10b{bottom:836.781150px;}
.y193{bottom:836.828850px;}
.y11d{bottom:836.896200px;}
.y17{bottom:841.255350px;}
.y132{bottom:841.575450px;}
.y1db{bottom:842.076600px;}
.y28{bottom:843.035100px;}
.y52{bottom:843.036600px;}
.yf5{bottom:853.564200px;}
.y10a{bottom:854.556150px;}
.y192{bottom:854.603850px;}
.y11c{bottom:854.671200px;}
.y16{bottom:855.655350px;}
.y131{bottom:860.698950px;}
.y1da{bottom:861.200100px;}
.y27{bottom:862.160100px;}
.y15{bottom:870.055350px;}
.y130{bottom:879.822450px;}
.yf4{bottom:879.844200px;}
.y1d9{bottom:880.323600px;}
.y109{bottom:880.836150px;}
.y191{bottom:880.883850px;}
.y11b{bottom:880.951200px;}
.y26{bottom:881.283600px;}
.y14{bottom:884.455350px;}
.y42{bottom:926.974950px;}
.y43{bottom:927.193350px;}
.y25{bottom:1049.491350px;}
.h8{height:30.391200px;}
.ha{height:30.807000px;}
.hb{height:35.367188px;}
.h7{height:39.120000px;}
.h19{height:40.342500px;}
.h1b{height:42.822000px;}
.h9{height:44.010000px;}
.hf{height:44.883600px;}
.h13{height:48.240000px;}
.h12{height:48.900000px;}
.h23{height:53.064000px;}
.h4{height:53.790000px;}
.h22{height:57.273000px;}
.h21{height:57.279600px;}
.h20{height:57.327000px;}
.h16{height:57.339000px;}
.h1f{height:57.345000px;}
.h11{height:57.351000px;}
.h17{height:57.369000px;}
.hd{height:57.381000px;}
.h1d{height:57.387000px;}
.h1e{height:57.405000px;}
.he{height:57.417000px;}
.h1c{height:57.423000px;}
.h1a{height:57.423600px;}
.h10{height:57.429000px;}
.h6{height:57.435000px;}
.h5{height:57.441000px;}
.hc{height:57.447000px;}
.h18{height:57.453000px;}
.h2{height:72.360000px;}
.h3{height:77.682600px;}
.h14{height:79.890000px;}
.h15{height:80.550000px;}
.h0{height:1020.471750px;}
.h1{height:1020.750000px;}
.w0{width:722.834250px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xa{left:4.499550px;}
.x3{left:85.046100px;}
.x1a{left:93.541950px;}
.x1d{left:102.096750px;}
.x1{left:106.200450px;}
.x13{left:107.494200px;}
.x20{left:109.333350px;}
.x21{left:111.058350px;}
.xb{left:127.557150px;}
.xd{left:131.312550px;}
.xc{left:136.062150px;}
.x2{left:145.147950px;}
.x23{left:149.649750px;}
.x15{left:156.793350px;}
.x1b{left:162.332700px;}
.x1c{left:191.867700px;}
.x11{left:229.325550px;}
.x12{left:243.005550px;}
.x1f{left:247.980300px;}
.x1e{left:270.217500px;}
.xe{left:273.163350px;}
.xf{left:283.015350px;}
.x16{left:313.044300px;}
.x14{left:320.650200px;}
.x17{left:324.159300px;}
.x26{left:338.217450px;}
.x22{left:344.938200px;}
.x10{left:346.134150px;}
.x19{left:389.431500px;}
.x24{left:410.800950px;}
.x18{left:413.806500px;}
.x25{left:458.287950px;}
.x9{left:469.471050px;}
.x5{left:474.991050px;}
.x4{left:511.675050px;}
.x8{left:526.843050px;}
.x6{left:528.763050px;}
.x7{left:532.171050px;}
@media print{
.v4{vertical-align:-17.600000pt;}
.v3{vertical-align:-14.400533pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.589333pt;}
.v1{vertical-align:24.027200pt;}
.v5{vertical-align:28.133333pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:11.706667pt;}
.ls4{letter-spacing:11.886400pt;}
.ls1{letter-spacing:12.624533pt;}
.ls5{letter-spacing:12.791467pt;}
.ls2{letter-spacing:13.665067pt;}
.ls0{letter-spacing:13.676800pt;}
.ls9{letter-spacing:16.420800pt;}
.lsb{letter-spacing:16.986667pt;}
.ls6{letter-spacing:17.898133pt;}
.ls8{letter-spacing:18.608533pt;}
.ls7{letter-spacing:21.057600pt;}
.ws4{word-spacing:-15.194667pt;}
.ws15{word-spacing:-13.813333pt;}
.ws2{word-spacing:-12.432000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws1d{word-spacing:-11.396000pt;}
.ws0{word-spacing:-10.636267pt;}
.ws46{word-spacing:-8.702400pt;}
.ws1{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.384000pt;}
.ws10{word-spacing:0.432000pt;}
.ws2a{word-spacing:2.502400pt;}
.ws25{word-spacing:2.540267pt;}
.ws2b{word-spacing:2.639467pt;}
.ws45{word-spacing:3.157333pt;}
.ws35{word-spacing:3.160533pt;}
.ws3d{word-spacing:3.370133pt;}
.ws34{word-spacing:3.414933pt;}
.ws16{word-spacing:3.415467pt;}
.ws17{word-spacing:3.420800pt;}
.ws29{word-spacing:3.421333pt;}
.ws1e{word-spacing:3.525867pt;}
.ws2f{word-spacing:3.706133pt;}
.ws36{word-spacing:3.706667pt;}
.ws3{word-spacing:3.784000pt;}
.ws41{word-spacing:3.840000pt;}
.wsb{word-spacing:3.868267pt;}
.ws23{word-spacing:3.902400pt;}
.wsc{word-spacing:4.252267pt;}
.ws5{word-spacing:4.376000pt;}
.ws6{word-spacing:4.377067pt;}
.ws12{word-spacing:4.378667pt;}
.ws2c{word-spacing:4.489600pt;}
.ws3b{word-spacing:4.608533pt;}
.ws14{word-spacing:4.624000pt;}
.ws32{word-spacing:4.628267pt;}
.ws1a{word-spacing:4.659200pt;}
.ws1c{word-spacing:4.672533pt;}
.wse{word-spacing:4.676267pt;}
.ws8{word-spacing:4.693333pt;}
.ws2d{word-spacing:4.745600pt;}
.ws3c{word-spacing:4.976000pt;}
.ws13{word-spacing:5.019200pt;}
.ws38{word-spacing:5.070400pt;}
.ws2e{word-spacing:5.107733pt;}
.ws9{word-spacing:5.160533pt;}
.ws11{word-spacing:5.388267pt;}
.ws3f{word-spacing:5.536000pt;}
.ws3e{word-spacing:5.912533pt;}
.wsa{word-spacing:5.952000pt;}
.ws31{word-spacing:6.243200pt;}
.wsd{word-spacing:6.390400pt;}
.ws1f{word-spacing:6.435733pt;}
.ws39{word-spacing:7.163200pt;}
.ws30{word-spacing:7.304533pt;}
.ws33{word-spacing:7.316267pt;}
.ws43{word-spacing:7.337600pt;}
.ws3a{word-spacing:7.393600pt;}
.ws22{word-spacing:7.397867pt;}
.ws42{word-spacing:7.517867pt;}
.ws44{word-spacing:7.752000pt;}
.ws24{word-spacing:8.914667pt;}
.ws37{word-spacing:9.240533pt;}
.wsf{word-spacing:10.219200pt;}
.ws21{word-spacing:10.417600pt;}
.ws20{word-spacing:10.875733pt;}
.ws40{word-spacing:12.064533pt;}
.ws19{word-spacing:175.272533pt;}
.ws26{word-spacing:180.748800pt;}
.ws27{word-spacing:180.770667pt;}
.ws28{word-spacing:222.242133pt;}
.ws18{word-spacing:230.632533pt;}
._11{margin-left:-10.400000pt;}
._b{margin-left:-8.320000pt;}
._8{margin-left:-6.512000pt;}
._16{margin-left:-5.280000pt;}
._a{margin-left:-4.266667pt;}
._e{margin-left:-3.200000pt;}
._1{margin-left:-1.936000pt;}
._0{margin-left:-0.997333pt;}
._6{width:0.997333pt;}
._9{width:2.112000pt;}
._3{width:3.050667pt;}
._2{width:3.989333pt;}
._7{width:5.749333pt;}
._c{width:6.842667pt;}
._5{width:8.154667pt;}
._4{width:9.152000pt;}
._f{width:10.208000pt;}
._d{width:11.616000pt;}
._12{width:12.906667pt;}
._14{width:13.904000pt;}
._15{width:15.232000pt;}
._28{width:16.192000pt;}
._31{width:17.189333pt;}
._10{width:18.528000pt;}
._17{width:19.674667pt;}
._33{width:26.517333pt;}
._18{width:28.001067pt;}
._13{width:31.112533pt;}
._32{width:37.664000pt;}
._2a{width:75.255467pt;}
._19{width:97.885333pt;}
._29{width:146.816533pt;}
._22{width:186.974933pt;}
._1d{width:189.107200pt;}
._2d{width:194.562133pt;}
._1b{width:216.765867pt;}
._1c{width:244.435200pt;}
._1f{width:356.788267pt;}
._1e{width:361.598933pt;}
._21{width:368.788267pt;}
._1a{width:376.516267pt;}
._23{width:439.705600pt;}
._24{width:488.158933pt;}
._2c{width:501.488000pt;}
._20{width:516.582400pt;}
._30{width:605.519467pt;}
._26{width:612.718933pt;}
._2b{width:639.194667pt;}
._25{width:642.265600pt;}
._2e{width:674.346667pt;}
._2f{width:716.815467pt;}
._27{width:760.372267pt;}
.fs5{font-size:33.600000pt;}
.fs9{font-size:40.000000pt;}
.fs3{font-size:41.066667pt;}
.fs4{font-size:42.666667pt;}
.fs7{font-size:44.000000pt;}
.fs6{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:93.067600pt;}
.y44{bottom:105.867600pt;}
.y1bf{bottom:134.912533pt;}
.y98{bottom:135.377467pt;}
.y12f{bottom:135.380267pt;}
.y24{bottom:135.380533pt;}
.y1ad{bottom:135.381600pt;}
.y223{bottom:135.383733pt;}
.yf3{bottom:135.383867pt;}
.y51{bottom:135.384667pt;}
.y16f{bottom:135.417600pt;}
.y11f{bottom:135.760000pt;}
.y1e8{bottom:135.891867pt;}
.y1bb{bottom:136.278000pt;}
.y1d8{bottom:136.278933pt;}
.ye0{bottom:136.279067pt;}
.y225{bottom:136.279200pt;}
.y73{bottom:136.279467pt;}
.y209{bottom:136.287733pt;}
.y152{bottom:136.291333pt;}
.yb5{bottom:136.295200pt;}
.y184{bottom:136.904533pt;}
.y108{bottom:137.211333pt;}
.yc4{bottom:137.413867pt;}
.y24d{bottom:138.977600pt;}
.y11e{bottom:148.421333pt;}
.y1e7{bottom:148.553200pt;}
.y222{bottom:149.591733pt;}
.yf2{bottom:149.591867pt;}
.y50{bottom:149.592667pt;}
.y24c{bottom:149.595067pt;}
.y16e{bottom:149.625600pt;}
.y208{bottom:150.495733pt;}
.y151{bottom:150.499333pt;}
.yb4{bottom:150.503200pt;}
.y97{bottom:153.185467pt;}
.y247{bottom:153.188267pt;}
.y12e{bottom:153.188400pt;}
.y23{bottom:153.188533pt;}
.y1ac{bottom:153.189467pt;}
.y183{bottom:153.903200pt;}
.y1ba{bottom:154.085867pt;}
.ydf{bottom:154.087067pt;}
.y72{bottom:154.087333pt;}
.y107{bottom:154.210000pt;}
.yc3{bottom:154.412533pt;}
.y246{bottom:163.802667pt;}
.y24b{bottom:163.803067pt;}
.y22{bottom:163.809200pt;}
.y96{bottom:163.809333pt;}
.y1ab{bottom:163.829467pt;}
.y16d{bottom:163.833600pt;}
.y1b9{bottom:164.700400pt;}
.yde{bottom:164.701333pt;}
.y207{bottom:164.703733pt;}
.y150{bottom:164.707333pt;}
.yb3{bottom:164.711200pt;}
.y221{bottom:167.399733pt;}
.yf1{bottom:167.399867pt;}
.y4f{bottom:167.400800pt;}
.y182{bottom:170.901867pt;}
.y106{bottom:171.208667pt;}
.yc2{bottom:171.411200pt;}
.yf0{bottom:178.014133pt;}
.y21{bottom:178.017200pt;}
.y95{bottom:178.017333pt;}
.y4e{bottom:178.031067pt;}
.y1aa{bottom:178.037467pt;}
.y16c{bottom:178.041600pt;}
.y206{bottom:178.911733pt;}
.y14f{bottom:178.915333pt;}
.yb2{bottom:178.919200pt;}
.y71{bottom:180.791067pt;}
.y245{bottom:181.610667pt;}
.y24a{bottom:181.610933pt;}
.y1b8{bottom:182.508400pt;}
.ydd{bottom:182.509333pt;}
.y181{bottom:187.900533pt;}
.y105{bottom:188.207333pt;}
.yc1{bottom:188.409867pt;}
.y244{bottom:192.224933pt;}
.y20{bottom:192.225200pt;}
.y94{bottom:192.225333pt;}
.y249{bottom:192.225467pt;}
.y4d{bottom:192.239067pt;}
.y1a9{bottom:192.245467pt;}
.y16b{bottom:192.249600pt;}
.y14e{bottom:193.123333pt;}
.yb1{bottom:193.127200pt;}
.y220{bottom:195.822133pt;}
.yef{bottom:195.822267pt;}
.y1b7{bottom:196.719733pt;}
.y205{bottom:196.719867pt;}
.y70{bottom:197.789733pt;}
.y180{bottom:204.899200pt;}
.y104{bottom:205.206000pt;}
.y224{bottom:205.383200pt;}
.yc0{bottom:205.408533pt;}
.y93{bottom:206.433333pt;}
.y4c{bottom:206.447067pt;}
.y1a8{bottom:206.453467pt;}
.y16a{bottom:206.457600pt;}
.yb0{bottom:207.335200pt;}
.y204{bottom:207.337333pt;}
.y1b6{bottom:207.343467pt;}
.y243{bottom:210.032933pt;}
.y1f{bottom:210.033200pt;}
.y248{bottom:210.033467pt;}
.y14d{bottom:210.931467pt;}
.ydc{bottom:214.793733pt;}
.y6f{bottom:214.796400pt;}
.y4b{bottom:220.655067pt;}
.y1e{bottom:220.657067pt;}
.y1a7{bottom:220.661467pt;}
.y169{bottom:220.665600pt;}
.y203{bottom:221.545333pt;}
.y14c{bottom:221.548933pt;}
.y1b5{bottom:221.551467pt;}
.y17f{bottom:221.897867pt;}
.y103{bottom:222.204667pt;}
.y12d{bottom:222.381867pt;}
.ybf{bottom:222.407200pt;}
.y92{bottom:224.241467pt;}
.yaf{bottom:225.143200pt;}
.ydb{bottom:231.792400pt;}
.y6e{bottom:231.795067pt;}
.y91{bottom:234.862133pt;}
.y4a{bottom:234.863067pt;}
.y1d{bottom:234.865067pt;}
.y1a6{bottom:234.869467pt;}
.y168{bottom:234.873600pt;}
.yee{bottom:235.574800pt;}
.y14b{bottom:235.756933pt;}
.y1b4{bottom:235.759467pt;}
.yae{bottom:235.779867pt;}
.y17e{bottom:238.896533pt;}
.y102{bottom:239.203333pt;}
.y202{bottom:239.353333pt;}
.y21f{bottom:239.365867pt;}
.y12c{bottom:239.380533pt;}
.y1d7{bottom:239.396533pt;}
.ybe{bottom:239.405867pt;}
.yda{bottom:248.791067pt;}
.y6d{bottom:248.793733pt;}
.y90{bottom:249.070133pt;}
.y49{bottom:249.071067pt;}
.y1c{bottom:249.073067pt;}
.y1a5{bottom:249.077467pt;}
.y167{bottom:249.081600pt;}
.y1b3{bottom:249.967467pt;}
.y201{bottom:249.967733pt;}
.yad{bottom:249.987867pt;}
.yed{bottom:252.573467pt;}
.y14a{bottom:253.564933pt;}
.y242{bottom:255.103067pt;}
.y17d{bottom:255.895200pt;}
.y101{bottom:256.202000pt;}
.y21e{bottom:256.364533pt;}
.y12b{bottom:256.379200pt;}
.y1d6{bottom:256.395200pt;}
.ybd{bottom:256.404533pt;}
.y8f{bottom:263.278133pt;}
.y1b{bottom:263.281067pt;}
.y1a4{bottom:263.285467pt;}
.y166{bottom:263.289600pt;}
.yac{bottom:264.195867pt;}
.yd9{bottom:265.789733pt;}
.y6c{bottom:265.792400pt;}
.y48{bottom:266.879067pt;}
.y1b2{bottom:267.775467pt;}
.y200{bottom:267.775733pt;}
.yec{bottom:269.572133pt;}
.y241{bottom:272.101733pt;}
.y17c{bottom:272.893867pt;}
.y100{bottom:273.200667pt;}
.y21d{bottom:273.363200pt;}
.y12a{bottom:273.377867pt;}
.y1d5{bottom:273.393867pt;}
.ybc{bottom:273.403200pt;}
.y47{bottom:277.493467pt;}
.y165{bottom:277.497600pt;}
.y1ff{bottom:278.390000pt;}
.yab{bottom:278.403867pt;}
.y8e{bottom:281.086133pt;}
.y1a{bottom:281.089200pt;}
.y6b{bottom:282.791067pt;}
.yd8{bottom:282.811067pt;}
.yeb{bottom:286.570800pt;}
.y240{bottom:289.100400pt;}
.y17b{bottom:289.892533pt;}
.yff{bottom:290.199333pt;}
.y129{bottom:290.376533pt;}
.y1d4{bottom:290.392533pt;}
.ybb{bottom:290.401867pt;}
.y8d{bottom:291.700533pt;}
.y164{bottom:291.705600pt;}
.yaa{bottom:292.611867pt;}
.y46{bottom:295.301467pt;}
.y1fe{bottom:296.198133pt;}
.y6a{bottom:299.789733pt;}
.yd7{bottom:299.809733pt;}
.yea{bottom:303.569467pt;}
.y1a3{bottom:305.915733pt;}
.y149{bottom:306.071067pt;}
.y23f{bottom:306.099067pt;}
.ya9{bottom:306.819867pt;}
.y17a{bottom:306.891200pt;}
.yfe{bottom:307.198000pt;}
.y21c{bottom:307.369867pt;}
.y128{bottom:307.375200pt;}
.y1d3{bottom:307.391200pt;}
.yba{bottom:307.400533pt;}
.y8c{bottom:309.508533pt;}
.y163{bottom:309.513733pt;}
.y13{bottom:310.560400pt;}
.y69{bottom:316.788400pt;}
.yd6{bottom:316.808400pt;}
.y8b{bottom:320.122800pt;}
.y162{bottom:320.128000pt;}
.ye9{bottom:320.568133pt;}
.ya8{bottom:321.027867pt;}
.y148{bottom:323.069733pt;}
.y23e{bottom:323.097733pt;}
.y1a2{bottom:323.723867pt;}
.y179{bottom:323.889867pt;}
.yfd{bottom:324.196667pt;}
.y127{bottom:324.373867pt;}
.y41{bottom:324.377867pt;}
.y1d2{bottom:324.389867pt;}
.yb9{bottom:324.399200pt;}
.y12{bottom:327.559067pt;}
.yd5{bottom:333.807067pt;}
.ya7{bottom:335.235867pt;}
.ye8{bottom:337.566800pt;}
.y8a{bottom:337.930800pt;}
.y161{bottom:337.936133pt;}
.y147{bottom:340.068400pt;}
.y23d{bottom:340.096400pt;}
.y178{bottom:340.888533pt;}
.yfc{bottom:341.195333pt;}
.y1be{bottom:341.276133pt;}
.y1fd{bottom:341.367200pt;}
.y126{bottom:341.372533pt;}
.y40{bottom:341.376533pt;}
.y1d1{bottom:341.388533pt;}
.yb8{bottom:341.397867pt;}
.y11{bottom:344.557733pt;}
.y160{bottom:348.556800pt;}
.y89{bottom:348.564267pt;}
.y68{bottom:348.936533pt;}
.yd4{bottom:350.805733pt;}
.ya6{bottom:353.043867pt;}
.ye7{bottom:354.565467pt;}
.y146{bottom:357.067067pt;}
.y1bd{bottom:357.076133pt;}
.y23c{bottom:357.095067pt;}
.y177{bottom:357.887200pt;}
.yfb{bottom:358.194000pt;}
.y1fc{bottom:358.365867pt;}
.y125{bottom:358.371200pt;}
.y3f{bottom:358.375200pt;}
.y1d0{bottom:358.387200pt;}
.yb7{bottom:358.396533pt;}
.y10{bottom:361.556400pt;}
.y15f{bottom:362.764800pt;}
.y88{bottom:362.772267pt;}
.ya5{bottom:363.658267pt;}
.yd3{bottom:367.804400pt;}
.ye6{bottom:371.564133pt;}
.y145{bottom:374.065733pt;}
.y23b{bottom:374.093733pt;}
.y176{bottom:374.885867pt;}
.yfa{bottom:375.192667pt;}
.y1fb{bottom:375.364533pt;}
.y124{bottom:375.369867pt;}
.y3e{bottom:375.373867pt;}
.y1cf{bottom:375.385867pt;}
.yb6{bottom:375.395200pt;}
.y15e{bottom:376.972800pt;}
.y87{bottom:376.980267pt;}
.yf{bottom:378.555067pt;}
.y1bc{bottom:380.436133pt;}
.ya4{bottom:381.466267pt;}
.yd2{bottom:384.803067pt;}
.ye5{bottom:388.562800pt;}
.y144{bottom:391.064400pt;}
.y23a{bottom:391.092400pt;}
.y86{bottom:391.188267pt;}
.y175{bottom:391.884533pt;}
.yf9{bottom:392.191333pt;}
.y123{bottom:392.368533pt;}
.y1a1{bottom:392.371200pt;}
.y3d{bottom:392.372533pt;}
.y1ce{bottom:392.384533pt;}
.y1fa{bottom:392.387200pt;}
.y21b{bottom:392.391200pt;}
.y67{bottom:392.393867pt;}
.y15d{bottom:394.780800pt;}
.ye{bottom:395.553733pt;}
.yd1{bottom:401.801733pt;}
.y15c{bottom:405.395067pt;}
.y85{bottom:405.396267pt;}
.ye4{bottom:405.561467pt;}
.y239{bottom:408.091067pt;}
.y174{bottom:408.883200pt;}
.yf8{bottom:409.190000pt;}
.y122{bottom:409.367200pt;}
.y1a0{bottom:409.369867pt;}
.y3c{bottom:409.371200pt;}
.ya3{bottom:409.376533pt;}
.y1cd{bottom:409.383200pt;}
.y1f9{bottom:409.385867pt;}
.y21a{bottom:409.389867pt;}
.y66{bottom:409.392533pt;}
.yd{bottom:412.552400pt;}
.yd0{bottom:418.800400pt;}
.y84{bottom:419.604267pt;}
.ye3{bottom:422.560133pt;}
.y15b{bottom:423.203200pt;}
.y143{bottom:425.069400pt;}
.y238{bottom:425.089733pt;}
.y173{bottom:425.881867pt;}
.y121{bottom:426.365867pt;}
.y19f{bottom:426.368533pt;}
.y3b{bottom:426.369867pt;}
.ya2{bottom:426.375200pt;}
.y1cc{bottom:426.381867pt;}
.y1f8{bottom:426.384533pt;}
.y219{bottom:426.388533pt;}
.y65{bottom:426.391200pt;}
.yc{bottom:429.551067pt;}
.y83{bottom:433.812267pt;}
.ycf{bottom:435.799067pt;}
.ye2{bottom:439.560133pt;}
.y237{bottom:442.088400pt;}
.y142{bottom:442.091067pt;}
.y172{bottom:442.880533pt;}
.y120{bottom:443.364533pt;}
.y19e{bottom:443.367200pt;}
.y3a{bottom:443.368533pt;}
.ya1{bottom:443.373867pt;}
.y1cb{bottom:443.380533pt;}
.y1f7{bottom:443.383200pt;}
.y218{bottom:443.387200pt;}
.y64{bottom:443.389867pt;}
.yb{bottom:446.549733pt;}
.y82{bottom:451.620267pt;}
.yce{bottom:452.797733pt;}
.y10d{bottom:454.463067pt;}
.ye1{bottom:456.558800pt;}
.y236{bottom:459.087067pt;}
.y171{bottom:459.879200pt;}
.y19d{bottom:460.365867pt;}
.y39{bottom:460.367200pt;}
.ya0{bottom:460.372533pt;}
.y15a{bottom:460.375200pt;}
.y1ca{bottom:460.379200pt;}
.y1f6{bottom:460.381867pt;}
.y217{bottom:460.385867pt;}
.y63{bottom:460.388533pt;}
.y81{bottom:462.241067pt;}
.ya{bottom:463.548400pt;}
.y10c{bottom:467.124400pt;}
.ycd{bottom:469.796400pt;}
.y235{bottom:476.085733pt;}
.y80{bottom:476.449067pt;}
.y170{bottom:476.877867pt;}
.y19c{bottom:477.364533pt;}
.y38{bottom:477.365867pt;}
.y9f{bottom:477.371200pt;}
.y159{bottom:477.373867pt;}
.y1c9{bottom:477.377867pt;}
.y1f5{bottom:477.380533pt;}
.y216{bottom:477.384533pt;}
.y62{bottom:477.387200pt;}
.y9{bottom:480.547067pt;}
.ycc{bottom:486.795067pt;}
.y7f{bottom:490.657067pt;}
.y234{bottom:493.084400pt;}
.y141{bottom:493.087067pt;}
.y1b1{bottom:494.363200pt;}
.y37{bottom:494.364533pt;}
.y9e{bottom:494.369867pt;}
.y158{bottom:494.372533pt;}
.y1c8{bottom:494.376533pt;}
.y1f4{bottom:494.379200pt;}
.y215{bottom:494.383200pt;}
.y61{bottom:494.385867pt;}
.y11a{bottom:494.476400pt;}
.y8{bottom:497.549733pt;}
.yf7{bottom:498.162800pt;}
.ycb{bottom:503.793733pt;}
.y7e{bottom:508.465067pt;}
.y233{bottom:510.083067pt;}
.y140{bottom:510.085733pt;}
.y9d{bottom:511.368533pt;}
.y157{bottom:511.371200pt;}
.y1c7{bottom:511.375200pt;}
.y1f3{bottom:511.377867pt;}
.y36{bottom:511.379200pt;}
.y214{bottom:511.381867pt;}
.y60{bottom:511.384533pt;}
.y119{bottom:514.040667pt;}
.y7{bottom:514.548400pt;}
.y1e6{bottom:514.591867pt;}
.yca{bottom:520.792400pt;}
.y232{bottom:527.081733pt;}
.y13f{bottom:527.084400pt;}
.y9c{bottom:528.367200pt;}
.y156{bottom:528.369867pt;}
.y1b0{bottom:528.371200pt;}
.y1c6{bottom:528.373867pt;}
.y1f2{bottom:528.376533pt;}
.y35{bottom:528.377867pt;}
.y213{bottom:528.380533pt;}
.y5f{bottom:528.383200pt;}
.y194{bottom:528.412000pt;}
.y1e5{bottom:530.391867pt;}
.y6{bottom:531.547067pt;}
.y118{bottom:532.938400pt;}
.yc9{bottom:537.791067pt;}
.y231{bottom:544.080400pt;}
.y13e{bottom:544.083067pt;}
.y7d{bottom:545.365867pt;}
.y155{bottom:545.368533pt;}
.y1c5{bottom:545.372533pt;}
.y1f1{bottom:545.375200pt;}
.y34{bottom:545.376533pt;}
.y212{bottom:545.379200pt;}
.y5e{bottom:545.381867pt;}
.y5{bottom:548.548400pt;}
.y117{bottom:551.836000pt;}
.y1e4{bottom:553.751867pt;}
.yc8{bottom:554.789733pt;}
.y190{bottom:556.552667pt;}
.y230{bottom:561.079067pt;}
.y13d{bottom:561.081733pt;}
.y7c{bottom:562.364533pt;}
.y154{bottom:562.367200pt;}
.y1c4{bottom:562.371200pt;}
.y1f0{bottom:562.373867pt;}
.y33{bottom:562.375200pt;}
.y211{bottom:562.377867pt;}
.y5d{bottom:562.380533pt;}
.y4{bottom:565.547067pt;}
.y18d{bottom:569.440133pt;}
.y116{bottom:570.733733pt;}
.yc7{bottom:571.788400pt;}
.y18f{bottom:577.340133pt;}
.y22f{bottom:578.077733pt;}
.y13c{bottom:578.080400pt;}
.y9b{bottom:579.363200pt;}
.y7b{bottom:579.365867pt;}
.y1af{bottom:579.367200pt;}
.y1c3{bottom:579.369867pt;}
.y1ef{bottom:579.372533pt;}
.y32{bottom:579.373867pt;}
.y210{bottom:579.376533pt;}
.y19b{bottom:579.377867pt;}
.y5c{bottom:579.379200pt;}
.y3{bottom:582.545733pt;}
.y18c{bottom:585.240133pt;}
.y115{bottom:589.631333pt;}
.y22e{bottom:595.076400pt;}
.y13b{bottom:595.079067pt;}
.y7a{bottom:596.364533pt;}
.y1ae{bottom:596.365867pt;}
.y1c2{bottom:596.368533pt;}
.y1ee{bottom:596.371200pt;}
.y31{bottom:596.372533pt;}
.y20f{bottom:596.375200pt;}
.y19a{bottom:596.376533pt;}
.y5b{bottom:596.377867pt;}
.y18e{bottom:598.127467pt;}
.yc6{bottom:603.908533pt;}
.y114{bottom:609.054667pt;}
.y22d{bottom:612.075067pt;}
.y13a{bottom:612.077733pt;}
.y1e3{bottom:612.523200pt;}
.y153{bottom:613.364533pt;}
.y79{bottom:613.365867pt;}
.y9a{bottom:613.367200pt;}
.y1ed{bottom:613.369867pt;}
.y30{bottom:613.371200pt;}
.y20e{bottom:613.373867pt;}
.y199{bottom:613.375200pt;}
.y5a{bottom:613.376533pt;}
.y18b{bottom:619.581600pt;}
.y113{bottom:623.121333pt;}
.y22c{bottom:629.073733pt;}
.y139{bottom:629.076400pt;}
.y1e2{bottom:629.521867pt;}
.y78{bottom:630.364533pt;}
.y1c1{bottom:630.365867pt;}
.y1ec{bottom:630.368533pt;}
.y2f{bottom:630.369867pt;}
.y20d{bottom:630.372533pt;}
.y198{bottom:630.373867pt;}
.y59{bottom:630.375200pt;}
.y2{bottom:633.539600pt;}
.y18a{bottom:640.368933pt;}
.y112{bottom:642.544667pt;}
.y187{bottom:642.862667pt;}
.y22b{bottom:646.072400pt;}
.y138{bottom:646.075067pt;}
.y1e1{bottom:646.520533pt;}
.y1c0{bottom:647.364533pt;}
.yc5{bottom:647.365867pt;}
.y77{bottom:647.367200pt;}
.y2e{bottom:647.368533pt;}
.y20c{bottom:647.371200pt;}
.y197{bottom:647.372533pt;}
.y58{bottom:647.373867pt;}
.y1{bottom:654.879600pt;}
.y186{bottom:658.662667pt;}
.y189{bottom:661.156267pt;}
.y111{bottom:661.442400pt;}
.y22a{bottom:663.071067pt;}
.y137{bottom:663.073733pt;}
.y1e0{bottom:663.519200pt;}
.y99{bottom:664.364533pt;}
.y76{bottom:664.365867pt;}
.y2d{bottom:664.367200pt;}
.y20b{bottom:664.369867pt;}
.y196{bottom:664.371200pt;}
.y57{bottom:664.372533pt;}
.y229{bottom:680.069733pt;}
.y136{bottom:680.072400pt;}
.y110{bottom:680.339867pt;}
.y1df{bottom:680.517867pt;}
.y75{bottom:681.364533pt;}
.y2c{bottom:681.365867pt;}
.y20a{bottom:681.368533pt;}
.y195{bottom:681.369867pt;}
.y56{bottom:681.371200pt;}
.y188{bottom:681.943733pt;}
.y228{bottom:697.068400pt;}
.y135{bottom:697.071067pt;}
.y1de{bottom:697.516533pt;}
.y2b{bottom:698.364533pt;}
.y1eb{bottom:698.367200pt;}
.y74{bottom:698.368533pt;}
.y55{bottom:698.369867pt;}
.y10f{bottom:701.096667pt;}
.y185{bottom:708.788933pt;}
.y227{bottom:714.067067pt;}
.y134{bottom:714.069733pt;}
.y1dd{bottom:714.515200pt;}
.y10e{bottom:715.163333pt;}
.y1ea{bottom:715.365867pt;}
.y2a{bottom:715.367200pt;}
.y54{bottom:715.368533pt;}
.y19{bottom:722.182533pt;}
.y226{bottom:731.065733pt;}
.y133{bottom:731.068400pt;}
.y1dc{bottom:731.513867pt;}
.y1e9{bottom:732.364533pt;}
.y29{bottom:732.365867pt;}
.y53{bottom:732.367200pt;}
.y18{bottom:734.982533pt;}
.yf6{bottom:742.923733pt;}
.y10b{bottom:743.805467pt;}
.y193{bottom:743.847867pt;}
.y11d{bottom:743.907733pt;}
.y17{bottom:747.782533pt;}
.y132{bottom:748.067067pt;}
.y1db{bottom:748.512533pt;}
.y28{bottom:749.364533pt;}
.y52{bottom:749.365867pt;}
.yf5{bottom:758.723733pt;}
.y10a{bottom:759.605467pt;}
.y192{bottom:759.647867pt;}
.y11c{bottom:759.707733pt;}
.y16{bottom:760.582533pt;}
.y131{bottom:765.065733pt;}
.y1da{bottom:765.511200pt;}
.y27{bottom:766.364533pt;}
.y15{bottom:773.382533pt;}
.y130{bottom:782.064400pt;}
.yf4{bottom:782.083733pt;}
.y1d9{bottom:782.509867pt;}
.y109{bottom:782.965467pt;}
.y191{bottom:783.007867pt;}
.y11b{bottom:783.067733pt;}
.y26{bottom:783.363200pt;}
.y14{bottom:786.182533pt;}
.y42{bottom:823.977733pt;}
.y43{bottom:824.171867pt;}
.y25{bottom:932.881200pt;}
.h8{height:27.014400pt;}
.ha{height:27.384000pt;}
.hb{height:31.437500pt;}
.h7{height:34.773333pt;}
.h19{height:35.860000pt;}
.h1b{height:38.064000pt;}
.h9{height:39.120000pt;}
.hf{height:39.896533pt;}
.h13{height:42.880000pt;}
.h12{height:43.466667pt;}
.h23{height:47.168000pt;}
.h4{height:47.813333pt;}
.h22{height:50.909333pt;}
.h21{height:50.915200pt;}
.h20{height:50.957333pt;}
.h16{height:50.968000pt;}
.h1f{height:50.973333pt;}
.h11{height:50.978667pt;}
.h17{height:50.994667pt;}
.hd{height:51.005333pt;}
.h1d{height:51.010667pt;}
.h1e{height:51.026667pt;}
.he{height:51.037333pt;}
.h1c{height:51.042667pt;}
.h1a{height:51.043200pt;}
.h10{height:51.048000pt;}
.h6{height:51.053333pt;}
.h5{height:51.058667pt;}
.hc{height:51.064000pt;}
.h18{height:51.069333pt;}
.h2{height:64.320000pt;}
.h3{height:69.051200pt;}
.h14{height:71.013333pt;}
.h15{height:71.600000pt;}
.h0{height:907.086000pt;}
.h1{height:907.333333pt;}
.w0{width:642.519333pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xa{left:3.999600pt;}
.x3{left:75.596533pt;}
.x1a{left:83.148400pt;}
.x1d{left:90.752667pt;}
.x1{left:94.400400pt;}
.x13{left:95.550400pt;}
.x20{left:97.185200pt;}
.x21{left:98.718533pt;}
.xb{left:113.384133pt;}
.xd{left:116.722267pt;}
.xc{left:120.944133pt;}
.x2{left:129.020400pt;}
.x23{left:133.022000pt;}
.x15{left:139.371867pt;}
.x1b{left:144.295733pt;}
.x1c{left:170.549067pt;}
.x11{left:203.844933pt;}
.x12{left:216.004933pt;}
.x1f{left:220.426933pt;}
.x1e{left:240.193333pt;}
.xe{left:242.811867pt;}
.xf{left:251.569200pt;}
.x16{left:278.261600pt;}
.x14{left:285.022400pt;}
.x17{left:288.141600pt;}
.x26{left:300.637733pt;}
.x22{left:306.611733pt;}
.x10{left:307.674800pt;}
.x19{left:346.161333pt;}
.x24{left:365.156400pt;}
.x18{left:367.828000pt;}
.x25{left:407.367067pt;}
.x9{left:417.307600pt;}
.x5{left:422.214267pt;}
.x4{left:454.822267pt;}
.x8{left:468.304933pt;}
.x6{left:470.011600pt;}
.x7{left:473.040933pt;}
}




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