
    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_99e78f9f893a0544b7526319.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_aad3686e9807e7cb743fb019.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969238;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_9aab80bc4728fe2ed3ebe6c6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_569d0a53409b38493cbb0c72.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960000;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_ac702e4dc191f05fc7864af9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.731445;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_ac4cb0a989bff485001cf52f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3457f595bab5e806ed6ce98a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_77207a222f2741e671119b6d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2f86388345dd4ab71dcc5270.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f94c07a8e7115af474ec58e2.woff2')format("woff");}.ffa{font-family:ffa;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;}
.v1{vertical-align:8.414071px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.288009px;}
.lsf{letter-spacing:0.872130px;}
.lse{letter-spacing:0.923432px;}
.ls10{letter-spacing:1.333846px;}
.ls5{letter-spacing:1.458000px;}
.ls1{letter-spacing:1.476000px;}
.ls6{letter-spacing:1.476006px;}
.ls4{letter-spacing:1.728000px;}
.lsc{letter-spacing:1.782000px;}
.lsd{letter-spacing:3.942000px;}
.ls9{letter-spacing:51.322211px;}
.lsa{letter-spacing:51.364210px;}
.ls8{letter-spacing:78.732304px;}
.ls7{letter-spacing:213.310564px;}
.ls2{letter-spacing:926.819000px;}
.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;}
}
.ws3{word-spacing:-21.129671px;}
.ws4{word-spacing:-18.854533px;}
.wsb{word-spacing:-16.416000px;}
.wsa{word-spacing:-16.254000px;}
.ws9{word-spacing:-14.958000px;}
.ws19{word-spacing:-14.210587px;}
.ws12{word-spacing:-13.584414px;}
.ws17{word-spacing:-13.344407px;}
.ws1{word-spacing:-13.296406px;}
.ws0{word-spacing:-11.633594px;}
.ws7{word-spacing:-10.508889px;}
.ws8{word-spacing:0.000000px;}
.ws2{word-spacing:6.798003px;}
.wsd{word-spacing:50.524239px;}
.ws15{word-spacing:72.993456px;}
.ws14{word-spacing:75.345374px;}
.wse{word-spacing:95.504671px;}
.wsf{word-spacing:100.196159px;}
.ws10{word-spacing:136.033258px;}
.ws13{word-spacing:154.008632px;}
.ws11{word-spacing:212.512592px;}
.ws5{word-spacing:321.696000px;}
.ws6{word-spacing:366.012000px;}
.ws18{word-spacing:405.369869px;}
.ws16{word-spacing:886.497771px;}
.wsc{word-spacing:886.513491px;}
._3{margin-left:-11.199814px;}
._6a{margin-left:-9.884659px;}
._6c{margin-left:-8.773822px;}
._9{margin-left:-7.481690px;}
._c{margin-left:-6.179053px;}
._20{margin-left:-5.137370px;}
._15{margin-left:-3.830638px;}
._4{margin-left:-2.726930px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._e{width:4.047522px;}
._5{width:5.190104px;}
._d{width:6.983103px;}
._a{width:7.994297px;}
._8{width:9.378937px;}
._b{width:10.584040px;}
._16{width:11.683531px;}
._f{width:12.732249px;}
._17{width:13.758330px;}
._1a{width:16.586810px;}
._7{width:17.674928px;}
._6{width:18.899111px;}
._1d{width:19.978650px;}
._1e{width:22.386198px;}
._1f{width:24.239878px;}
._1c{width:33.069012px;}
._1b{width:44.926725px;}
._63{width:67.908658px;}
._61{width:71.310539px;}
._31{width:74.715396px;}
._66{width:80.379248px;}
._32{width:83.031106px;}
._37{width:84.627050px;}
._30{width:88.784905px;}
._18{width:89.990827px;}
._3b{width:107.138265px;}
._33{width:111.590110px;}
._6b{width:115.685464px;}
._62{width:120.739841px;}
._64{width:124.984668px;}
._60{width:126.367645px;}
._43{width:129.775476px;}
._3c{width:139.039093px;}
._44{width:142.585030px;}
._26{width:147.663877px;}
._39{width:151.559689px;}
._5d{width:156.564592px;}
._42{width:161.520196px;}
._5e{width:165.474232px;}
._53{width:169.548090px;}
._3f{width:174.096959px;}
._3e{width:183.863417px;}
._45{width:186.779211px;}
._65{width:188.027446px;}
._54{width:196.802165px;}
._41{width:205.582834px;}
._2f{width:210.328668px;}
._19{width:213.779211px;}
._5f{width:215.410491px;}
._4e{width:219.484349px;}
._2e{width:224.104188px;}
._38{width:227.926055px;}
._40{width:229.248581px;}
._5a{width:233.214895px;}
._52{width:237.711714px;}
._36{width:238.718075px;}
._28{width:244.134515px;}
._27{width:246.489408px;}
._59{width:251.403236px;}
._51{width:263.999822px;}
._5b{width:268.490690px;}
._3d{width:273.662461px;}
._68{width:274.667450px;}
._34{width:283.106629px;}
._22{width:286.850001px;}
._3a{width:296.261159px;}
._5c{width:300.289532px;}
._11{width:304.706232px;}
._67{width:305.914361px;}
._35{width:314.527036px;}
._57{width:318.348903px;}
._69{width:336.195306px;}
._58{width:349.718834px;}
._50{width:359.171480px;}
._10{width:363.187116px;}
._55{width:372.314047px;}
._4c{width:404.457451px;}
._4f{width:408.939745px;}
._12{width:420.984000px;}
._56{width:422.175590px;}
._46{width:455.721620px;}
._4d{width:460.187241px;}
._4a{width:462.619880px;}
._48{width:475.597385px;}
._2b{width:491.703537px;}
._23{width:492.714477px;}
._24{width:493.803464px;}
._21{width:495.066395px;}
._47{width:499.835035px;}
._14{width:501.984000px;}
._29{width:547.699800px;}
._49{width:557.158542px;}
._4b{width:570.472120px;}
._13{width:573.984000px;}
._25{width:927.951570px;}
._2a{width:930.555479px;}
._2d{width:1364.664562px;}
._2c{width:1367.016480px;}
.fc3{color:rgb(10,84,44);}
.fc1{color:rgb(27,138,174);}
.fc6{color:rgb(64,64,64);}
.fc5{color:rgb(60,60,60);}
.fc4{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs8{font-size:40.500000px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs9{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:62.639646px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y21e{bottom:4.528871px;}
.y212{bottom:4.528912px;}
.y211{bottom:22.482039px;}
.y21d{bottom:22.487859px;}
.y21c{bottom:40.440984px;}
.y210{bottom:40.441028px;}
.y25{bottom:46.734370px;}
.y21b{bottom:58.394102px;}
.y20f{bottom:58.394155px;}
.y24{bottom:59.015622px;}
.y23{bottom:71.302734px;}
.y20e{bottom:76.347282px;}
.y21a{bottom:76.353091px;}
.y5a{bottom:85.160140px;}
.y60{bottom:86.532000px;}
.yc2{bottom:88.365229px;}
.y1e3{bottom:91.078500px;}
.y8a{bottom:91.294845px;}
.y26{bottom:92.560500px;}
.y219{bottom:94.306218px;}
.y20d{bottom:94.306266px;}
.y1e2{bottom:94.394532px;}
.y10d{bottom:96.123042px;}
.y181{bottom:96.544936px;}
.y4b{bottom:97.330056px;}
.y9a{bottom:97.458968px;}
.ye2{bottom:98.378904px;}
.y15e{bottom:99.527329px;}
.y128{bottom:101.964834px;}
.y59{bottom:104.062490px;}
.ya8{bottom:104.671874px;}
.y1bb{bottom:104.671892px;}
.y134{bottom:104.953115px;}
.yc1{bottom:107.267535px;}
.y89{bottom:110.197194px;}
.y142{bottom:110.261713px;}
.y218{bottom:112.259344px;}
.y20c{bottom:112.259389px;}
.y1e1{bottom:112.347648px;}
.ye1{bottom:113.232421px;}
.y10c{bottom:115.019515px;}
.y4a{bottom:116.232405px;}
.y99{bottom:116.361317px;}
.y15d{bottom:118.429679px;}
.y127{bottom:120.867183px;}
.ya7{bottom:121.470706px;}
.y58{bottom:122.964838px;}
.y180{bottom:123.322279px;}
.y133{bottom:123.855464px;}
.yc0{bottom:126.164025px;}
.y141{bottom:127.060546px;}
.y1a2{bottom:128.296887px;}
.y88{bottom:129.099543px;}
.y20b{bottom:130.212516px;}
.y217{bottom:130.218326px;}
.y1e0{bottom:130.300775px;}
.y1ba{bottom:131.443376px;}
.y10b{bottom:133.921865px;}
.y49{bottom:135.128895px;}
.y126{bottom:139.769532px;}
.ye0{bottom:140.003905px;}
.ya9{bottom:141.644532px;}
.y132{bottom:142.751943px;}
.ya6{bottom:142.769532px;}
.y140{bottom:143.859378px;}
.y20{bottom:144.597597px;}
.ybf{bottom:145.066374px;}
.y87{bottom:147.996033px;}
.y20a{bottom:148.165634px;}
.y216{bottom:148.171453px;}
.y1df{bottom:148.259764px;}
.y15c{bottom:148.740230px;}
.y17f{bottom:150.093762px;}
.y10a{bottom:152.824213px;}
.y48{bottom:154.031244px;}
.y1a1{bottom:155.068371px;}
.y57{bottom:155.361318px;}
.y1b9{bottom:158.220718px;}
.y9e{bottom:158.355467px;}
.y131{bottom:161.654292px;}
.y1f{bottom:163.494087px;}
.ybe{bottom:163.962864px;}
.y143{bottom:164.033203px;}
.y13f{bottom:165.158203px;}
.y215{bottom:166.124574px;}
.y209{bottom:166.124623px;}
.y1de{bottom:166.212891px;}
.ydf{bottom:166.781248px;}
.y86{bottom:166.898382px;}
.y125{bottom:170.578125px;}
.y109{bottom:171.720574px;}
.y47{bottom:172.927729px;}
.y1a0{bottom:173.970715px;}
.y56{bottom:174.263667px;}
.y9d{bottom:175.154299px;}
.y17e{bottom:176.871105px;}
.y15b{bottom:179.044922px;}
.y130{bottom:180.550782px;}
.y1e{bottom:182.396436px;}
.ybd{bottom:182.865213px;}
.y208{bottom:184.077750px;}
.y214{bottom:184.083562px;}
.y1dd{bottom:184.166007px;}
.y1b8{bottom:184.998061px;}
.y85{bottom:185.794872px;}
.y46{bottom:191.830072px;}
.yde{bottom:193.705081px;}
.y9f{bottom:195.328125px;}
.y9c{bottom:196.453125px;}
.y15a{bottom:197.947262px;}
.y19f{bottom:200.748058px;}
.y1d{bottom:201.292926px;}
.ybc{bottom:201.767562px;}
.y207{bottom:202.030875px;}
.y1dc{bottom:202.119134px;}
.y17d{bottom:203.648448px;}
.y1b7{bottom:203.894546px;}
.y108{bottom:204.122923px;}
.y84{bottom:204.697221px;}
.y55{bottom:206.660157px;}
.ydd{bottom:210.656257px;}
.y45{bottom:210.732400px;}
.y12f{bottom:211.365234px;}
.y19e{bottom:219.644543px;}
.y206{bottom:219.989855px;}
.y1db{bottom:220.078123px;}
.y1c{bottom:220.195275px;}
.ybb{bottom:220.664052px;}
.y107{bottom:223.019414px;}
.y83{bottom:223.599570px;}
.ydc{bottom:225.503916px;}
.y159{bottom:228.251943px;}
.y17c{bottom:230.419931px;}
.y1b6{bottom:230.671889px;}
.y124{bottom:231.732442px;}
.y54{bottom:237.474609px;}
.y205{bottom:237.942982px;}
.y1da{bottom:238.031250px;}
.y19d{bottom:238.546887px;}
.y1b{bottom:239.097624px;}
.yba{bottom:239.566401px;}
.y106{bottom:241.921763px;}
.y82{bottom:242.496060px;}
.y44{bottom:243.128890px;}
.ydb{bottom:252.427749px;}
.y204{bottom:255.896109px;}
.y1d9{bottom:255.984375px;}
.y17b{bottom:257.197274px;}
.y1b5{bottom:257.443373px;}
.y1a{bottom:257.994114px;}
.yb9{bottom:258.462891px;}
.y123{bottom:258.503926px;}
.y158{bottom:258.562494px;}
.y105{bottom:260.824112px;}
.y81{bottom:261.398409px;}
.y43{bottom:262.031239px;}
.y19c{bottom:265.318371px;}
.y12e{bottom:266.976562px;}
.yda{bottom:267.281267px;}
.y203{bottom:273.855090px;}
.y1d8{bottom:273.943350px;}
.y19{bottom:276.896463px;}
.y157{bottom:277.464843px;}
.y104{bottom:279.720602px;}
.y42{bottom:280.927729px;}
.y17a{bottom:283.968758px;}
.y19b{bottom:284.220715px;}
.y122{bottom:285.281269px;}
.yb8{bottom:291.023433px;}
.y202{bottom:291.808217px;}
.y1d7{bottom:291.896477px;}
.y80{bottom:293.953092px;}
.yd9{bottom:294.052750px;}
.y18{bottom:295.792953px;}
.y103{bottom:298.622950px;}
.y41{bottom:299.830073px;}
.y5e{bottom:304.927732px;}
.y156{bottom:308.273438px;}
.y139{bottom:309.128908px;}
.y201{bottom:309.761345px;}
.y1d6{bottom:309.849605px;}
.yb7{bottom:309.925755px;}
.y179{bottom:310.746100px;}
.y19a{bottom:310.998058px;}
.y121{bottom:312.052752px;}
.y7f{bottom:312.855441px;}
.y17{bottom:314.695302px;}
.y102{bottom:317.519440px;}
.y40{bottom:318.732417px;}
.yd8{bottom:320.830093px;}
.y5d{bottom:321.732421px;}
.y200{bottom:327.720329px;}
.y1d5{bottom:327.808593px;}
.yb6{bottom:328.822245px;}
.y13a{bottom:329.302734px;}
.y178{bottom:329.648444px;}
.y199{bottom:329.894543px;}
.y138{bottom:330.427734px;}
.y7e{bottom:331.757790px;}
.y16{bottom:333.597651px;}
.y101{bottom:336.421790px;}
.y3f{bottom:337.628901px;}
.y5c{bottom:338.531253px;}
.y120{bottom:338.830095px;}
.y1ff{bottom:345.673447px;}
.y1d4{bottom:345.761718px;}
.yd7{bottom:347.607436px;}
.yb5{bottom:347.724594px;}
.y15{bottom:352.494130px;}
.y100{bottom:355.324139px;}
.y177{bottom:356.419928px;}
.y3e{bottom:356.531239px;}
.y198{bottom:356.671886px;}
.y5f{bottom:358.705078px;}
.y5b{bottom:359.830078px;}
.y1fe{bottom:363.626574px;}
.y1d3{bottom:363.714836px;}
.y155{bottom:363.884755px;}
.y7d{bottom:364.154280px;}
.y11f{bottom:365.607438px;}
.yb4{bottom:366.621084px;}
.y14{bottom:371.396479px;}
.yff{bottom:374.220628px;}
.yd6{bottom:374.378919px;}
.y3d{bottom:375.427729px;}
.y1b4{bottom:375.568371px;}
.y1fd{bottom:381.585563px;}
.y1d2{bottom:381.673824px;}
.y154{bottom:382.787104px;}
.y7c{bottom:383.056629px;}
.y176{bottom:383.197271px;}
.y197{bottom:383.443369px;}
.yb3{bottom:385.523433px;}
.y13{bottom:390.292969px;}
.y11e{bottom:392.378921px;}
.y3c{bottom:394.330073px;}
.y1fc{bottom:399.538688px;}
.y1d1{bottom:399.626951px;}
.yd5{bottom:401.156262px;}
.y7b{bottom:401.953119px;}
.y1b3{bottom:402.345714px;}
.yb2{bottom:404.425743px;}
.yfe{bottom:406.622978px;}
.y175{bottom:409.968755px;}
.y196{bottom:410.220712px;}
.y153{bottom:413.091796px;}
.y3b{bottom:413.232400px;}
.y1fb{bottom:417.491808px;}
.y1d0{bottom:417.580078px;}
.y11d{bottom:419.156264px;}
.y7a{bottom:420.855364px;}
.y1b2{bottom:421.248058px;}
.yb1{bottom:423.322233px;}
.yfd{bottom:425.519468px;}
.yd4{bottom:427.927746px;}
.y12{bottom:428.173828px;}
.y174{bottom:428.871099px;}
.y3a{bottom:432.128890px;}
.y1fa{bottom:435.450797px;}
.y195{bottom:436.998055px;}
.y79{bottom:439.757714px;}
.yb0{bottom:442.224582px;}
.y152{bottom:443.906250px;}
.yfc{bottom:444.421817px;}
.y11c{bottom:445.927748px;}
.y1b1{bottom:448.019541px;}
.y39{bottom:451.031239px;}
.y1f9{bottom:453.403916px;}
.yd3{bottom:454.705088px;}
.y1cf{bottom:455.091796px;}
.y173{bottom:455.648441px;}
.y194{bottom:455.894540px;}
.y78{bottom:458.654203px;}
.yaf{bottom:461.121072px;}
.yfb{bottom:463.324166px;}
.y1b0{bottom:466.921885px;}
.y11{bottom:467.929688px;}
.y38{bottom:469.927729px;}
.y1f8{bottom:471.357044px;}
.y11b{bottom:472.705090px;}
.y193{bottom:474.796884px;}
.y77{bottom:477.556552px;}
.yae{bottom:480.023421px;}
.yd2{bottom:481.482431px;}
.yfa{bottom:482.220656px;}
.y172{bottom:482.419925px;}
.y37{bottom:488.830073px;}
.y1f7{bottom:489.316032px;}
.y1af{bottom:493.693369px;}
.y76{bottom:496.453042px;}
.ya4{bottom:497.214838px;}
.yad{bottom:498.925770px;}
.y11a{bottom:499.482433px;}
.y151{bottom:499.517579px;}
.yf9{bottom:501.123004px;}
.y171{bottom:501.322269px;}
.y192{bottom:501.568368px;}
.y1f6{bottom:507.269144px;}
.y36{bottom:507.732417px;}
.yd1{bottom:508.253915px;}
.y1ce{bottom:510.703115px;}
.y1ae{bottom:512.595713px;}
.ya3{bottom:514.013671px;}
.y75{bottom:515.355391px;}
.yac{bottom:517.822260px;}
.yf8{bottom:520.019495px;}
.y191{bottom:520.470712px;}
.y1f5{bottom:525.222271px;}
.y119{bottom:526.253917px;}
.y35{bottom:526.628901px;}
.y170{bottom:528.093753px;}
.y1cd{bottom:529.599605px;}
.y150{bottom:530.332032px;}
.ya2{bottom:530.812503px;}
.y74{bottom:534.257740px;}
.yd0{bottom:535.031257px;}
.yab{bottom:536.724603px;}
.y10{bottom:537.029286px;}
.yf7{bottom:538.921844px;}
.y1ad{bottom:539.373056px;}
.y1f4{bottom:543.181260px;}
.y34{bottom:545.531250px;}
.y190{bottom:547.248054px;}
.y1cc{bottom:548.501954px;}
.ya5{bottom:550.986328px;}
.ya1{bottom:552.111329px;}
.y118{bottom:553.031259px;}
.y73{bottom:553.154230px;}
.yf{bottom:553.828112px;}
.y16f{bottom:554.871096px;}
.yaa{bottom:555.621093px;}
.yf6{bottom:557.824192px;}
.y227{bottom:559.300776px;}
.y1f3{bottom:561.134387px;}
.ycf{bottom:561.802741px;}
.y18f{bottom:566.144540px;}
.ye{bottom:570.632797px;}
.y72{bottom:572.056579px;}
.y98{bottom:575.050776px;}
.y33{bottom:576.187500px;}
.yf5{bottom:576.720683px;}
.y226{bottom:578.203125px;}
.y1f2{bottom:579.087514px;}
.y1cb{bottom:579.158204px;}
.y117{bottom:579.802743px;}
.y16e{bottom:581.648438px;}
.y1ac{bottom:585.046884px;}
.y14f{bottom:585.943338px;}
.yce{bottom:588.580084px;}
.y71{bottom:590.953069px;}
.yd{bottom:591.931630px;}
.y18e{bottom:592.921882px;}
.y97{bottom:593.947266px;}
.yf4{bottom:595.623032px;}
.y1f1{bottom:597.040641px;}
.y225{bottom:597.099609px;}
.yc5{bottom:597.621092px;}
.y14e{bottom:604.839828px;}
.y116{bottom:606.580086px;}
.y16d{bottom:608.419922px;}
.y70{bottom:609.855419px;}
.y18d{bottom:611.818368px;}
.y96{bottom:612.849599px;}
.yc{bottom:613.230463px;}
.yc4{bottom:614.419924px;}
.yf3{bottom:614.519521px;}
.y1f0{bottom:614.999625px;}
.ycd{bottom:615.357426px;}
.y224{bottom:616.001943px;}
.y14d{bottom:623.742177px;}
.y16c{bottom:627.322266px;}
.y13d{bottom:627.480467px;}
.y6f{bottom:628.757767px;}
.y95{bottom:631.751948px;}
.y32{bottom:631.792959px;}
.y1ef{bottom:632.952748px;}
.y115{bottom:633.357428px;}
.yf2{bottom:633.421871px;}
.yb{bottom:634.529297px;}
.yc6{bottom:634.593750px;}
.y1ca{bottom:634.763601px;}
.y223{bottom:634.898433px;}
.yc3{bottom:635.718750px;}
.y136{bottom:636.228519px;}
.y18c{bottom:638.595710px;}
.ycc{bottom:642.128910px;}
.y14c{bottom:642.638667px;}
.y13c{bottom:644.279299px;}
.y6e{bottom:647.654258px;}
.y94{bottom:650.648415px;}
.y31{bottom:650.695308px;}
.y1ee{bottom:650.905875px;}
.yf1{bottom:652.324220px;}
.y1c9{bottom:653.665950px;}
.y222{bottom:653.800782px;}
.y16b{bottom:654.093750px;}
.y137{bottom:656.402344px;}
.y135{bottom:657.527345px;}
.y114{bottom:660.128912px;}
.y14b{bottom:661.541016px;}
.y13e{bottom:664.453125px;}
.y18b{bottom:665.373053px;}
.y13b{bottom:665.578125px;}
.y6d{bottom:666.556607px;}
.y1ed{bottom:668.864859px;}
.ycb{bottom:668.906253px;}
.y93{bottom:669.550764px;}
.y30{bottom:669.597657px;}
.y1c8{bottom:672.568299px;}
.y221{bottom:672.703125px;}
.y18a{bottom:684.269538px;}
.ya{bottom:684.785166px;}
.y6c{bottom:685.453097px;}
.y1ec{bottom:686.817970px;}
.y113{bottom:686.906255px;}
.yf0{bottom:688.171885px;}
.y16a{bottom:689.953092px;}
.y1c7{bottom:691.464789px;}
.y220{bottom:691.599604px;}
.y1ab{bottom:692.144537px;}
.y14a{bottom:692.197266px;}
.yca{bottom:695.830076px;}
.y9{bottom:698.015630px;}
.y2f{bottom:700.248046px;}
.y92{bottom:702.105447px;}
.y6b{bottom:704.355445px;}
.y1eb{bottom:704.771097px;}
.y169{bottom:708.855441px;}
.y1c6{bottom:710.367138px;}
.y21f{bottom:710.501953px;}
.yc9{bottom:710.677734px;}
.y189{bottom:711.046881px;}
.y8{bottom:711.246095px;}
.y112{bottom:713.677738px;}
.yef{bottom:714.943368px;}
.y1aa{bottom:718.921879px;}
.y91{bottom:721.007796px;}
.y1ea{bottom:722.730086px;}
.y6a{bottom:723.257794px;}
.y168{bottom:727.757790px;}
.y1c5{bottom:729.263628px;}
.y188{bottom:729.943366px;}
.y7{bottom:732.199217px;}
.y22{bottom:736.699215px;}
.y213{bottom:737.455500px;}
.y90{bottom:739.910145px;}
.y111{bottom:740.455081px;}
.y1e9{bottom:740.683213px;}
.yee{bottom:741.720711px;}
.y69{bottom:742.154285px;}
.y1a9{bottom:745.693363px;}
.y167{bottom:746.654280px;}
.y1c4{bottom:748.165977px;}
.ye5{bottom:749.384764px;}
.y53{bottom:750.732405px;}
.y6{bottom:751.400391px;}
.y149{bottom:753.345708px;}
.y2e{bottom:755.859369px;}
.y21{bottom:755.900391px;}
.y187{bottom:756.720709px;}
.y1e8{bottom:758.636340px;}
.y8f{bottom:758.806635px;}
.y68{bottom:761.056633px;}
.y166{bottom:765.556629px;}
.ye4{bottom:766.183596px;}
.y1c3{bottom:767.068326px;}
.y110{bottom:767.232424px;}
.yed{bottom:768.498054px;}
.y52{bottom:769.628895px;}
.y1a8{bottom:772.470706px;}
.y2d{bottom:774.761718px;}
.y1e7{bottom:776.595329px;}
.y8e{bottom:777.708984px;}
.y67{bottom:779.953123px;}
.y148{bottom:780.123051px;}
.y186{bottom:783.498051px;}
.y165{bottom:784.453119px;}
.y1c2{bottom:785.964816px;}
.ye3{bottom:787.482421px;}
.y51{bottom:788.531244px;}
.y1a7{bottom:791.373050px;}
.y5{bottom:793.710931px;}
.y10f{bottom:794.003907px;}
.y1e6{bottom:794.548454px;}
.yec{bottom:795.269537px;}
.y8d{bottom:796.605464px;}
.y9b{bottom:801.667968px;}
.y164{bottom:803.355464px;}
.y1c1{bottom:804.867165px;}
.y147{bottom:806.894535px;}
.y50{bottom:807.427730px;}
.y185{bottom:810.269535px;}
.y1e5{bottom:812.501574px;}
.y66{bottom:812.513666px;}
.y2c{bottom:812.642579px;}
.y62{bottom:815.237526px;}
.y8c{bottom:815.507812px;}
.y1a6{bottom:818.144533px;}
.y10e{bottom:820.781250px;}
.yeb{bottom:822.046880px;}
.y163{bottom:822.257799px;}
.y1c0{bottom:823.763655px;}
.yc8{bottom:826.330052px;}
.y4f{bottom:826.330062px;}
.y27{bottom:828.269578px;}
.y1e4{bottom:830.460563px;}
.y4{bottom:831.269532px;}
.y65{bottom:831.416014px;}
.y146{bottom:833.671877px;}
.y61{bottom:834.139875px;}
.y184{bottom:837.046878px;}
.y162{bottom:841.154289px;}
.y1bf{bottom:842.666004px;}
.y1a5{bottom:844.921876px;}
.yc7{bottom:845.232401px;}
.y4e{bottom:845.232411px;}
.y8b{bottom:846.322266px;}
.yea{bottom:848.818364px;}
.y64{bottom:850.312504px;}
.y12c{bottom:859.482420px;}
.y145{bottom:860.443361px;}
.y1be{bottom:861.568353px;}
.y183{bottom:863.818361px;}
.y2b{bottom:864.128891px;}
.y4d{bottom:864.128901px;}
.ya0{bottom:864.128907px;}
.y161{bottom:871.464840px;}
.y1a4{bottom:871.693360px;}
.ye9{bottom:875.595706px;}
.y12b{bottom:876.287108px;}
.y1bd{bottom:880.464843px;}
.y63{bottom:882.873046px;}
.y2a{bottom:883.031239px;}
.y144{bottom:887.220704px;}
.y182{bottom:890.595704px;}
.y12a{bottom:893.085940px;}
.y1a3{bottom:898.470702px;}
.y3{bottom:899.378907px;}
.y160{bottom:901.769532px;}
.y29{bottom:901.927730px;}
.ye8{bottom:902.519529px;}
.y1bc{bottom:911.121093px;}
.y129{bottom:914.384766px;}
.ye7{bottom:917.373046px;}
.y15f{bottom:920.671875px;}
.y28{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y12d{bottom:974.730466px;}
.ye6{bottom:974.730468px;}
.y4c{bottom:974.730470px;}
.ha{height:28.048904px;}
.h1c{height:30.576083px;}
.h10{height:31.993163px;}
.h9{height:32.273438px;}
.h5{height:33.888685px;}
.h1a{height:35.391704px;}
.he{height:35.617086px;}
.h14{height:36.307617px;}
.h1{height:37.651031px;}
.h6{height:37.651075px;}
.hc{height:39.313477px;}
.h4{height:43.032562px;}
.h1e{height:45.991224px;}
.h21{height:45.991277px;}
.h20{height:45.991280px;}
.h19{height:46.041667px;}
.h18{height:46.065102px;}
.h8{height:46.796220px;}
.h2{height:48.410156px;}
.h1d{height:48.410210px;}
.hf{height:48.410222px;}
.hd{height:48.410240px;}
.h13{height:48.410246px;}
.h16{height:48.410264px;}
.h15{height:48.410312px;}
.h17{height:48.410330px;}
.h12{height:48.410570px;}
.h1b{height:48.410672px;}
.h7{height:52.443023px;}
.h3{height:68.582368px;}
.h22{height:197.508000px;}
.hb{height:842.403000px;}
.h1f{height:843.885000px;}
.h11{height:848.431500px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.x16{left:11.584593px;}
.x17{left:45.000609px;}
.x18{left:67.412109px;}
.x3{left:78.662109px;}
.xc{left:83.162109px;}
.x9{left:86.537109px;}
.x14{left:90.246093px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.x11{left:101.162118px;}
.x12{left:105.662109px;}
.x15{left:123.662109px;}
.x7{left:124.787106px;}
.x10{left:127.037108px;}
.xa{left:138.287109px;}
.x1{left:140.308593px;}
.x6{left:167.625000px;}
.xd{left:233.912116px;}
.x13{left:289.019538px;}
.xe{left:295.787121px;}
.x2{left:315.914062px;}
.xb{left:355.968750px;}
.xf{left:514.037133px;}
.x8{left:597.041016px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:7.479174pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.256008pt;}
.lsf{letter-spacing:0.775227pt;}
.lse{letter-spacing:0.820828pt;}
.ls10{letter-spacing:1.185641pt;}
.ls5{letter-spacing:1.296000pt;}
.ls1{letter-spacing:1.312000pt;}
.ls6{letter-spacing:1.312005pt;}
.ls4{letter-spacing:1.536000pt;}
.lsc{letter-spacing:1.584000pt;}
.lsd{letter-spacing:3.504000pt;}
.ls9{letter-spacing:45.619743pt;}
.lsa{letter-spacing:45.657075pt;}
.ls8{letter-spacing:69.984270pt;}
.ls7{letter-spacing:189.609391pt;}
.ls2{letter-spacing:823.839111pt;}
.ws3{word-spacing:-18.781930pt;}
.ws4{word-spacing:-16.759585pt;}
.wsb{word-spacing:-14.592000pt;}
.wsa{word-spacing:-14.448000pt;}
.ws9{word-spacing:-13.296000pt;}
.ws19{word-spacing:-12.631633pt;}
.ws12{word-spacing:-12.075035pt;}
.ws17{word-spacing:-11.861695pt;}
.ws1{word-spacing:-11.819027pt;}
.ws0{word-spacing:-10.340973pt;}
.ws7{word-spacing:-9.341234pt;}
.ws8{word-spacing:0.000000pt;}
.ws2{word-spacing:6.042670pt;}
.wsd{word-spacing:44.910434pt;}
.ws15{word-spacing:64.883072pt;}
.ws14{word-spacing:66.973665pt;}
.wse{word-spacing:84.893041pt;}
.wsf{word-spacing:89.063253pt;}
.ws10{word-spacing:120.918452pt;}
.ws13{word-spacing:136.896561pt;}
.ws11{word-spacing:188.900082pt;}
.ws5{word-spacing:285.952000pt;}
.ws6{word-spacing:325.344000pt;}
.ws18{word-spacing:360.328773pt;}
.ws16{word-spacing:787.998019pt;}
.wsc{word-spacing:788.011992pt;}
._3{margin-left:-9.955391pt;}
._6a{margin-left:-8.786363pt;}
._6c{margin-left:-7.798953pt;}
._9{margin-left:-6.650391pt;}
._c{margin-left:-5.492491pt;}
._20{margin-left:-4.566551pt;}
._15{margin-left:-3.405012pt;}
._4{margin-left:-2.423938pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._e{width:3.597797pt;}
._5{width:4.613426pt;}
._d{width:6.207202pt;}
._a{width:7.106042pt;}
._8{width:8.336833pt;}
._b{width:9.408035pt;}
._16{width:10.385361pt;}
._f{width:11.317555pt;}
._17{width:12.229627pt;}
._1a{width:14.743831pt;}
._7{width:15.711047pt;}
._6{width:16.799210pt;}
._1d{width:17.758800pt;}
._1e{width:19.898843pt;}
._1f{width:21.546558pt;}
._1c{width:29.394678pt;}
._1b{width:39.934866pt;}
._63{width:60.363251pt;}
._61{width:63.387146pt;}
._31{width:66.413685pt;}
._66{width:71.448220pt;}
._32{width:73.805427pt;}
._37{width:75.224044pt;}
._30{width:78.919916pt;}
._18{width:79.991846pt;}
._3b{width:95.234014pt;}
._33{width:99.191209pt;}
._6b{width:102.831524pt;}
._62{width:107.324303pt;}
._64{width:111.097483pt;}
._60{width:112.326795pt;}
._43{width:115.355979pt;}
._3c{width:123.590305pt;}
._44{width:126.742249pt;}
._26{width:131.256780pt;}
._39{width:134.719724pt;}
._5d{width:139.168526pt;}
._42{width:143.573507pt;}
._5e{width:147.088206pt;}
._53{width:150.709413pt;}
._3f{width:154.752852pt;}
._3e{width:163.434148pt;}
._45{width:166.025965pt;}
._65{width:167.135507pt;}
._54{width:174.935257pt;}
._41{width:182.740297pt;}
._2f{width:186.958816pt;}
._19{width:190.025965pt;}
._5f{width:191.475992pt;}
._4e{width:195.097199pt;}
._2e{width:199.203723pt;}
._38{width:202.600938pt;}
._40{width:203.776517pt;}
._5a{width:207.302129pt;}
._52{width:211.299301pt;}
._36{width:212.193845pt;}
._28{width:217.008457pt;}
._27{width:219.101696pt;}
._59{width:223.469544pt;}
._51{width:234.666509pt;}
._5b{width:238.658391pt;}
._3d{width:243.255521pt;}
._68{width:244.148845pt;}
._34{width:251.650337pt;}
._22{width:254.977779pt;}
._3a{width:263.343252pt;}
._5c{width:266.924029pt;}
._11{width:270.849984pt;}
._67{width:271.923877pt;}
._35{width:279.579588pt;}
._57{width:282.976803pt;}
._69{width:298.840272pt;}
._58{width:310.861186pt;}
._50{width:319.263538pt;}
._10{width:322.832992pt;}
._55{width:330.945819pt;}
._4c{width:359.517734pt;}
._4f{width:363.501996pt;}
._12{width:374.208000pt;}
._56{width:375.267192pt;}
._46{width:405.085885pt;}
._4d{width:409.055325pt;}
._4a{width:411.217671pt;}
._48{width:422.753232pt;}
._2b{width:437.069810pt;}
._23{width:437.968424pt;}
._24{width:438.936412pt;}
._21{width:440.059018pt;}
._47{width:444.297809pt;}
._14{width:446.208000pt;}
._29{width:486.844267pt;}
._49{width:495.252038pt;}
._4b{width:507.086329pt;}
._13{width:510.208000pt;}
._25{width:824.845840pt;}
._2a{width:827.160426pt;}
._2d{width:1213.035166pt;}
._2c{width:1215.125760pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs8{font-size:36.000000pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs9{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:55.679685pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y21e{bottom:4.025663pt;}
.y212{bottom:4.025700pt;}
.y211{bottom:19.984035pt;}
.y21d{bottom:19.989208pt;}
.y21c{bottom:35.947541pt;}
.y210{bottom:35.947580pt;}
.y25{bottom:41.541662pt;}
.y21b{bottom:51.905869pt;}
.y20f{bottom:51.905915pt;}
.y24{bottom:52.458331pt;}
.y23{bottom:63.380208pt;}
.y20e{bottom:67.864251pt;}
.y21a{bottom:67.869414pt;}
.y5a{bottom:75.697903pt;}
.y60{bottom:76.917333pt;}
.yc2{bottom:78.546871pt;}
.y1e3{bottom:80.958667pt;}
.y8a{bottom:81.150973pt;}
.y26{bottom:82.276000pt;}
.y219{bottom:83.827749pt;}
.y20d{bottom:83.827792pt;}
.y1e2{bottom:83.906251pt;}
.y10d{bottom:85.442704pt;}
.y181{bottom:85.817721pt;}
.y4b{bottom:86.515605pt;}
.y9a{bottom:86.630193pt;}
.ye2{bottom:87.447915pt;}
.y15e{bottom:88.468737pt;}
.y128{bottom:90.635408pt;}
.y59{bottom:92.499991pt;}
.ya8{bottom:93.041666pt;}
.y1bb{bottom:93.041682pt;}
.y134{bottom:93.291657pt;}
.yc1{bottom:95.348920pt;}
.y89{bottom:97.953061pt;}
.y142{bottom:98.010412pt;}
.y218{bottom:99.786084pt;}
.y20c{bottom:99.786123pt;}
.y1e1{bottom:99.864576pt;}
.ye1{bottom:100.651041pt;}
.y10c{bottom:102.239569pt;}
.y4a{bottom:103.317693pt;}
.y99{bottom:103.432281pt;}
.y15d{bottom:105.270825pt;}
.y127{bottom:107.437496pt;}
.ya7{bottom:107.973961pt;}
.y58{bottom:109.302079pt;}
.y180{bottom:109.619803pt;}
.y133{bottom:110.093745pt;}
.yc0{bottom:112.145800pt;}
.y141{bottom:112.942707pt;}
.y1a2{bottom:114.041678pt;}
.y88{bottom:114.755149pt;}
.y20b{bottom:115.744459pt;}
.y217{bottom:115.749623pt;}
.y1e0{bottom:115.822912pt;}
.y1ba{bottom:116.838556pt;}
.y10b{bottom:119.041657pt;}
.y49{bottom:120.114573pt;}
.y126{bottom:124.239584pt;}
.ye0{bottom:124.447916pt;}
.ya9{bottom:125.906251pt;}
.y132{bottom:126.890616pt;}
.ya6{bottom:126.906251pt;}
.y140{bottom:127.875003pt;}
.y20{bottom:128.531197pt;}
.ybf{bottom:128.947888pt;}
.y87{bottom:131.552029pt;}
.y20a{bottom:131.702786pt;}
.y216{bottom:131.707959pt;}
.y1df{bottom:131.786457pt;}
.y15c{bottom:132.213537pt;}
.y17f{bottom:133.416678pt;}
.y10a{bottom:135.843745pt;}
.y48{bottom:136.916661pt;}
.y1a1{bottom:137.838552pt;}
.y57{bottom:138.098949pt;}
.y1b9{bottom:140.640638pt;}
.y9e{bottom:140.760415pt;}
.y131{bottom:143.692704pt;}
.y1f{bottom:145.328077pt;}
.ybe{bottom:145.744768pt;}
.y143{bottom:145.807292pt;}
.y13f{bottom:146.807292pt;}
.y215{bottom:147.666288pt;}
.y209{bottom:147.666331pt;}
.y1de{bottom:147.744792pt;}
.ydf{bottom:148.249998pt;}
.y86{bottom:148.354117pt;}
.y125{bottom:151.625000pt;}
.y109{bottom:152.640511pt;}
.y47{bottom:153.713537pt;}
.y1a0{bottom:154.640636pt;}
.y56{bottom:154.901037pt;}
.y9d{bottom:155.692711pt;}
.y17e{bottom:157.218760pt;}
.y15b{bottom:159.151041pt;}
.y130{bottom:160.489584pt;}
.y1e{bottom:162.130165pt;}
.ybd{bottom:162.546856pt;}
.y208{bottom:163.624667pt;}
.y214{bottom:163.629833pt;}
.y1dd{bottom:163.703118pt;}
.y1b8{bottom:164.442721pt;}
.y85{bottom:165.150997pt;}
.y46{bottom:170.515620pt;}
.yde{bottom:172.182295pt;}
.y9f{bottom:173.625000pt;}
.y9c{bottom:174.625000pt;}
.y15a{bottom:175.953121pt;}
.y19f{bottom:178.442718pt;}
.y1d{bottom:178.927045pt;}
.ybc{bottom:179.348944pt;}
.y207{bottom:179.583000pt;}
.y1dc{bottom:179.661453pt;}
.y17d{bottom:181.020842pt;}
.y1b7{bottom:181.239597pt;}
.y108{bottom:181.442599pt;}
.y84{bottom:181.953085pt;}
.y55{bottom:183.697917pt;}
.ydd{bottom:187.250007pt;}
.y45{bottom:187.317689pt;}
.y12f{bottom:187.880208pt;}
.y19e{bottom:195.239594pt;}
.y206{bottom:195.546537pt;}
.y1db{bottom:195.624998pt;}
.y1c{bottom:195.729133pt;}
.ybb{bottom:196.145824pt;}
.y107{bottom:198.239479pt;}
.y83{bottom:198.755173pt;}
.ydc{bottom:200.447925pt;}
.y159{bottom:202.890616pt;}
.y17c{bottom:204.817717pt;}
.y1b6{bottom:205.041679pt;}
.y124{bottom:205.984393pt;}
.y54{bottom:211.088541pt;}
.y205{bottom:211.504873pt;}
.y1da{bottom:211.583333pt;}
.y19d{bottom:212.041678pt;}
.y1b{bottom:212.531221pt;}
.yba{bottom:212.947912pt;}
.y106{bottom:215.041567pt;}
.y82{bottom:215.552053pt;}
.y44{bottom:216.114569pt;}
.ydb{bottom:224.380222pt;}
.y204{bottom:227.463208pt;}
.y1d9{bottom:227.541667pt;}
.y17b{bottom:228.619799pt;}
.y1b5{bottom:228.838553pt;}
.y1a{bottom:229.328101pt;}
.yb9{bottom:229.744792pt;}
.y123{bottom:229.781268pt;}
.y158{bottom:229.833328pt;}
.y105{bottom:231.843655pt;}
.y81{bottom:232.354141pt;}
.y43{bottom:232.916657pt;}
.y19c{bottom:235.838552pt;}
.y12e{bottom:237.312500pt;}
.yda{bottom:237.583348pt;}
.y203{bottom:243.426747pt;}
.y1d8{bottom:243.505200pt;}
.y19{bottom:246.130189pt;}
.y157{bottom:246.635416pt;}
.y104{bottom:248.640535pt;}
.y42{bottom:249.713537pt;}
.y17a{bottom:252.416674pt;}
.y19b{bottom:252.640636pt;}
.y122{bottom:253.583350pt;}
.yb8{bottom:258.687496pt;}
.y202{bottom:259.385082pt;}
.y1d7{bottom:259.463536pt;}
.y80{bottom:261.291637pt;}
.yd9{bottom:261.380223pt;}
.y18{bottom:262.927069pt;}
.y103{bottom:265.442623pt;}
.y41{bottom:266.515620pt;}
.y5e{bottom:271.046873pt;}
.y156{bottom:274.020833pt;}
.y139{bottom:274.781252pt;}
.y201{bottom:275.343417pt;}
.y1d6{bottom:275.421871pt;}
.yb7{bottom:275.489560pt;}
.y179{bottom:276.218756pt;}
.y19a{bottom:276.442718pt;}
.y121{bottom:277.380224pt;}
.y7f{bottom:278.093725pt;}
.y17{bottom:279.729157pt;}
.y102{bottom:282.239503pt;}
.y40{bottom:283.317704pt;}
.yd8{bottom:285.182305pt;}
.y5d{bottom:285.984374pt;}
.y200{bottom:291.306959pt;}
.y1d5{bottom:291.385416pt;}
.yb6{bottom:292.286440pt;}
.y13a{bottom:292.713541pt;}
.y178{bottom:293.020839pt;}
.y199{bottom:293.239594pt;}
.y138{bottom:293.713541pt;}
.y7e{bottom:294.895813pt;}
.y16{bottom:296.531245pt;}
.y101{bottom:299.041591pt;}
.y3f{bottom:300.114579pt;}
.y5c{bottom:300.916669pt;}
.y120{bottom:301.182307pt;}
.y1ff{bottom:307.265286pt;}
.y1d4{bottom:307.343749pt;}
.yd7{bottom:308.984387pt;}
.yb5{bottom:309.088528pt;}
.y15{bottom:313.328116pt;}
.y100{bottom:315.843679pt;}
.y177{bottom:316.817714pt;}
.y3e{bottom:316.916657pt;}
.y198{bottom:317.041676pt;}
.y5f{bottom:318.848959pt;}
.y5b{bottom:319.848959pt;}
.y1fe{bottom:323.223621pt;}
.y1d3{bottom:323.302076pt;}
.y155{bottom:323.453116pt;}
.y7d{bottom:323.692693pt;}
.y11f{bottom:324.984389pt;}
.yb4{bottom:325.885408pt;}
.y14{bottom:330.130204pt;}
.yff{bottom:332.640559pt;}
.yd6{bottom:332.781262pt;}
.y3d{bottom:333.713537pt;}
.y1b4{bottom:333.838552pt;}
.y1fd{bottom:339.187167pt;}
.y1d2{bottom:339.265621pt;}
.y154{bottom:340.255204pt;}
.y7c{bottom:340.494781pt;}
.y176{bottom:340.619796pt;}
.y197{bottom:340.838551pt;}
.yb3{bottom:342.687496pt;}
.y13{bottom:346.927084pt;}
.y11e{bottom:348.781263pt;}
.y3c{bottom:350.515620pt;}
.y1fc{bottom:355.145500pt;}
.y1d1{bottom:355.223957pt;}
.yd5{bottom:356.583344pt;}
.y7b{bottom:357.291661pt;}
.y1b3{bottom:357.640634pt;}
.yb2{bottom:359.489549pt;}
.yfe{bottom:361.442647pt;}
.y175{bottom:364.416671pt;}
.y196{bottom:364.640633pt;}
.y153{bottom:367.192708pt;}
.y3b{bottom:367.317689pt;}
.y1fb{bottom:371.103829pt;}
.y1d0{bottom:371.182292pt;}
.y11d{bottom:372.583346pt;}
.y7a{bottom:374.093657pt;}
.y1b2{bottom:374.442718pt;}
.yb1{bottom:376.286429pt;}
.yfd{bottom:378.239527pt;}
.yd4{bottom:380.380218pt;}
.y12{bottom:380.598959pt;}
.y174{bottom:381.218754pt;}
.y3a{bottom:384.114569pt;}
.y1fa{bottom:387.067375pt;}
.y195{bottom:388.442715pt;}
.y79{bottom:390.895745pt;}
.yb0{bottom:393.088517pt;}
.y152{bottom:394.583333pt;}
.yfc{bottom:395.041615pt;}
.y11c{bottom:396.380220pt;}
.y1b1{bottom:398.239592pt;}
.y39{bottom:400.916657pt;}
.y1f9{bottom:403.025704pt;}
.yd3{bottom:404.182301pt;}
.y1cf{bottom:404.526041pt;}
.y173{bottom:405.020837pt;}
.y194{bottom:405.239591pt;}
.y78{bottom:407.692625pt;}
.yaf{bottom:409.885397pt;}
.yfb{bottom:411.843703pt;}
.y1b0{bottom:415.041676pt;}
.y11{bottom:415.937500pt;}
.y38{bottom:417.713537pt;}
.y1f8{bottom:418.984039pt;}
.y11b{bottom:420.182303pt;}
.y193{bottom:422.041675pt;}
.y77{bottom:424.494713pt;}
.yae{bottom:426.687485pt;}
.yd2{bottom:427.984383pt;}
.yfa{bottom:428.640583pt;}
.y172{bottom:428.817711pt;}
.y37{bottom:434.515620pt;}
.y1f7{bottom:434.947584pt;}
.y1af{bottom:438.838550pt;}
.y76{bottom:441.291593pt;}
.ya4{bottom:441.968745pt;}
.yad{bottom:443.489573pt;}
.y11a{bottom:443.984385pt;}
.y151{bottom:444.015625pt;}
.yf9{bottom:445.442671pt;}
.y171{bottom:445.619795pt;}
.y192{bottom:445.838549pt;}
.y1f6{bottom:450.905906pt;}
.y36{bottom:451.317704pt;}
.yd1{bottom:451.781257pt;}
.y1ce{bottom:453.958324pt;}
.y1ae{bottom:455.640634pt;}
.ya3{bottom:456.901040pt;}
.y75{bottom:458.093681pt;}
.yac{bottom:460.286453pt;}
.yf8{bottom:462.239551pt;}
.y191{bottom:462.640633pt;}
.y1f5{bottom:466.864241pt;}
.y119{bottom:467.781259pt;}
.y35{bottom:468.114579pt;}
.y170{bottom:469.416669pt;}
.y1cd{bottom:470.755204pt;}
.y150{bottom:471.406251pt;}
.ya2{bottom:471.833336pt;}
.y74{bottom:474.895769pt;}
.yd0{bottom:475.583340pt;}
.yab{bottom:477.088536pt;}
.y10{bottom:477.359365pt;}
.yf7{bottom:479.041639pt;}
.y1ad{bottom:479.442716pt;}
.y1f4{bottom:482.827786pt;}
.y34{bottom:484.916667pt;}
.y190{bottom:486.442715pt;}
.y1cc{bottom:487.557292pt;}
.ya5{bottom:489.765625pt;}
.ya1{bottom:490.765625pt;}
.y118{bottom:491.583342pt;}
.y73{bottom:491.692649pt;}
.yf{bottom:492.291655pt;}
.y16f{bottom:493.218752pt;}
.yaa{bottom:493.885416pt;}
.yf6{bottom:495.843727pt;}
.y227{bottom:497.156245pt;}
.y1f3{bottom:498.786121pt;}
.ycf{bottom:499.380214pt;}
.y18f{bottom:503.239591pt;}
.ye{bottom:507.229153pt;}
.y72{bottom:508.494737pt;}
.y98{bottom:511.156245pt;}
.y33{bottom:512.166667pt;}
.yf5{bottom:512.640607pt;}
.y226{bottom:513.958333pt;}
.y1f2{bottom:514.744457pt;}
.y1cb{bottom:514.807292pt;}
.y117{bottom:515.380216pt;}
.y16e{bottom:517.020834pt;}
.y1ac{bottom:520.041675pt;}
.y14f{bottom:520.838523pt;}
.yce{bottom:523.182297pt;}
.y71{bottom:525.291617pt;}
.yd{bottom:526.161449pt;}
.y18e{bottom:527.041673pt;}
.y97{bottom:527.953125pt;}
.yf4{bottom:529.442695pt;}
.y1f1{bottom:530.702792pt;}
.y225{bottom:530.755208pt;}
.yc5{bottom:531.218748pt;}
.y14e{bottom:537.635403pt;}
.y116{bottom:539.182298pt;}
.y16d{bottom:540.817708pt;}
.y70{bottom:542.093705pt;}
.y18d{bottom:543.838549pt;}
.y96{bottom:544.755199pt;}
.yc{bottom:545.093745pt;}
.yc4{bottom:546.151044pt;}
.yf3{bottom:546.239575pt;}
.y1f0{bottom:546.666333pt;}
.ycd{bottom:546.984379pt;}
.y224{bottom:547.557283pt;}
.y14d{bottom:554.437491pt;}
.y16c{bottom:557.619792pt;}
.y13d{bottom:557.760415pt;}
.y6f{bottom:558.895793pt;}
.y95{bottom:561.557287pt;}
.y32{bottom:561.593741pt;}
.y1ef{bottom:562.624665pt;}
.y115{bottom:562.984381pt;}
.yf2{bottom:563.041663pt;}
.yb{bottom:564.026041pt;}
.yc6{bottom:564.083333pt;}
.y1ca{bottom:564.234312pt;}
.y223{bottom:564.354163pt;}
.yc3{bottom:565.083333pt;}
.y136{bottom:565.536461pt;}
.y18c{bottom:567.640631pt;}
.ycc{bottom:570.781253pt;}
.y14c{bottom:571.234371pt;}
.y13c{bottom:572.692711pt;}
.y6e{bottom:575.692673pt;}
.y94{bottom:578.354147pt;}
.y31{bottom:578.395829pt;}
.y1ee{bottom:578.583000pt;}
.yf1{bottom:579.843751pt;}
.y1c9{bottom:581.036400pt;}
.y222{bottom:581.156251pt;}
.y16b{bottom:581.416667pt;}
.y137{bottom:583.468751pt;}
.y135{bottom:584.468751pt;}
.y114{bottom:586.781255pt;}
.y14b{bottom:588.036459pt;}
.y13e{bottom:590.625000pt;}
.y18b{bottom:591.442714pt;}
.y13b{bottom:591.625000pt;}
.y6d{bottom:592.494761pt;}
.y1ed{bottom:594.546541pt;}
.ycb{bottom:594.583336pt;}
.y93{bottom:595.156235pt;}
.y30{bottom:595.197917pt;}
.y1c8{bottom:597.838488pt;}
.y221{bottom:597.958333pt;}
.y18a{bottom:608.239589pt;}
.ya{bottom:608.697926pt;}
.y6c{bottom:609.291641pt;}
.y1ec{bottom:610.504862pt;}
.y113{bottom:610.583337pt;}
.yf0{bottom:611.708342pt;}
.y16a{bottom:613.291637pt;}
.y1c7{bottom:614.635368pt;}
.y220{bottom:614.755204pt;}
.y1ab{bottom:615.239588pt;}
.y14a{bottom:615.286459pt;}
.yca{bottom:618.515623pt;}
.y9{bottom:620.458338pt;}
.y2f{bottom:622.442708pt;}
.y92{bottom:624.093731pt;}
.y6b{bottom:626.093729pt;}
.y1eb{bottom:626.463198pt;}
.y169{bottom:630.093725pt;}
.y1c6{bottom:631.437456pt;}
.y21f{bottom:631.557292pt;}
.yc9{bottom:631.713541pt;}
.y189{bottom:632.041672pt;}
.y8{bottom:632.218751pt;}
.y112{bottom:634.380212pt;}
.yef{bottom:635.505216pt;}
.y1aa{bottom:639.041670pt;}
.y91{bottom:640.895819pt;}
.y1ea{bottom:642.426743pt;}
.y6a{bottom:642.895817pt;}
.y168{bottom:646.895813pt;}
.y1c5{bottom:648.234336pt;}
.y188{bottom:648.838548pt;}
.y7{bottom:650.843749pt;}
.y22{bottom:654.843747pt;}
.y213{bottom:655.516000pt;}
.y90{bottom:657.697907pt;}
.y111{bottom:658.182294pt;}
.y1e9{bottom:658.385078pt;}
.yee{bottom:659.307299pt;}
.y69{bottom:659.692697pt;}
.y1a9{bottom:662.838545pt;}
.y167{bottom:663.692693pt;}
.y1c4{bottom:665.036424pt;}
.ye5{bottom:666.119790pt;}
.y53{bottom:667.317693pt;}
.y6{bottom:667.911459pt;}
.y149{bottom:669.640629pt;}
.y2e{bottom:671.874995pt;}
.y21{bottom:671.911459pt;}
.y187{bottom:672.640630pt;}
.y1e8{bottom:674.343413pt;}
.y8f{bottom:674.494787pt;}
.y68{bottom:676.494785pt;}
.y166{bottom:680.494781pt;}
.ye4{bottom:681.052085pt;}
.y1c3{bottom:681.838512pt;}
.y110{bottom:681.984377pt;}
.yed{bottom:683.109381pt;}
.y52{bottom:684.114573pt;}
.y1a8{bottom:686.640627pt;}
.y2d{bottom:688.677083pt;}
.y1e7{bottom:690.306959pt;}
.y8e{bottom:691.296875pt;}
.y67{bottom:693.291665pt;}
.y148{bottom:693.442712pt;}
.y186{bottom:696.442712pt;}
.y165{bottom:697.291661pt;}
.y1c2{bottom:698.635392pt;}
.ye3{bottom:699.984375pt;}
.y51{bottom:700.916661pt;}
.y1a7{bottom:703.442711pt;}
.y5{bottom:705.520828pt;}
.y10f{bottom:705.781251pt;}
.y1e6{bottom:706.265292pt;}
.yec{bottom:706.906255pt;}
.y8d{bottom:708.093745pt;}
.y9b{bottom:712.593749pt;}
.y164{bottom:714.093745pt;}
.y1c1{bottom:715.437480pt;}
.y147{bottom:717.239586pt;}
.y50{bottom:717.713537pt;}
.y185{bottom:720.239587pt;}
.y1e5{bottom:722.223621pt;}
.y66{bottom:722.234369pt;}
.y2c{bottom:722.348959pt;}
.y62{bottom:724.655579pt;}
.y8c{bottom:724.895833pt;}
.y1a6{bottom:727.239585pt;}
.y10e{bottom:729.583333pt;}
.yeb{bottom:730.708338pt;}
.y163{bottom:730.895821pt;}
.y1c0{bottom:732.234360pt;}
.yc8{bottom:734.515601pt;}
.y4f{bottom:734.515611pt;}
.y27{bottom:736.239625pt;}
.y1e4{bottom:738.187167pt;}
.y4{bottom:738.906251pt;}
.y65{bottom:739.036457pt;}
.y146{bottom:741.041669pt;}
.y61{bottom:741.457667pt;}
.y184{bottom:744.041669pt;}
.y162{bottom:747.692701pt;}
.y1bf{bottom:749.036448pt;}
.y1a5{bottom:751.041668pt;}
.yc7{bottom:751.317689pt;}
.y4e{bottom:751.317699pt;}
.y8b{bottom:752.286459pt;}
.yea{bottom:754.505212pt;}
.y64{bottom:755.833337pt;}
.y12c{bottom:763.984373pt;}
.y145{bottom:764.838543pt;}
.y1be{bottom:765.838536pt;}
.y183{bottom:767.838543pt;}
.y2b{bottom:768.114569pt;}
.y4d{bottom:768.114579pt;}
.ya0{bottom:768.114584pt;}
.y161{bottom:774.635413pt;}
.y1a4{bottom:774.838542pt;}
.ye9{bottom:778.307294pt;}
.y12b{bottom:778.921874pt;}
.y1bd{bottom:782.635416pt;}
.y63{bottom:784.776041pt;}
.y2a{bottom:784.916657pt;}
.y144{bottom:788.640625pt;}
.y182{bottom:791.640626pt;}
.y12a{bottom:793.854169pt;}
.y1a3{bottom:798.640624pt;}
.y3{bottom:799.447917pt;}
.y160{bottom:801.572917pt;}
.y29{bottom:801.713537pt;}
.ye8{bottom:802.239582pt;}
.y1bc{bottom:809.885416pt;}
.y129{bottom:812.786459pt;}
.ye7{bottom:815.442708pt;}
.y15f{bottom:818.375000pt;}
.y28{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y12d{bottom:866.427081pt;}
.ye6{bottom:866.427083pt;}
.y4c{bottom:866.427084pt;}
.ha{height:24.932359pt;}
.h1c{height:27.178740pt;}
.h10{height:28.438367pt;}
.h9{height:28.687500pt;}
.h5{height:30.123276pt;}
.h1a{height:31.459293pt;}
.he{height:31.659632pt;}
.h14{height:32.273438pt;}
.h1{height:33.467583pt;}
.h6{height:33.467622pt;}
.hc{height:34.945312pt;}
.h4{height:38.251167pt;}
.h1e{height:40.881088pt;}
.h21{height:40.881135pt;}
.h20{height:40.881137pt;}
.h19{height:40.925926pt;}
.h18{height:40.946757pt;}
.h8{height:41.596640pt;}
.h2{height:43.031250pt;}
.h1d{height:43.031298pt;}
.hf{height:43.031309pt;}
.hd{height:43.031325pt;}
.h13{height:43.031330pt;}
.h16{height:43.031346pt;}
.h15{height:43.031389pt;}
.h17{height:43.031405pt;}
.h12{height:43.031618pt;}
.h1b{height:43.031709pt;}
.h7{height:46.616020pt;}
.h3{height:60.962105pt;}
.h22{height:175.562667pt;}
.hb{height:748.802667pt;}
.h1f{height:750.120000pt;}
.h11{height:754.161333pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.x16{left:10.297416pt;}
.x17{left:40.000541pt;}
.x18{left:59.921875pt;}
.x3{left:69.921875pt;}
.xc{left:73.921875pt;}
.x9{left:76.921875pt;}
.x14{left:80.218749pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.x11{left:89.921883pt;}
.x12{left:93.921875pt;}
.x15{left:109.921874pt;}
.x7{left:110.921872pt;}
.x10{left:112.921874pt;}
.xa{left:122.921875pt;}
.x1{left:124.718749pt;}
.x6{left:149.000000pt;}
.xd{left:207.921881pt;}
.x13{left:256.906256pt;}
.xe{left:262.921885pt;}
.x2{left:280.812500pt;}
.xb{left:316.416667pt;}
.xf{left:456.921896pt;}
.x8{left:530.703125pt;}
}




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