
    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_3a3cdb0864e1bd94d0c79f55.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_52c71620c4506a0b59028cb3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_4838d756dc96e801b2de19bf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_f30d97b7bacc647af4149e5d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1b2fba249d1c81c482cbe789.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_ff77677f8c46e48cd42f73bd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b6bb1df069b9bf8c752c19ce.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901855;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_e7df6fe3432aecd612b1b1b4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.894531;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;}
.m1{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010620px;}
.ls4{letter-spacing:0.021253px;}
.ls3{letter-spacing:0.152160px;}
.ls5{letter-spacing:34.015860px;}
.ls2{letter-spacing:64.268400px;}
.ls6{letter-spacing:148.410600px;}
.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;}
}
.ws2{word-spacing:-18.021253px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:0.000000px;}
._1c{margin-left:-15.310401px;}
._1d{margin-left:-13.369430px;}
._21{margin-left:-11.785335px;}
._24{margin-left:-10.424164px;}
._20{margin-left:-9.418192px;}
._1b{margin-left:-5.858762px;}
._4{margin-left:-2.698707px;}
._1{margin-left:-1.165969px;}
._0{width:1.074185px;}
._12{width:2.199621px;}
._11{width:3.678375px;}
._10{width:5.112668px;}
._a{width:6.847281px;}
._7{width:8.471140px;}
._6{width:9.478363px;}
._14{width:10.537012px;}
._13{width:11.556545px;}
._9{width:13.177349px;}
._8{width:14.405869px;}
._d{width:15.812126px;}
._15{width:16.829851px;}
._1a{width:18.335243px;}
._2{width:19.448821px;}
._19{width:20.802845px;}
._2b{width:21.809433px;}
._f{width:23.104569px;}
._e{width:24.420365px;}
._18{width:26.368624px;}
._c{width:27.870159px;}
._b{width:29.521442px;}
._2d{width:31.000717px;}
._29{width:32.282458px;}
._26{width:33.762202px;}
._17{width:34.803533px;}
._16{width:36.151443px;}
._1f{width:38.913138px;}
._23{width:40.760216px;}
._27{width:42.085133px;}
._5{width:43.283962px;}
._3{width:44.413365px;}
._2e{width:45.785157px;}
._3c{width:48.512116px;}
._2a{width:51.988729px;}
._25{width:54.254578px;}
._28{width:57.225445px;}
._37{width:60.435916px;}
._41{width:61.936737px;}
._1e{width:74.479550px;}
._43{width:86.227187px;}
._42{width:87.306104px;}
._45{width:90.559206px;}
._33{width:92.698074px;}
._3e{width:93.928802px;}
._31{width:96.435668px;}
._36{width:98.913170px;}
._32{width:100.431753px;}
._3b{width:102.920881px;}
._22{width:104.908689px;}
._30{width:106.161014px;}
._44{width:107.252900px;}
._3d{width:110.937023px;}
._39{width:112.003997px;}
._34{width:120.165934px;}
._2c{width:121.770000px;}
._3a{width:124.520161px;}
._40{width:128.492795px;}
._35{width:132.535173px;}
._3f{width:208.254266px;}
._2f{width:226.254440px;}
._38{width:244.253893px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:45.663840px;}
.fs8{font-size:53.479440px;}
.fs1{font-size:59.760000px;}
.fs6{font-size:62.654400px;}
.fs7{font-size:64.800000px;}
.fs4{font-size:69.865200px;}
.fs5{font-size:70.560000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:72.084000px;}
.fs9{font-size:85.680000px;}
.y0{bottom:0.000000px;}
.y20e{bottom:3.960000px;}
.y24d{bottom:3.961500px;}
.yf9{bottom:110.641650px;}
.yd6{bottom:112.083750px;}
.y236{bottom:117.480450px;}
.y202{bottom:120.003000px;}
.y140{bottom:120.005250px;}
.y1e8{bottom:120.360450px;}
.y1b8{bottom:120.361050px;}
.y8c{bottom:120.362400px;}
.y85{bottom:120.362700px;}
.y24{bottom:121.804350px;}
.y15e{bottom:125.402550px;}
.yac{bottom:127.380750px;}
.y18b{bottom:130.978050px;}
.yf8{bottom:131.881950px;}
.yd5{bottom:133.324050px;}
.y113{bottom:133.504650px;}
.y235{bottom:138.720750px;}
.y8b{bottom:141.239400px;}
.y201{bottom:141.600600px;}
.y1e7{bottom:141.600750px;}
.y1b7{bottom:141.601350px;}
.y44{bottom:141.960600px;}
.yab{bottom:148.621050px;}
.y13f{bottom:151.862700px;}
.y18a{bottom:152.218350px;}
.y84{bottom:152.220150px;}
.y12d{bottom:152.220600px;}
.yf7{bottom:153.122250px;}
.y23{bottom:153.661800px;}
.yd4{bottom:154.564350px;}
.y15d{bottom:157.265850px;}
.y65{bottom:158.161500px;}
.y234{bottom:161.044200px;}
.y8a{bottom:162.479700px;}
.y200{bottom:162.840900px;}
.y1e6{bottom:162.841050px;}
.y1b6{bottom:162.841650px;}
.y7c{bottom:164.103600px;}
.y112{bottom:165.362100px;}
.yaa{bottom:169.861350px;}
.y189{bottom:173.458650px;}
.y43{bottom:173.823900px;}
.yf6{bottom:174.362550px;}
.yd3{bottom:175.804650px;}
.y233{bottom:182.284500px;}
.y89{bottom:183.720000px;}
.y13e{bottom:183.720150px;}
.y1ff{bottom:184.081200px;}
.y1e5{bottom:184.081350px;}
.y1b5{bottom:184.081950px;}
.y83{bottom:184.083450px;}
.y12c{bottom:184.083900px;}
.y22{bottom:185.525100px;}
.y64{bottom:187.506450px;}
.y15c{bottom:188.765850px;}
.ya9{bottom:191.101650px;}
.y188{bottom:194.698950px;}
.yf5{bottom:195.602850px;}
.y7b{bottom:195.961050px;}
.yd2{bottom:197.044950px;}
.y111{bottom:197.219550px;}
.y232{bottom:204.604200px;}
.y88{bottom:204.960300px;}
.y1fe{bottom:205.321500px;}
.y1e4{bottom:205.321650px;}
.y1b4{bottom:205.322250px;}
.y42{bottom:205.681350px;}
.ya8{bottom:212.341950px;}
.y63{bottom:213.961500px;}
.y13d{bottom:215.583450px;}
.y187{bottom:215.939250px;}
.y82{bottom:215.940900px;}
.y12b{bottom:215.941350px;}
.yf4{bottom:216.843150px;}
.y21{bottom:217.740000px;}
.yd1{bottom:218.285250px;}
.y15b{bottom:220.623300px;}
.y231{bottom:225.844500px;}
.y87{bottom:226.200600px;}
.y1fd{bottom:226.561800px;}
.y1e3{bottom:226.561950px;}
.y1b3{bottom:226.562550px;}
.y7a{bottom:227.824350px;}
.y110{bottom:229.440300px;}
.ya7{bottom:233.582250px;}
.y186{bottom:237.179550px;}
.y41{bottom:237.544650px;}
.yf3{bottom:238.083450px;}
.yd0{bottom:239.525550px;}
.y62{bottom:240.422400px;}
.y86{bottom:247.440900px;}
.y1fc{bottom:247.802100px;}
.y1e2{bottom:247.802250px;}
.y1b2{bottom:247.802850px;}
.y81{bottom:247.804200px;}
.y12a{bottom:247.804650px;}
.y230{bottom:248.162700px;}
.y20{bottom:249.603300px;}
.y10f{bottom:250.323150px;}
.y15a{bottom:252.480750px;}
.ya6{bottom:254.822550px;}
.y185{bottom:258.419850px;}
.yf2{bottom:259.323750px;}
.y79{bottom:259.681800px;}
.ycf{bottom:260.765850px;}
.y61{bottom:266.883300px;}
.y1fb{bottom:269.042400px;}
.y1e1{bottom:269.042550px;}
.y1b1{bottom:269.043150px;}
.y40{bottom:269.402100px;}
.y22f{bottom:269.403000px;}
.y10e{bottom:271.563450px;}
.ya5{bottom:276.062850px;}
.yf1{bottom:276.603000px;}
.y13c{bottom:279.304200px;}
.y184{bottom:279.660150px;}
.y80{bottom:279.661650px;}
.y129{bottom:279.662100px;}
.y1f{bottom:281.460750px;}
.yce{bottom:282.006150px;}
.y159{bottom:284.701500px;}
.y1fa{bottom:290.282700px;}
.y1e0{bottom:290.282850px;}
.y1b0{bottom:290.283450px;}
.y78{bottom:291.545100px;}
.y22e{bottom:291.721200px;}
.y10d{bottom:292.803750px;}
.y60{bottom:293.344200px;}
.ya4{bottom:297.303150px;}
.y183{bottom:300.900450px;}
.y3f{bottom:301.265400px;}
.ycd{bottom:303.240600px;}
.y13b{bottom:311.161650px;}
.y1f9{bottom:311.523000px;}
.y1df{bottom:311.523150px;}
.y1af{bottom:311.523750px;}
.y7f{bottom:311.524950px;}
.y128{bottom:311.525400px;}
.y22d{bottom:312.961500px;}
.y1e{bottom:313.324050px;}
.y10c{bottom:314.044050px;}
.yf0{bottom:314.403000px;}
.y158{bottom:316.564800px;}
.ya3{bottom:318.543450px;}
.y5f{bottom:319.805100px;}
.y182{bottom:322.140750px;}
.y77{bottom:323.402550px;}
.ycc{bottom:324.480900px;}
.y1f8{bottom:332.763300px;}
.y1de{bottom:332.763450px;}
.y1ae{bottom:332.764050px;}
.y3e{bottom:333.122850px;}
.y10b{bottom:335.284350px;}
.y22c{bottom:335.285700px;}
.ya2{bottom:339.783750px;}
.ycb{bottom:341.766000px;}
.y13a{bottom:343.024950px;}
.y181{bottom:343.381050px;}
.y7e{bottom:343.382400px;}
.y127{bottom:343.382850px;}
.y1d{bottom:345.181500px;}
.y5e{bottom:346.266000px;}
.y157{bottom:348.422250px;}
.yef{bottom:350.766000px;}
.y1f7{bottom:354.003600px;}
.y1dd{bottom:354.003750px;}
.y1ad{bottom:354.004350px;}
.y76{bottom:355.265850px;}
.y10a{bottom:356.524650px;}
.y22b{bottom:356.526000px;}
.ya1{bottom:361.024050px;}
.y180{bottom:364.621350px;}
.y3d{bottom:364.980300px;}
.y1ac{bottom:374.881350px;}
.y139{bottom:374.882400px;}
.y1f6{bottom:375.238050px;}
.y1dc{bottom:375.238200px;}
.y5d{bottom:375.239850px;}
.y126{bottom:375.240300px;}
.y1c{bottom:377.044800px;}
.y109{bottom:377.764950px;}
.y22a{bottom:378.844200px;}
.y156{bottom:380.285550px;}
.ya0{bottom:382.264350px;}
.y17f{bottom:385.861650px;}
.y75{bottom:387.123300px;}
.yee{bottom:387.304500px;}
.y1ab{bottom:396.121650px;}
.y1f5{bottom:396.478350px;}
.y1db{bottom:396.478500px;}
.y3c{bottom:396.843600px;}
.y108{bottom:399.005250px;}
.y229{bottom:400.084500px;}
.y9f{bottom:403.504650px;}
.yca{bottom:403.506000px;}
.y138{bottom:406.739850px;}
.y17e{bottom:407.101950px;}
.y5c{bottom:407.103150px;}
.y125{bottom:407.103600px;}
.y1b{bottom:408.902250px;}
.y155{bottom:412.143000px;}
.y107{bottom:416.284500px;}
.y1aa{bottom:417.361950px;}
.y1f4{bottom:417.718650px;}
.y1da{bottom:417.718800px;}
.y74{bottom:418.980750px;}
.y25a{bottom:422.401500px;}
.y228{bottom:422.402700px;}
.yed{bottom:422.403000px;}
.y9e{bottom:424.739100px;}
.y17d{bottom:428.342250px;}
.y3b{bottom:428.701050px;}
.yc9{bottom:429.960600px;}
.y137{bottom:438.603150px;}
.y1f3{bottom:438.958950px;}
.y1d9{bottom:438.959100px;}
.y1a9{bottom:438.959550px;}
.y5b{bottom:438.960600px;}
.y124{bottom:438.961050px;}
.y1a{bottom:440.765550px;}
.y259{bottom:443.641800px;}
.y227{bottom:443.643000px;}
.y154{bottom:444.006300px;}
.y9d{bottom:445.979400px;}
.y73{bottom:448.324500px;}
.y17c{bottom:449.582550px;}
.yc8{bottom:451.921500px;}
.y106{bottom:457.863300px;}
.yec{bottom:458.766000px;}
.y1f2{bottom:460.199250px;}
.y1d8{bottom:460.199400px;}
.y1a8{bottom:460.199850px;}
.y3a{bottom:460.564350px;}
.y258{bottom:464.882100px;}
.y226{bottom:465.961200px;}
.y9c{bottom:467.219700px;}
.y136{bottom:470.460600px;}
.y17b{bottom:470.822850px;}
.y5a{bottom:470.823900px;}
.y123{bottom:470.824350px;}
.y19{bottom:472.623000px;}
.y72{bottom:474.785400px;}
.y153{bottom:475.863750px;}
.y1f1{bottom:481.439550px;}
.y1d7{bottom:481.439700px;}
.y1a7{bottom:481.440150px;}
.y105{bottom:483.064500px;}
.y257{bottom:486.122400px;}
.y225{bottom:487.201500px;}
.y9b{bottom:488.460000px;}
.y17a{bottom:492.063150px;}
.y39{bottom:492.421800px;}
.yeb{bottom:495.304500px;}
.y71{bottom:501.240450px;}
.yc7{bottom:501.961500px;}
.y59{bottom:502.323900px;}
.y1f0{bottom:502.679850px;}
.y1d6{bottom:502.680000px;}
.y1a6{bottom:502.680450px;}
.y7d{bottom:502.681350px;}
.y122{bottom:502.681800px;}
.yb3{bottom:504.304500px;}
.y18{bottom:504.480450px;}
.y256{bottom:507.362700px;}
.y152{bottom:507.721200px;}
.y224{bottom:509.525700px;}
.y9a{bottom:509.700300px;}
.yea{bottom:511.505250px;}
.y179{bottom:513.303450px;}
.y1ef{bottom:523.920150px;}
.y1d5{bottom:523.920300px;}
.y1a5{bottom:523.920750px;}
.y38{bottom:524.285100px;}
.y70{bottom:527.701350px;}
.y255{bottom:528.603000px;}
.y223{bottom:530.766000px;}
.y99{bottom:530.940600px;}
.y104{bottom:530.941500px;}
.ye9{bottom:531.661500px;}
.y135{bottom:534.181350px;}
.y178{bottom:534.543750px;}
.y58{bottom:534.544650px;}
.y121{bottom:534.545100px;}
.y17{bottom:536.343750px;}
.yb2{bottom:538.681500px;}
.y151{bottom:539.584500px;}
.y1ee{bottom:545.160450px;}
.y1d4{bottom:545.160600px;}
.y1a4{bottom:545.161050px;}
.y254{bottom:550.921200px;}
.yc6{bottom:552.006000px;}
.y98{bottom:552.180900px;}
.y222{bottom:553.084200px;}
.y6f{bottom:554.162250px;}
.y177{bottom:555.784050px;}
.y37{bottom:556.142550px;}
.yb1{bottom:557.584635px;}
.ye8{bottom:559.025100px;}
.y134{bottom:566.044650px;}
.y1ed{bottom:566.400750px;}
.y1d3{bottom:566.400900px;}
.y1a3{bottom:566.401350px;}
.y57{bottom:566.402100px;}
.y120{bottom:566.402550px;}
.y16{bottom:568.201200px;}
.yb0{bottom:570.903000px;}
.y150{bottom:571.441950px;}
.y253{bottom:572.161500px;}
.y97{bottom:573.421200px;}
.y221{bottom:574.324500px;}
.y176{bottom:577.024350px;}
.ye7{bottom:579.902100px;}
.y103{bottom:580.084500px;}
.y6e{bottom:580.623150px;}
.y1ec{bottom:587.641050px;}
.y1d2{bottom:587.641200px;}
.y1a2{bottom:587.641650px;}
.y36{bottom:588.005850px;}
.y252{bottom:594.479700px;}
.y96{bottom:594.661500px;}
.y220{bottom:596.642700px;}
.y133{bottom:597.902100px;}
.y175{bottom:598.264650px;}
.y56{bottom:598.265400px;}
.y11f{bottom:598.265850px;}
.y15{bottom:600.064500px;}
.ye6{bottom:601.142400px;}
.y14f{bottom:602.941950px;}
.yaf{bottom:605.284500px;}
.y6d{bottom:607.084050px;}
.y1d1{bottom:608.524050px;}
.y1eb{bottom:608.881350px;}
.y1a1{bottom:608.881950px;}
.y251{bottom:615.720000px;}
.y95{bottom:615.901800px;}
.y21f{bottom:617.883000px;}
.y174{bottom:619.504950px;}
.yc5{bottom:619.506150px;}
.y35{bottom:619.863300px;}
.ye5{bottom:622.382700px;}
.y102{bottom:627.961500px;}
.y1d0{bottom:629.764350px;}
.y132{bottom:629.765400px;}
.y1ea{bottom:630.121650px;}
.y1a0{bottom:630.122250px;}
.y55{bottom:630.122850px;}
.y11e{bottom:630.123300px;}
.y14{bottom:631.921950px;}
.y6c{bottom:633.544950px;}
.y14e{bottom:634.805250px;}
.y94{bottom:637.142100px;}
.y250{bottom:638.044200px;}
.yae{bottom:639.480000px;}
.y21e{bottom:640.201200px;}
.yc4{bottom:640.383150px;}
.y173{bottom:640.739400px;}
.ye4{bottom:643.623000px;}
.y1cf{bottom:651.004650px;}
.y1e9{bottom:651.361950px;}
.y19f{bottom:651.362550px;}
.y34{bottom:651.720750px;}
.y93{bottom:658.382400px;}
.y24f{bottom:659.284500px;}
.y6b{bottom:660.005850px;}
.y21d{bottom:661.441500px;}
.y131{bottom:661.622850px;}
.yc3{bottom:661.623450px;}
.y172{bottom:661.979700px;}
.y54{bottom:661.980300px;}
.y11d{bottom:661.980750px;}
.y13{bottom:663.785250px;}
.ye3{bottom:664.863300px;}
.y14d{bottom:666.662700px;}
.y1ce{bottom:672.602250px;}
.y19e{bottom:672.602850px;}
.yad{bottom:673.681500px;}
.y92{bottom:679.622700px;}
.y24e{bottom:681.604200px;}
.yc2{bottom:682.863750px;}
.y171{bottom:683.220000px;}
.y33{bottom:683.584050px;}
.y21c{bottom:683.765700px;}
.y6a{bottom:686.460900px;}
.y130{bottom:693.480300px;}
.y1cd{bottom:693.842550px;}
.y19d{bottom:693.843150px;}
.y53{bottom:693.843600px;}
.y11c{bottom:693.844050px;}
.y12{bottom:695.642700px;}
.y14c{bottom:698.344350px;}
.y24c{bottom:698.883000px;}
.y91{bottom:700.863000px;}
.y24b{bottom:702.844500px;}
.yc1{bottom:704.104050px;}
.y170{bottom:704.460300px;}
.y21b{bottom:705.006000px;}
.ye2{bottom:707.343750px;}
.y69{bottom:712.921800px;}
.y19c{bottom:714.720150px;}
.y1cc{bottom:715.082850px;}
.y32{bottom:715.441500px;}
.y90{bottom:722.103300px;}
.ye1{bottom:724.623000px;}
.y24a{bottom:725.162700px;}
.y12f{bottom:725.343600px;}
.yc0{bottom:725.344350px;}
.y16f{bottom:725.700600px;}
.y52{bottom:725.701050px;}
.y11b{bottom:725.701500px;}
.y21a{bottom:727.324200px;}
.y11{bottom:727.506000px;}
.y14b{bottom:729.481050px;}
.y19b{bottom:735.960450px;}
.y1cb{bottom:736.323150px;}
.y68{bottom:739.382700px;}
.y8f{bottom:743.343600px;}
.y249{bottom:746.403000px;}
.ybf{bottom:746.584650px;}
.y16e{bottom:746.940900px;}
.y31{bottom:747.304800px;}
.y219{bottom:748.564500px;}
.y19a{bottom:757.200750px;}
.y12e{bottom:757.201050px;}
.y1ca{bottom:757.563450px;}
.y51{bottom:757.564350px;}
.y11a{bottom:757.564800px;}
.y10{bottom:759.363450px;}
.y14a{bottom:761.162700px;}
.y8e{bottom:764.583900px;}
.y67{bottom:765.843600px;}
.ybe{bottom:767.824950px;}
.y16d{bottom:768.181200px;}
.y101{bottom:768.363300px;}
.y248{bottom:768.721200px;}
.y218{bottom:770.882700px;}
.y1c9{bottom:778.803750px;}
.y199{bottom:778.804200px;}
.y30{bottom:779.162250px;}
.ye0{bottom:779.526000px;}
.y8d{bottom:786.181500px;}
.y100{bottom:789.240300px;}
.y16c{bottom:789.421500px;}
.y50{bottom:789.421800px;}
.y119{bottom:789.422250px;}
.ybd{bottom:789.422550px;}
.y247{bottom:789.961500px;}
.yf{bottom:791.220900px;}
.y217{bottom:792.123000px;}
.y66{bottom:792.304500px;}
.y149{bottom:793.026000px;}
.y1c8{bottom:800.044050px;}
.y198{bottom:800.044500px;}
.ybc{bottom:806.344500px;}
.yff{bottom:810.480600px;}
.y16b{bottom:810.661800px;}
.y2f{bottom:811.025550px;}
.y246{bottom:812.285700px;}
.y214{bottom:814.440900px;}
.y1c7{bottom:821.284350px;}
.y197{bottom:821.284800px;}
.y4f{bottom:821.285100px;}
.y118{bottom:821.285550px;}
.ydf{bottom:822.544500px;}
.ye{bottom:823.084200px;}
.y148{bottom:824.344350px;}
.yfe{bottom:831.720900px;}
.y16a{bottom:831.902100px;}
.y245{bottom:833.526000px;}
.y216{bottom:835.681050px;}
.y213{bottom:835.681200px;}
.y1c6{bottom:842.524650px;}
.y196{bottom:842.525100px;}
.y2e{bottom:842.883000px;}
.yfd{bottom:849.006000px;}
.y169{bottom:853.142400px;}
.y4e{bottom:853.142550px;}
.y117{bottom:853.143000px;}
.yd{bottom:854.941650px;}
.y147{bottom:855.481050px;}
.y244{bottom:855.844200px;}
.y215{bottom:856.921350px;}
.y212{bottom:856.921500px;}
.y1c5{bottom:863.764950px;}
.y195{bottom:863.765400px;}
.yde{bottom:864.304500px;}
.y2d{bottom:872.220300px;}
.y168{bottom:874.382700px;}
.ybb{bottom:874.740000px;}
.y243{bottom:877.084500px;}
.y211{bottom:879.239700px;}
.y1c4{bottom:885.005250px;}
.y194{bottom:885.005700px;}
.y4d{bottom:885.005850px;}
.y116{bottom:885.006300px;}
.y146{bottom:886.623600px;}
.yc{bottom:886.804950px;}
.y167{bottom:895.623000px;}
.y2c{bottom:898.681200px;}
.y242{bottom:899.402700px;}
.yfc{bottom:899.584500px;}
.y210{bottom:900.480000px;}
.y1c3{bottom:906.239700px;}
.y193{bottom:906.240150px;}
.ydd{bottom:907.324500px;}
.yb7{bottom:909.661500px;}
.y4c{bottom:916.863300px;}
.y115{bottom:916.863750px;}
.yfb{bottom:917.401650px;}
.y145{bottom:917.766150px;}
.yb{bottom:918.662400px;}
.y241{bottom:920.643000px;}
.y20f{bottom:922.804200px;}
.yba{bottom:924.240000px;}
.y2b{bottom:925.142100px;}
.y1c2{bottom:927.480000px;}
.y192{bottom:927.480450px;}
.ydc{bottom:929.643150px;}
.yfa{bottom:935.220000px;}
.y166{bottom:938.103600px;}
.y20d{bottom:940.084500px;}
.y240{bottom:942.961200px;}
.y20c{bottom:944.044500px;}
.y1c1{bottom:948.720300px;}
.y4b{bottom:948.720750px;}
.y114{bottom:948.721200px;}
.y144{bottom:948.902850px;}
.ydb{bottom:949.084500px;}
.ya{bottom:950.162400px;}
.y2a{bottom:951.603000px;}
.yb6{bottom:954.844500px;}
.y165{bottom:959.343900px;}
.y23f{bottom:964.201500px;}
.y20b{bottom:966.362700px;}
.y1c0{bottom:969.960600px;}
.y191{bottom:969.961050px;}
.y9{bottom:971.765850px;}
.yb9{bottom:972.304500px;}
.yda{bottom:972.661500px;}
.y4a{bottom:980.584050px;}
.y164{bottom:980.584200px;}
.y29{bottom:980.584500px;}
.y23e{bottom:986.525700px;}
.y20a{bottom:987.603000px;}
.y1bf{bottom:991.200900px;}
.y190{bottom:991.201350px;}
.yd9{bottom:992.284500px;}
.y8{bottom:992.642850px;}
.yb5{bottom:998.403000px;}
.y163{bottom:1001.824500px;}
.y23d{bottom:1007.766000px;}
.y209{bottom:1009.921200px;}
.y1be{bottom:1012.441200px;}
.y49{bottom:1012.441500px;}
.y18f{bottom:1012.441650px;}
.y28{bottom:1012.441950px;}
.y7{bottom:1013.525700px;}
.yd8{bottom:1014.421500px;}
.yb8{bottom:1021.804500px;}
.y162{bottom:1022.701500px;}
.y23c{bottom:1030.084200px;}
.y208{bottom:1031.161500px;}
.y1bd{bottom:1033.681500px;}
.y18e{bottom:1033.681950px;}
.yd7{bottom:1034.044500px;}
.y6{bottom:1034.402700px;}
.yb4{bottom:1043.403000px;}
.y161{bottom:1043.941800px;}
.y143{bottom:1043.941950px;}
.y48{bottom:1044.304800px;}
.y27{bottom:1044.305250px;}
.y23b{bottom:1051.324500px;}
.y205{bottom:1053.480900px;}
.y1bc{bottom:1054.921800px;}
.y18d{bottom:1054.922250px;}
.y5{bottom:1055.285550px;}
.y160{bottom:1065.182100px;}
.y23a{bottom:1073.642700px;}
.y207{bottom:1074.721050px;}
.y204{bottom:1074.721200px;}
.y142{bottom:1075.805250px;}
.y1bb{bottom:1076.162100px;}
.y47{bottom:1076.162250px;}
.y4{bottom:1076.162550px;}
.y26{bottom:1076.162700px;}
.y15f{bottom:1086.422400px;}
.y239{bottom:1094.883000px;}
.y206{bottom:1095.961350px;}
.y203{bottom:1095.961500px;}
.y3{bottom:1097.045400px;}
.y1ba{bottom:1097.402400px;}
.y18c{bottom:1097.402850px;}
.y141{bottom:1107.662700px;}
.y46{bottom:1108.025550px;}
.y25{bottom:1108.026000px;}
.y238{bottom:1117.201200px;}
.y2{bottom:1118.285700px;}
.y1b9{bottom:1118.642700px;}
.y237{bottom:1138.441500px;}
.y1{bottom:1139.526000px;}
.y45{bottom:1139.883000px;}
.h10{height:20.518500px;}
.h11{height:20.520000px;}
.h6{height:33.266821px;}
.hc{height:38.960608px;}
.ha{height:45.644709px;}
.hb{height:47.207813px;}
.h5{height:47.988281px;}
.hf{height:49.253906px;}
.he{height:49.359375px;}
.h8{height:50.897890px;}
.h9{height:51.404063px;}
.h4{height:52.435898px;}
.hd{height:62.419219px;}
.h3{height:63.175781px;}
.h7{height:63.249486px;}
.h1{height:63.949219px;}
.h2{height:65.812500px;}
.h0{height:1263.000000px;}
.w1{width:7.915500px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.617150px;}
.x13{left:132.837848px;}
.x2{left:148.857361px;}
.x12{left:154.617111px;}
.x3{left:180.715500px;}
.x14{left:207.357356px;}
.x1f{left:246.780000px;}
.x15{left:260.454959px;}
.x16{left:308.156199px;}
.x17{left:358.734390px;}
.x18{left:409.318428px;}
.x19{left:460.078162px;}
.x10{left:461.695500px;}
.xd{left:478.078500px;}
.xf{left:482.760000px;}
.xb{left:486.357000px;}
.x9{left:508.857000px;}
.x1a{left:510.656353px;}
.x7{left:516.780000px;}
.x11{left:519.474000px;}
.x8{left:526.494000px;}
.x1b{left:561.234545px;}
.x5{left:599.759404px;}
.x1c{left:611.818583px;}
.x4{left:632.155943px;}
.x1d{left:662.396774px;}
.x1e{left:713.156508px;}
.xc{left:764.097000px;}
.x6{left:765.357000px;}
.xa{left:767.877000px;}
.xe{left:849.597000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009440pt;}
.ls4{letter-spacing:0.018891pt;}
.ls3{letter-spacing:0.135253pt;}
.ls5{letter-spacing:30.236320pt;}
.ls2{letter-spacing:57.127467pt;}
.ls6{letter-spacing:131.920533pt;}
.ws2{word-spacing:-16.018891pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:0.000000pt;}
._1c{margin-left:-13.609245pt;}
._1d{margin-left:-11.883938pt;}
._21{margin-left:-10.475854pt;}
._24{margin-left:-9.265924pt;}
._20{margin-left:-8.371726pt;}
._1b{margin-left:-5.207788pt;}
._4{margin-left:-2.398851pt;}
._1{margin-left:-1.036417pt;}
._0{width:0.954831pt;}
._12{width:1.955218pt;}
._11{width:3.269667pt;}
._10{width:4.544594pt;}
._a{width:6.086472pt;}
._7{width:7.529903pt;}
._6{width:8.425211pt;}
._14{width:9.366233pt;}
._13{width:10.272485pt;}
._9{width:11.713199pt;}
._8{width:12.805217pt;}
._d{width:14.055223pt;}
._15{width:14.959868pt;}
._1a{width:16.297993pt;}
._2{width:17.287841pt;}
._19{width:18.491418pt;}
._2b{width:19.386163pt;}
._f{width:20.537395pt;}
._e{width:21.706991pt;}
._18{width:23.438777pt;}
._c{width:24.773475pt;}
._b{width:26.241282pt;}
._2d{width:27.556193pt;}
._29{width:28.695518pt;}
._26{width:30.010846pt;}
._17{width:30.936474pt;}
._16{width:32.134616pt;}
._1f{width:34.589456pt;}
._23{width:36.231303pt;}
._27{width:37.409007pt;}
._5{width:38.474633pt;}
._3{width:39.478546pt;}
._2e{width:40.697917pt;}
._3c{width:43.121881pt;}
._2a{width:46.212204pt;}
._25{width:48.226292pt;}
._28{width:50.867062pt;}
._37{width:53.720814pt;}
._41{width:55.054877pt;}
._1e{width:66.204044pt;}
._43{width:76.646388pt;}
._42{width:77.605426pt;}
._45{width:80.497072pt;}
._33{width:82.398288pt;}
._3e{width:83.492269pt;}
._31{width:85.720594pt;}
._36{width:87.922818pt;}
._32{width:89.272669pt;}
._3b{width:91.485227pt;}
._22{width:93.252168pt;}
._30{width:94.365346pt;}
._44{width:95.335911pt;}
._3d{width:98.610687pt;}
._39{width:99.559109pt;}
._34{width:106.814164pt;}
._2c{width:108.240000pt;}
._3a{width:110.684587pt;}
._40{width:114.215818pt;}
._35{width:117.809042pt;}
._3f{width:185.114903pt;}
._2f{width:201.115057pt;}
._38{width:217.114571pt;}
.fs2{font-size:40.590080pt;}
.fs8{font-size:47.537280pt;}
.fs1{font-size:53.120000pt;}
.fs6{font-size:55.692800pt;}
.fs7{font-size:57.600000pt;}
.fs4{font-size:62.102400pt;}
.fs5{font-size:62.720000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:64.074667pt;}
.fs9{font-size:76.160000pt;}
.y0{bottom:0.000000pt;}
.y20e{bottom:3.520000pt;}
.y24d{bottom:3.521333pt;}
.yf9{bottom:98.348133pt;}
.yd6{bottom:99.630000pt;}
.y236{bottom:104.427067pt;}
.y202{bottom:106.669333pt;}
.y140{bottom:106.671333pt;}
.y1e8{bottom:106.987067pt;}
.y1b8{bottom:106.987600pt;}
.y8c{bottom:106.988800pt;}
.y85{bottom:106.989067pt;}
.y24{bottom:108.270533pt;}
.y15e{bottom:111.468933pt;}
.yac{bottom:113.227333pt;}
.y18b{bottom:116.424933pt;}
.yf8{bottom:117.228400pt;}
.yd5{bottom:118.510267pt;}
.y113{bottom:118.670800pt;}
.y235{bottom:123.307333pt;}
.y8b{bottom:125.546133pt;}
.y201{bottom:125.867200pt;}
.y1e7{bottom:125.867333pt;}
.y1b7{bottom:125.867867pt;}
.y44{bottom:126.187200pt;}
.yab{bottom:132.107600pt;}
.y13f{bottom:134.989067pt;}
.y18a{bottom:135.305200pt;}
.y84{bottom:135.306800pt;}
.y12d{bottom:135.307200pt;}
.yf7{bottom:136.108667pt;}
.y23{bottom:136.588267pt;}
.yd4{bottom:137.390533pt;}
.y15d{bottom:139.791867pt;}
.y65{bottom:140.588000pt;}
.y234{bottom:143.150400pt;}
.y8a{bottom:144.426400pt;}
.y200{bottom:144.747467pt;}
.y1e6{bottom:144.747600pt;}
.y1b6{bottom:144.748133pt;}
.y7c{bottom:145.869867pt;}
.y112{bottom:146.988533pt;}
.yaa{bottom:150.987867pt;}
.y189{bottom:154.185467pt;}
.y43{bottom:154.510133pt;}
.yf6{bottom:154.988933pt;}
.yd3{bottom:156.270800pt;}
.y233{bottom:162.030667pt;}
.y89{bottom:163.306667pt;}
.y13e{bottom:163.306800pt;}
.y1ff{bottom:163.627733pt;}
.y1e5{bottom:163.627867pt;}
.y1b5{bottom:163.628400pt;}
.y83{bottom:163.629733pt;}
.y12c{bottom:163.630133pt;}
.y22{bottom:164.911200pt;}
.y64{bottom:166.672400pt;}
.y15c{bottom:167.791867pt;}
.ya9{bottom:169.868133pt;}
.y188{bottom:173.065733pt;}
.yf5{bottom:173.869200pt;}
.y7b{bottom:174.187600pt;}
.yd2{bottom:175.151067pt;}
.y111{bottom:175.306267pt;}
.y232{bottom:181.870400pt;}
.y88{bottom:182.186933pt;}
.y1fe{bottom:182.508000pt;}
.y1e4{bottom:182.508133pt;}
.y1b4{bottom:182.508667pt;}
.y42{bottom:182.827867pt;}
.ya8{bottom:188.748400pt;}
.y63{bottom:190.188000pt;}
.y13d{bottom:191.629733pt;}
.y187{bottom:191.946000pt;}
.y82{bottom:191.947467pt;}
.y12b{bottom:191.947867pt;}
.yf4{bottom:192.749467pt;}
.y21{bottom:193.546667pt;}
.yd1{bottom:194.031333pt;}
.y15b{bottom:196.109600pt;}
.y231{bottom:200.750667pt;}
.y87{bottom:201.067200pt;}
.y1fd{bottom:201.388267pt;}
.y1e3{bottom:201.388400pt;}
.y1b3{bottom:201.388933pt;}
.y7a{bottom:202.510533pt;}
.y110{bottom:203.946933pt;}
.ya7{bottom:207.628667pt;}
.y186{bottom:210.826267pt;}
.y41{bottom:211.150800pt;}
.yf3{bottom:211.629733pt;}
.yd0{bottom:212.911600pt;}
.y62{bottom:213.708800pt;}
.y86{bottom:219.947467pt;}
.y1fc{bottom:220.268533pt;}
.y1e2{bottom:220.268667pt;}
.y1b2{bottom:220.269200pt;}
.y81{bottom:220.270400pt;}
.y12a{bottom:220.270800pt;}
.y230{bottom:220.589067pt;}
.y20{bottom:221.869600pt;}
.y10f{bottom:222.509467pt;}
.y15a{bottom:224.427333pt;}
.ya6{bottom:226.508933pt;}
.y185{bottom:229.706533pt;}
.yf2{bottom:230.510000pt;}
.y79{bottom:230.828267pt;}
.ycf{bottom:231.791867pt;}
.y61{bottom:237.229600pt;}
.y1fb{bottom:239.148800pt;}
.y1e1{bottom:239.148933pt;}
.y1b1{bottom:239.149467pt;}
.y40{bottom:239.468533pt;}
.y22f{bottom:239.469333pt;}
.y10e{bottom:241.389733pt;}
.ya5{bottom:245.389200pt;}
.yf1{bottom:245.869333pt;}
.y13c{bottom:248.270400pt;}
.y184{bottom:248.586800pt;}
.y80{bottom:248.588133pt;}
.y129{bottom:248.588533pt;}
.y1f{bottom:250.187333pt;}
.yce{bottom:250.672133pt;}
.y159{bottom:253.068000pt;}
.y1fa{bottom:258.029067pt;}
.y1e0{bottom:258.029200pt;}
.y1b0{bottom:258.029733pt;}
.y78{bottom:259.151200pt;}
.y22e{bottom:259.307733pt;}
.y10d{bottom:260.270000pt;}
.y60{bottom:260.750400pt;}
.ya4{bottom:264.269467pt;}
.y183{bottom:267.467067pt;}
.y3f{bottom:267.791467pt;}
.ycd{bottom:269.547200pt;}
.y13b{bottom:276.588133pt;}
.y1f9{bottom:276.909333pt;}
.y1df{bottom:276.909467pt;}
.y1af{bottom:276.910000pt;}
.y7f{bottom:276.911067pt;}
.y128{bottom:276.911467pt;}
.y22d{bottom:278.188000pt;}
.y1e{bottom:278.510267pt;}
.y10c{bottom:279.150267pt;}
.yf0{bottom:279.469333pt;}
.y158{bottom:281.390933pt;}
.ya3{bottom:283.149733pt;}
.y5f{bottom:284.271200pt;}
.y182{bottom:286.347333pt;}
.y77{bottom:287.468933pt;}
.ycc{bottom:288.427467pt;}
.y1f8{bottom:295.789600pt;}
.y1de{bottom:295.789733pt;}
.y1ae{bottom:295.790267pt;}
.y3e{bottom:296.109200pt;}
.y10b{bottom:298.030533pt;}
.y22c{bottom:298.031733pt;}
.ya2{bottom:302.030000pt;}
.ycb{bottom:303.792000pt;}
.y13a{bottom:304.911067pt;}
.y181{bottom:305.227600pt;}
.y7e{bottom:305.228800pt;}
.y127{bottom:305.229200pt;}
.y1d{bottom:306.828000pt;}
.y5e{bottom:307.792000pt;}
.y157{bottom:309.708667pt;}
.yef{bottom:311.792000pt;}
.y1f7{bottom:314.669867pt;}
.y1dd{bottom:314.670000pt;}
.y1ad{bottom:314.670533pt;}
.y76{bottom:315.791867pt;}
.y10a{bottom:316.910800pt;}
.y22b{bottom:316.912000pt;}
.ya1{bottom:320.910267pt;}
.y180{bottom:324.107867pt;}
.y3d{bottom:324.426933pt;}
.y1ac{bottom:333.227867pt;}
.y139{bottom:333.228800pt;}
.y1f6{bottom:333.544933pt;}
.y1dc{bottom:333.545067pt;}
.y5d{bottom:333.546533pt;}
.y126{bottom:333.546933pt;}
.y1c{bottom:335.150933pt;}
.y109{bottom:335.791067pt;}
.y22a{bottom:336.750400pt;}
.y156{bottom:338.031600pt;}
.ya0{bottom:339.790533pt;}
.y17f{bottom:342.988133pt;}
.y75{bottom:344.109600pt;}
.yee{bottom:344.270667pt;}
.y1ab{bottom:352.108133pt;}
.y1f5{bottom:352.425200pt;}
.y1db{bottom:352.425333pt;}
.y3c{bottom:352.749867pt;}
.y108{bottom:354.671333pt;}
.y229{bottom:355.630667pt;}
.y9f{bottom:358.670800pt;}
.yca{bottom:358.672000pt;}
.y138{bottom:361.546533pt;}
.y17e{bottom:361.868400pt;}
.y5c{bottom:361.869467pt;}
.y125{bottom:361.869867pt;}
.y1b{bottom:363.468667pt;}
.y155{bottom:366.349333pt;}
.y107{bottom:370.030667pt;}
.y1aa{bottom:370.988400pt;}
.y1f4{bottom:371.305467pt;}
.y1da{bottom:371.305600pt;}
.y74{bottom:372.427333pt;}
.y25a{bottom:375.468000pt;}
.y228{bottom:375.469067pt;}
.yed{bottom:375.469333pt;}
.y9e{bottom:377.545867pt;}
.y17d{bottom:380.748667pt;}
.y3b{bottom:381.067600pt;}
.yc9{bottom:382.187200pt;}
.y137{bottom:389.869467pt;}
.y1f3{bottom:390.185733pt;}
.y1d9{bottom:390.185867pt;}
.y1a9{bottom:390.186267pt;}
.y5b{bottom:390.187200pt;}
.y124{bottom:390.187600pt;}
.y1a{bottom:391.791600pt;}
.y259{bottom:394.348267pt;}
.y227{bottom:394.349333pt;}
.y154{bottom:394.672267pt;}
.y9d{bottom:396.426133pt;}
.y73{bottom:398.510667pt;}
.y17c{bottom:399.628933pt;}
.yc8{bottom:401.708000pt;}
.y106{bottom:406.989600pt;}
.yec{bottom:407.792000pt;}
.y1f2{bottom:409.066000pt;}
.y1d8{bottom:409.066133pt;}
.y1a8{bottom:409.066533pt;}
.y3a{bottom:409.390533pt;}
.y258{bottom:413.228533pt;}
.y226{bottom:414.187733pt;}
.y9c{bottom:415.306400pt;}
.y136{bottom:418.187200pt;}
.y17b{bottom:418.509200pt;}
.y5a{bottom:418.510133pt;}
.y123{bottom:418.510533pt;}
.y19{bottom:420.109333pt;}
.y72{bottom:422.031467pt;}
.y153{bottom:422.990000pt;}
.y1f1{bottom:427.946267pt;}
.y1d7{bottom:427.946400pt;}
.y1a7{bottom:427.946800pt;}
.y105{bottom:429.390667pt;}
.y257{bottom:432.108800pt;}
.y225{bottom:433.068000pt;}
.y9b{bottom:434.186667pt;}
.y17a{bottom:437.389467pt;}
.y39{bottom:437.708267pt;}
.yeb{bottom:440.270667pt;}
.y71{bottom:445.547067pt;}
.yc7{bottom:446.188000pt;}
.y59{bottom:446.510133pt;}
.y1f0{bottom:446.826533pt;}
.y1d6{bottom:446.826667pt;}
.y1a6{bottom:446.827067pt;}
.y7d{bottom:446.827867pt;}
.y122{bottom:446.828267pt;}
.yb3{bottom:448.270667pt;}
.y18{bottom:448.427067pt;}
.y256{bottom:450.989067pt;}
.y152{bottom:451.307733pt;}
.y224{bottom:452.911733pt;}
.y9a{bottom:453.066933pt;}
.yea{bottom:454.671333pt;}
.y179{bottom:456.269733pt;}
.y1ef{bottom:465.706800pt;}
.y1d5{bottom:465.706933pt;}
.y1a5{bottom:465.707333pt;}
.y38{bottom:466.031200pt;}
.y70{bottom:469.067867pt;}
.y255{bottom:469.869333pt;}
.y223{bottom:471.792000pt;}
.y99{bottom:471.947200pt;}
.y104{bottom:471.948000pt;}
.ye9{bottom:472.588000pt;}
.y135{bottom:474.827867pt;}
.y178{bottom:475.150000pt;}
.y58{bottom:475.150800pt;}
.y121{bottom:475.151200pt;}
.y17{bottom:476.750000pt;}
.yb2{bottom:478.828000pt;}
.y151{bottom:479.630667pt;}
.y1ee{bottom:484.587067pt;}
.y1d4{bottom:484.587200pt;}
.y1a4{bottom:484.587600pt;}
.y254{bottom:489.707733pt;}
.yc6{bottom:490.672000pt;}
.y98{bottom:490.827467pt;}
.y222{bottom:491.630400pt;}
.y6f{bottom:492.588667pt;}
.y177{bottom:494.030267pt;}
.y37{bottom:494.348933pt;}
.yb1{bottom:495.630787pt;}
.ye8{bottom:496.911200pt;}
.y134{bottom:503.150800pt;}
.y1ed{bottom:503.467333pt;}
.y1d3{bottom:503.467467pt;}
.y1a3{bottom:503.467867pt;}
.y57{bottom:503.468533pt;}
.y120{bottom:503.468933pt;}
.y16{bottom:505.067733pt;}
.yb0{bottom:507.469333pt;}
.y150{bottom:507.948400pt;}
.y253{bottom:508.588000pt;}
.y97{bottom:509.707733pt;}
.y221{bottom:510.510667pt;}
.y176{bottom:512.910533pt;}
.ye7{bottom:515.468533pt;}
.y103{bottom:515.630667pt;}
.y6e{bottom:516.109467pt;}
.y1ec{bottom:522.347600pt;}
.y1d2{bottom:522.347733pt;}
.y1a2{bottom:522.348133pt;}
.y36{bottom:522.671867pt;}
.y252{bottom:528.426400pt;}
.y96{bottom:528.588000pt;}
.y220{bottom:530.349067pt;}
.y133{bottom:531.468533pt;}
.y175{bottom:531.790800pt;}
.y56{bottom:531.791467pt;}
.y11f{bottom:531.791867pt;}
.y15{bottom:533.390667pt;}
.ye6{bottom:534.348800pt;}
.y14f{bottom:535.948400pt;}
.yaf{bottom:538.030667pt;}
.y6d{bottom:539.630267pt;}
.y1d1{bottom:540.910267pt;}
.y1eb{bottom:541.227867pt;}
.y1a1{bottom:541.228400pt;}
.y251{bottom:547.306667pt;}
.y95{bottom:547.468267pt;}
.y21f{bottom:549.229333pt;}
.y174{bottom:550.671067pt;}
.yc5{bottom:550.672133pt;}
.y35{bottom:550.989600pt;}
.ye5{bottom:553.229067pt;}
.y102{bottom:558.188000pt;}
.y1d0{bottom:559.790533pt;}
.y132{bottom:559.791467pt;}
.y1ea{bottom:560.108133pt;}
.y1a0{bottom:560.108667pt;}
.y55{bottom:560.109200pt;}
.y11e{bottom:560.109600pt;}
.y14{bottom:561.708400pt;}
.y6c{bottom:563.151067pt;}
.y14e{bottom:564.271333pt;}
.y94{bottom:566.348533pt;}
.y250{bottom:567.150400pt;}
.yae{bottom:568.426667pt;}
.y21e{bottom:569.067733pt;}
.yc4{bottom:569.229467pt;}
.y173{bottom:569.546133pt;}
.ye4{bottom:572.109333pt;}
.y1cf{bottom:578.670800pt;}
.y1e9{bottom:578.988400pt;}
.y19f{bottom:578.988933pt;}
.y34{bottom:579.307333pt;}
.y93{bottom:585.228800pt;}
.y24f{bottom:586.030667pt;}
.y6b{bottom:586.671867pt;}
.y21d{bottom:587.948000pt;}
.y131{bottom:588.109200pt;}
.yc3{bottom:588.109733pt;}
.y172{bottom:588.426400pt;}
.y54{bottom:588.426933pt;}
.y11d{bottom:588.427333pt;}
.y13{bottom:590.031333pt;}
.ye3{bottom:590.989600pt;}
.y14d{bottom:592.589067pt;}
.y1ce{bottom:597.868667pt;}
.y19e{bottom:597.869200pt;}
.yad{bottom:598.828000pt;}
.y92{bottom:604.109067pt;}
.y24e{bottom:605.870400pt;}
.yc2{bottom:606.990000pt;}
.y171{bottom:607.306667pt;}
.y33{bottom:607.630267pt;}
.y21c{bottom:607.791733pt;}
.y6a{bottom:610.187467pt;}
.y130{bottom:616.426933pt;}
.y1cd{bottom:616.748933pt;}
.y19d{bottom:616.749467pt;}
.y53{bottom:616.749867pt;}
.y11c{bottom:616.750267pt;}
.y12{bottom:618.349067pt;}
.y14c{bottom:620.750533pt;}
.y24c{bottom:621.229333pt;}
.y91{bottom:622.989333pt;}
.y24b{bottom:624.750667pt;}
.yc1{bottom:625.870267pt;}
.y170{bottom:626.186933pt;}
.y21b{bottom:626.672000pt;}
.ye2{bottom:628.750000pt;}
.y69{bottom:633.708267pt;}
.y19c{bottom:635.306800pt;}
.y1cc{bottom:635.629200pt;}
.y32{bottom:635.948000pt;}
.y90{bottom:641.869600pt;}
.ye1{bottom:644.109333pt;}
.y24a{bottom:644.589067pt;}
.y12f{bottom:644.749867pt;}
.yc0{bottom:644.750533pt;}
.y16f{bottom:645.067200pt;}
.y52{bottom:645.067600pt;}
.y11b{bottom:645.068000pt;}
.y21a{bottom:646.510400pt;}
.y11{bottom:646.672000pt;}
.y14b{bottom:648.427600pt;}
.y19b{bottom:654.187067pt;}
.y1cb{bottom:654.509467pt;}
.y68{bottom:657.229067pt;}
.y8f{bottom:660.749867pt;}
.y249{bottom:663.469333pt;}
.ybf{bottom:663.630800pt;}
.y16e{bottom:663.947467pt;}
.y31{bottom:664.270933pt;}
.y219{bottom:665.390667pt;}
.y19a{bottom:673.067333pt;}
.y12e{bottom:673.067600pt;}
.y1ca{bottom:673.389733pt;}
.y51{bottom:673.390533pt;}
.y11a{bottom:673.390933pt;}
.y10{bottom:674.989733pt;}
.y14a{bottom:676.589067pt;}
.y8e{bottom:679.630133pt;}
.y67{bottom:680.749867pt;}
.ybe{bottom:682.511067pt;}
.y16d{bottom:682.827733pt;}
.y101{bottom:682.989600pt;}
.y248{bottom:683.307733pt;}
.y218{bottom:685.229067pt;}
.y1c9{bottom:692.270000pt;}
.y199{bottom:692.270400pt;}
.y30{bottom:692.588667pt;}
.ye0{bottom:692.912000pt;}
.y8d{bottom:698.828000pt;}
.y100{bottom:701.546933pt;}
.y16c{bottom:701.708000pt;}
.y50{bottom:701.708267pt;}
.y119{bottom:701.708667pt;}
.ybd{bottom:701.708933pt;}
.y247{bottom:702.188000pt;}
.yf{bottom:703.307467pt;}
.y217{bottom:704.109333pt;}
.y66{bottom:704.270667pt;}
.y149{bottom:704.912000pt;}
.y1c8{bottom:711.150267pt;}
.y198{bottom:711.150667pt;}
.ybc{bottom:716.750667pt;}
.yff{bottom:720.427200pt;}
.y16b{bottom:720.588267pt;}
.y2f{bottom:720.911600pt;}
.y246{bottom:722.031733pt;}
.y214{bottom:723.947467pt;}
.y1c7{bottom:730.030533pt;}
.y197{bottom:730.030933pt;}
.y4f{bottom:730.031200pt;}
.y118{bottom:730.031600pt;}
.ydf{bottom:731.150667pt;}
.ye{bottom:731.630400pt;}
.y148{bottom:732.750533pt;}
.yfe{bottom:739.307467pt;}
.y16a{bottom:739.468533pt;}
.y245{bottom:740.912000pt;}
.y216{bottom:742.827600pt;}
.y213{bottom:742.827733pt;}
.y1c6{bottom:748.910800pt;}
.y196{bottom:748.911200pt;}
.y2e{bottom:749.229333pt;}
.yfd{bottom:754.672000pt;}
.y169{bottom:758.348800pt;}
.y4e{bottom:758.348933pt;}
.y117{bottom:758.349333pt;}
.yd{bottom:759.948133pt;}
.y147{bottom:760.427600pt;}
.y244{bottom:760.750400pt;}
.y215{bottom:761.707867pt;}
.y212{bottom:761.708000pt;}
.y1c5{bottom:767.791067pt;}
.y195{bottom:767.791467pt;}
.yde{bottom:768.270667pt;}
.y2d{bottom:775.306933pt;}
.y168{bottom:777.229067pt;}
.ybb{bottom:777.546667pt;}
.y243{bottom:779.630667pt;}
.y211{bottom:781.546400pt;}
.y1c4{bottom:786.671333pt;}
.y194{bottom:786.671733pt;}
.y4d{bottom:786.671867pt;}
.y116{bottom:786.672267pt;}
.y146{bottom:788.109867pt;}
.yc{bottom:788.271067pt;}
.y167{bottom:796.109333pt;}
.y2c{bottom:798.827733pt;}
.y242{bottom:799.469067pt;}
.yfc{bottom:799.630667pt;}
.y210{bottom:800.426667pt;}
.y1c3{bottom:805.546400pt;}
.y193{bottom:805.546800pt;}
.ydd{bottom:806.510667pt;}
.yb7{bottom:808.588000pt;}
.y4c{bottom:814.989600pt;}
.y115{bottom:814.990000pt;}
.yfb{bottom:815.468133pt;}
.y145{bottom:815.792133pt;}
.yb{bottom:816.588800pt;}
.y241{bottom:818.349333pt;}
.y20f{bottom:820.270400pt;}
.yba{bottom:821.546667pt;}
.y2b{bottom:822.348533pt;}
.y1c2{bottom:824.426667pt;}
.y192{bottom:824.427067pt;}
.ydc{bottom:826.349467pt;}
.yfa{bottom:831.306667pt;}
.y166{bottom:833.869867pt;}
.y20d{bottom:835.630667pt;}
.y240{bottom:838.187733pt;}
.y20c{bottom:839.150667pt;}
.y1c1{bottom:843.306933pt;}
.y4b{bottom:843.307333pt;}
.y114{bottom:843.307733pt;}
.y144{bottom:843.469200pt;}
.ydb{bottom:843.630667pt;}
.ya{bottom:844.588800pt;}
.y2a{bottom:845.869333pt;}
.yb6{bottom:848.750667pt;}
.y165{bottom:852.750133pt;}
.y23f{bottom:857.068000pt;}
.y20b{bottom:858.989067pt;}
.y1c0{bottom:862.187200pt;}
.y191{bottom:862.187600pt;}
.y9{bottom:863.791867pt;}
.yb9{bottom:864.270667pt;}
.yda{bottom:864.588000pt;}
.y4a{bottom:871.630267pt;}
.y164{bottom:871.630400pt;}
.y29{bottom:871.630667pt;}
.y23e{bottom:876.911733pt;}
.y20a{bottom:877.869333pt;}
.y1bf{bottom:881.067467pt;}
.y190{bottom:881.067867pt;}
.yd9{bottom:882.030667pt;}
.y8{bottom:882.349200pt;}
.yb5{bottom:887.469333pt;}
.y163{bottom:890.510667pt;}
.y23d{bottom:895.792000pt;}
.y209{bottom:897.707733pt;}
.y1be{bottom:899.947733pt;}
.y49{bottom:899.948000pt;}
.y18f{bottom:899.948133pt;}
.y28{bottom:899.948400pt;}
.y7{bottom:900.911733pt;}
.yd8{bottom:901.708000pt;}
.yb8{bottom:908.270667pt;}
.y162{bottom:909.068000pt;}
.y23c{bottom:915.630400pt;}
.y208{bottom:916.588000pt;}
.y1bd{bottom:918.828000pt;}
.y18e{bottom:918.828400pt;}
.yd7{bottom:919.150667pt;}
.y6{bottom:919.469067pt;}
.yb4{bottom:927.469333pt;}
.y161{bottom:927.948267pt;}
.y143{bottom:927.948400pt;}
.y48{bottom:928.270933pt;}
.y27{bottom:928.271333pt;}
.y23b{bottom:934.510667pt;}
.y205{bottom:936.427467pt;}
.y1bc{bottom:937.708267pt;}
.y18d{bottom:937.708667pt;}
.y5{bottom:938.031600pt;}
.y160{bottom:946.828533pt;}
.y23a{bottom:954.349067pt;}
.y207{bottom:955.307600pt;}
.y204{bottom:955.307733pt;}
.y142{bottom:956.271333pt;}
.y1bb{bottom:956.588533pt;}
.y47{bottom:956.588667pt;}
.y4{bottom:956.588933pt;}
.y26{bottom:956.589067pt;}
.y15f{bottom:965.708800pt;}
.y239{bottom:973.229333pt;}
.y206{bottom:974.187867pt;}
.y203{bottom:974.188000pt;}
.y3{bottom:975.151467pt;}
.y1ba{bottom:975.468800pt;}
.y18c{bottom:975.469200pt;}
.y141{bottom:984.589067pt;}
.y46{bottom:984.911600pt;}
.y25{bottom:984.912000pt;}
.y238{bottom:993.067733pt;}
.y2{bottom:994.031733pt;}
.y1b9{bottom:994.349067pt;}
.y237{bottom:1011.948000pt;}
.y1{bottom:1012.912000pt;}
.y45{bottom:1013.229333pt;}
.h10{height:18.238667pt;}
.h11{height:18.240000pt;}
.h6{height:29.570507pt;}
.hc{height:34.631651pt;}
.ha{height:40.573075pt;}
.hb{height:41.962500pt;}
.h5{height:42.656250pt;}
.hf{height:43.781250pt;}
.he{height:43.875000pt;}
.h8{height:45.242569pt;}
.h9{height:45.692500pt;}
.h4{height:46.609688pt;}
.hd{height:55.483750pt;}
.h3{height:56.156250pt;}
.h7{height:56.221766pt;}
.h1{height:56.843750pt;}
.h2{height:58.500000pt;}
.h0{height:1122.666667pt;}
.w1{width:7.036000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.437467pt;}
.x13{left:118.078087pt;}
.x2{left:132.317654pt;}
.x12{left:137.437432pt;}
.x3{left:160.636000pt;}
.x14{left:184.317649pt;}
.x1f{left:219.360000pt;}
.x15{left:231.515519pt;}
.x16{left:273.916621pt;}
.x17{left:318.875014pt;}
.x18{left:363.838603pt;}
.x19{left:408.958366pt;}
.x10{left:410.396000pt;}
.xd{left:424.958667pt;}
.xf{left:429.120000pt;}
.xb{left:432.317333pt;}
.x9{left:452.317333pt;}
.x1a{left:453.916759pt;}
.x7{left:459.360000pt;}
.x11{left:461.754667pt;}
.x8{left:467.994667pt;}
.x1b{left:498.875151pt;}
.x5{left:533.119470pt;}
.x1c{left:543.838740pt;}
.x4{left:561.916394pt;}
.x1d{left:588.797132pt;}
.x1e{left:633.916896pt;}
.xc{left:679.197333pt;}
.x6{left:680.317333pt;}
.xa{left:682.557333pt;}
.xe{left:755.197333pt;}
}




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