
    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_ca17e67985981a26dd337343.woff')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_9ab1583ddbe80f7ff36b0cf7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.100586;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_5f1ba490effab1d786c596ed.woff')format("woff");}.ff3{font-family:ff3;line-height:1.102051;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.198865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m7{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-1.566000px;}
.lsf{letter-spacing:-1.211040px;}
.ls15{letter-spacing:-0.728640px;}
.ls17{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.334080px;}
.ls11{letter-spacing:-0.324000px;}
.ls16{letter-spacing:-0.264960px;}
.lsd{letter-spacing:-0.250560px;}
.ls10{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.198720px;}
.ls14{letter-spacing:-0.066240px;}
.lsc{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.066240px;}
.lsb{letter-spacing:0.077760px;}
.ls19{letter-spacing:0.162000px;}
.ls1a{letter-spacing:0.198720px;}
.ls1e{letter-spacing:0.264960px;}
.ls23{letter-spacing:0.331200px;}
.ls1f{letter-spacing:0.662400px;}
.ls1b{letter-spacing:0.927360px;}
.ls3{letter-spacing:26.628480px;}
.ls9{letter-spacing:103.665600px;}
.ls2{letter-spacing:147.582720px;}
.ls4{letter-spacing:205.012800px;}
.ls0{letter-spacing:232.740000px;}
.ls1c{letter-spacing:298.080000px;}
.ls7{letter-spacing:374.454720px;}
.ls1{letter-spacing:444.205440px;}
.ls5{letter-spacing:486.665280px;}
.ls22{letter-spacing:507.663360px;}
.ls6{letter-spacing:993.864960px;}
.ls20{letter-spacing:1285.850880px;}
.ls8{letter-spacing:1705.017600px;}
.ls21{letter-spacing:1743.105600px;}
.ls1d{letter-spacing:1973.753280px;}
.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;}
}
.ws2a{word-spacing:-16.626240px;}
.ws0{word-spacing:-16.560000px;}
.ws2c{word-spacing:-16.493760px;}
.ws2b{word-spacing:-16.361280px;}
.ws1{word-spacing:-16.295040px;}
.ws22{word-spacing:-4.371840px;}
.ws28{word-spacing:-3.643200px;}
.ws24{word-spacing:-3.510720px;}
.ws14{word-spacing:-2.914560px;}
.ws3a{word-spacing:-2.782080px;}
.ws13{word-spacing:-2.649600px;}
.ws20{word-spacing:-2.583360px;}
.ws35{word-spacing:-2.252160px;}
.ws16{word-spacing:-2.119680px;}
.ws1f{word-spacing:-1.788480px;}
.ws17{word-spacing:-1.391040px;}
.ws30{word-spacing:-1.258560px;}
.ws2d{word-spacing:-0.927360px;}
.ws2f{word-spacing:-0.794880px;}
.wsb{word-spacing:-0.662400px;}
.ws5{word-spacing:-0.596160px;}
.ws26{word-spacing:-0.529920px;}
.ws39{word-spacing:-0.331200px;}
.ws23{word-spacing:-0.090000px;}
.ws12{word-spacing:-0.066240px;}
.ws2{word-spacing:0.000000px;}
.ws34{word-spacing:0.066240px;}
.wsa{word-spacing:0.198720px;}
.ws37{word-spacing:0.264960px;}
.ws10{word-spacing:0.662400px;}
.ws18{word-spacing:0.728640px;}
.ws8{word-spacing:0.794880px;}
.ws4{word-spacing:1.188000px;}
.ws3{word-spacing:1.296000px;}
.ws11{word-spacing:1.391040px;}
.ws1d{word-spacing:1.523520px;}
.ws27{word-spacing:1.656000px;}
.wsf{word-spacing:2.119680px;}
.ws7{word-spacing:2.252160px;}
.ws15{word-spacing:2.384640px;}
.ws21{word-spacing:2.848320px;}
.ws3f{word-spacing:2.914560px;}
.ws1b{word-spacing:2.980800px;}
.ws2e{word-spacing:3.113280px;}
.ws3b{word-spacing:3.179520px;}
.ws36{word-spacing:3.444480px;}
.ws1e{word-spacing:3.510720px;}
.wse{word-spacing:3.643200px;}
.wsd{word-spacing:3.775680px;}
.wsc{word-spacing:4.239360px;}
.ws38{word-spacing:4.371840px;}
.ws3e{word-spacing:5.100480px;}
.ws33{word-spacing:5.232960px;}
.ws3c{word-spacing:5.696640px;}
.ws9{word-spacing:6.425280px;}
.ws6{word-spacing:6.690240px;}
.ws25{word-spacing:6.756480px;}
.ws29{word-spacing:6.822720px;}
.ws31{word-spacing:7.153920px;}
.ws1c{word-spacing:7.485120px;}
.ws3d{word-spacing:7.882560px;}
.ws32{word-spacing:8.015040px;}
.ws19{word-spacing:9.406080px;}
.ws1a{word-spacing:10.002240px;}
._2{margin-left:-1.127520px;}
._6{width:1.344600px;}
._5{width:2.614176px;}
._34{width:4.002000px;}
._3f{width:26.601984px;}
._31{width:39.565152px;}
._26{width:41.704704px;}
._87{width:46.083168px;}
._48{width:49.560768px;}
._6b{width:51.090912px;}
._43{width:52.581312px;}
._17{width:60.457248px;}
._44{width:66.975264px;}
._20{width:73.393920px;}
._7d{width:74.871072px;}
._5d{width:79.322400px;}
._11{width:80.627328px;}
._46{width:89.245152px;}
._22{width:92.113344px;}
._40{width:97.882848px;}
._6a{width:99.995904px;}
._55{width:105.103008px;}
._1c{width:108.693216px;}
._3a{width:113.694336px;}
._29{width:123.073920px;}
._7f{width:125.995104px;}
._33{width:128.883168px;}
._42{width:135.275328px;}
._85{width:137.514240px;}
._45{width:139.647168px;}
._25{width:142.508736px;}
._77{width:147.562848px;}
._83{width:159.088608px;}
._16{width:167.024160px;}
._81{width:169.925472px;}
._2e{width:172.760544px;}
._2b{width:174.204576px;}
._21{width:177.059520px;}
._60{width:178.424064px;}
._39{width:181.365120px;}
._27{width:185.710464px;}
._24{width:192.188736px;}
._2c{width:197.964864px;}
._23{width:201.568320px;}
._5b{width:205.410240px;}
._3c{width:209.437632px;}
._4f{width:210.875040px;}
._15{width:212.398560px;}
._74{width:223.222176px;}
._66{width:228.256416px;}
._78{width:231.084864px;}
._3e{width:236.026368px;}
._36{width:244.021536px;}
._47{width:248.386752px;}
._2d{width:249.771168px;}
._30{width:252.718848px;}
._7a{width:259.793280px;}
._18{width:269.265600px;}
._d{width:275.737248px;}
._41{width:278.572320px;}
._69{width:285.030720px;}
._86{width:292.270752px;}
._3b{width:294.403680px;}
._1b{width:298.782144px;}
._28{width:326.086272px;}
._32{width:329.020704px;}
._a{width:330.464736px;}
._57{width:333.319680px;}
._19{width:336.254112px;}
._37{width:338.314176px;}
._38{width:340.473600px;}
._13{width:347.760000px;}
._2f{width:349.210656px;}
._56{width:358.563744px;}
._71{width:360.743040px;}
._7b{width:362.809728px;}
._10{width:375.845760px;}
._53{width:378.031680px;}
._14{width:381.608640px;}
._4b{width:384.523200px;}
._5f{width:386.464032px;}
._65{width:398.950272px;}
._3d{width:408.965760px;}
._72{width:416.848320px;}
._1a{width:419.716512px;}
._68{width:432.083520px;}
._58{width:433.474560px;}
._67{width:438.515424px;}
._8{width:480.968640px;}
._7e{width:546.506496px;}
._62{width:552.242880px;}
._88{width:555.819840px;}
._80{width:563.762016px;}
._e{width:567.299232px;}
._59{width:572.379840px;}
._51{width:604.108800px;}
._7c{width:632.194560px;}
._76{width:637.162560px;}
._1d{width:664.453440px;}
._4d{width:688.299840px;}
._f{width:709.960320px;}
._4a{width:714.265920px;}
._b{width:722.016000px;}
._5e{width:724.314528px;}
._4c{width:730.031040px;}
._4e{width:770.304960px;}
._79{width:773.312256px;}
._6d{width:783.420480px;}
._6e{width:800.709120px;}
._5c{width:802.762560px;}
._1f{width:807.134400px;}
._82{width:878.474880px;}
._49{width:888.477120px;}
._61{width:895.034880px;}
._35{width:899.274240px;}
._12{width:907.223040px;}
._3{width:913.750560px;}
._75{width:915.834240px;}
._64{width:927.956160px;}
._4{width:995.516640px;}
._73{width:1028.839680px;}
._70{width:1081.434240px;}
._9{width:1093.688640px;}
._52{width:1120.979520px;}
._54{width:1137.605760px;}
._0{width:1141.551360px;}
._50{width:1162.876320px;}
._2a{width:1182.847680px;}
._1{width:1193.876640px;}
._5a{width:1215.239040px;}
._7{width:1355.800320px;}
._1e{width:1441.912320px;}
._63{width:1447.344000px;}
._6c{width:1463.440320px;}
._84{width:1472.250240px;}
._c{width:1859.025600px;}
._6f{width:1896.252480px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(23,54,93);}
.fc0{color:transparent;}
.fs0{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.yb9{bottom:65.694240px;}
.y7b{bottom:65.697840px;}
.y5{bottom:65.700000px;}
.y7a{bottom:98.503200px;}
.y64{bottom:98.506800px;}
.y26{bottom:99.184320px;}
.y79{bottom:119.021040px;}
.y63{bottom:119.024640px;}
.y25{bottom:119.702160px;}
.y9a{bottom:138.607920px;}
.y78{bottom:139.356720px;}
.y62{bottom:139.360320px;}
.y24{bottom:140.220000px;}
.y23{bottom:140.232240px;}
.y40{bottom:140.235120px;}
.y77{bottom:159.692400px;}
.y61{bottom:159.696000px;}
.y22{bottom:160.567920px;}
.y3f{bottom:160.570800px;}
.y99{bottom:172.440000px;}
.y76{bottom:180.210240px;}
.y60{bottom:180.213840px;}
.y3e{bottom:181.088640px;}
.y98{bottom:197.280000px;}
.y75{bottom:200.728080px;}
.y21{bottom:201.603600px;}
.y3d{bottom:201.606480px;}
.y20{bottom:222.121440px;}
.y3c{bottom:222.124320px;}
.y97{bottom:222.300000px;}
.y74{bottom:234.394560px;}
.y5f{bottom:234.398160px;}
.y1f{bottom:242.457120px;}
.y3b{bottom:242.460000px;}
.y73{bottom:254.912400px;}
.y5e{bottom:254.916000px;}
.yb8{bottom:256.057170px;}
.y96{bottom:256.057200px;}
.y3a{bottom:263.160000px;}
.y1e{bottom:263.206800px;}
.y39{bottom:263.210400px;}
.y72{bottom:275.248080px;}
.y5d{bottom:275.251680px;}
.yb7{bottom:276.392850px;}
.y95{bottom:276.392880px;}
.y71{bottom:295.583760px;}
.y5c{bottom:295.587360px;}
.yb6{bottom:296.910690px;}
.y94{bottom:296.910720px;}
.y1d{bottom:297.403200px;}
.y38{bottom:297.406800px;}
.y70{bottom:316.101600px;}
.y5b{bottom:316.105200px;}
.yb5{bottom:317.246370px;}
.y93{bottom:317.246400px;}
.y1c{bottom:317.738880px;}
.y37{bottom:317.742480px;}
.y6f{bottom:336.437280px;}
.y5a{bottom:336.440880px;}
.yb4{bottom:337.582050px;}
.y92{bottom:337.582080px;}
.y1b{bottom:338.256720px;}
.y36{bottom:338.260320px;}
.y6e{bottom:356.772960px;}
.y59{bottom:356.776560px;}
.yb3{bottom:358.099890px;}
.y91{bottom:358.099920px;}
.y35{bottom:358.778160px;}
.y6d{bottom:377.290800px;}
.y58{bottom:377.294400px;}
.yb2{bottom:378.435570px;}
.y90{bottom:378.435600px;}
.y1a{bottom:379.292400px;}
.y34{bottom:379.296000px;}
.y6c{bottom:397.626480px;}
.y57{bottom:397.630080px;}
.yb1{bottom:398.771250px;}
.y8f{bottom:398.771280px;}
.y19{bottom:399.628080px;}
.y33{bottom:399.631680px;}
.y6b{bottom:417.962160px;}
.y56{bottom:417.965760px;}
.yb0{bottom:419.289090px;}
.y8e{bottom:419.289120px;}
.y18{bottom:420.145920px;}
.y32{bottom:420.149520px;}
.y6a{bottom:438.480000px;}
.y55{bottom:438.533280px;}
.yaf{bottom:439.624770px;}
.y8d{bottom:439.624800px;}
.y17{bottom:440.663760px;}
.y31{bottom:440.667360px;}
.y54{bottom:458.868960px;}
.yae{bottom:459.960450px;}
.y8c{bottom:459.960480px;}
.y16{bottom:474.860160px;}
.y30{bottom:474.863760px;}
.y53{bottom:479.204640px;}
.yad{bottom:480.478290px;}
.y8b{bottom:480.478320px;}
.y15{bottom:495.378000px;}
.y2f{bottom:495.381600px;}
.y52{bottom:499.722480px;}
.yac{bottom:500.813970px;}
.y8a{bottom:500.814000px;}
.y14{bottom:515.895840px;}
.y2e{bottom:515.899440px;}
.y51{bottom:520.058160px;}
.yab{bottom:521.149650px;}
.y89{bottom:521.149680px;}
.y13{bottom:536.231520px;}
.y2d{bottom:536.235120px;}
.y50{bottom:540.576000px;}
.yaa{bottom:541.667490px;}
.y88{bottom:541.667520px;}
.y12{bottom:556.749360px;}
.y2c{bottom:556.752960px;}
.ya9{bottom:562.185330px;}
.y87{bottom:562.185360px;}
.y4f{bottom:574.408080px;}
.y11{bottom:577.267200px;}
.y2b{bottom:577.270800px;}
.y4e{bottom:594.925920px;}
.ya8{bottom:595.851810px;}
.y86{bottom:595.851840px;}
.y10{bottom:597.785040px;}
.y2a{bottom:597.788640px;}
.y4d{bottom:615.443760px;}
.ya7{bottom:616.369650px;}
.y85{bottom:616.369680px;}
.yf{bottom:618.120720px;}
.y29{bottom:618.124320px;}
.y4c{bottom:635.961600px;}
.ya6{bottom:636.705330px;}
.y84{bottom:636.705360px;}
.ye{bottom:638.638560px;}
.y28{bottom:638.642160px;}
.y4b{bottom:656.297280px;}
.ya5{bottom:657.041010px;}
.y83{bottom:657.041040px;}
.yd{bottom:659.172960px;}
.y4a{bottom:676.815120px;}
.ya4{bottom:677.558850px;}
.y82{bottom:677.558880px;}
.yc{bottom:679.690800px;}
.y49{bottom:697.332960px;}
.ya3{bottom:697.894530px;}
.y81{bottom:697.894560px;}
.y27{bottom:700.026480px;}
.y48{bottom:717.850800px;}
.ya2{bottom:718.230210px;}
.y80{bottom:718.230240px;}
.yb{bottom:720.544320px;}
.y69{bottom:738.186480px;}
.ya1{bottom:738.748050px;}
.y7f{bottom:738.748080px;}
.ya{bottom:741.062160px;}
.y47{bottom:758.704320px;}
.ya0{bottom:759.083730px;}
.y7e{bottom:759.083760px;}
.y9{bottom:761.580000px;}
.y46{bottom:779.222160px;}
.y9f{bottom:779.419410px;}
.y7d{bottom:779.419440px;}
.y8{bottom:799.380000px;}
.y45{bottom:799.740000px;}
.y68{bottom:799.744320px;}
.y9e{bottom:799.937250px;}
.y7c{bottom:799.937280px;}
.y44{bottom:820.080000px;}
.y67{bottom:820.090770px;}
.y43{bottom:820.090800px;}
.y9d{bottom:820.272930px;}
.y7{bottom:828.900000px;}
.y9c{bottom:840.608610px;}
.y42{bottom:840.608640px;}
.y66{bottom:840.610080px;}
.y6{bottom:858.060000px;}
.y9b{bottom:861.120720px;}
.y41{bottom:861.126480px;}
.y65{bottom:861.127920px;}
.y4{bottom:907.920000px;}
.y3{bottom:927.540000px;}
.y2{bottom:943.740000px;}
.y1{bottom:958.319850px;}
.h3{height:34.969922px;}
.h2{height:34.990313px;}
.h5{height:45.219727px;}
.h4{height:45.246094px;}
.h6{height:55.469531px;}
.ha{height:55.492451px;}
.h8{height:55.501875px;}
.h9{height:56.019375px;}
.h7{height:75.410156px;}
.h0{height:1020.600030px;}
.h1{height:1020.750000px;}
.w0{width:722.880015px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:89.280000px;}
.x41{left:100.098030px;}
.x1f{left:104.406480px;}
.x1b{left:105.459660px;}
.x20{left:111.420000px;}
.x13{left:119.485980px;}
.x34{left:121.140870px;}
.xa{left:124.382700px;}
.x29{left:129.785190px;}
.x19{left:136.062540px;}
.x2a{left:137.353110px;}
.x14{left:139.490460px;}
.xe{left:141.096780px;}
.x47{left:143.807850px;}
.xb{left:150.475500px;}
.x1{left:154.977000px;}
.x10{left:159.064380px;}
.xc{left:162.906300px;}
.x35{left:165.240150px;}
.x48{left:166.681500px;}
.x3e{left:168.855150px;}
.x6{left:170.280000px;}
.x32{left:177.113670px;}
.x2e{left:180.193830px;}
.x42{left:183.626670px;}
.x38{left:185.220000px;}
.x3a{left:188.296590px;}
.x43{left:190.614990px;}
.x2f{left:193.309350px;}
.x3b{left:195.500190px;}
.x21{left:209.165100px;}
.x1c{left:212.934060px;}
.xf{left:215.964540px;}
.x22{left:223.560000px;}
.x28{left:225.170790px;}
.x3d{left:229.348830px;}
.x30{left:248.222310px;}
.x1a{left:249.465420px;}
.x11{left:255.576060px;}
.x46{left:260.084190px;}
.x3c{left:262.601310px;}
.x36{left:263.871510px;}
.x17{left:266.522220px;}
.xd{left:268.227900px;}
.x44{left:277.041630px;}
.x39{left:307.992270px;}
.x40{left:310.145070px;}
.x25{left:338.081790px;}
.x3f{left:342.900750px;}
.x24{left:349.742910px;}
.x7{left:351.180000px;}
.x1d{left:362.870700px;}
.x4{left:371.516850px;}
.x8{left:372.957150px;}
.x9{left:417.063750px;}
.x18{left:425.117340px;}
.x2c{left:443.332230px;}
.x16{left:444.873420px;}
.x15{left:446.446620px;}
.x31{left:449.774070px;}
.x1e{left:484.740000px;}
.x23{left:488.167950px;}
.x33{left:492.647910px;}
.x3{left:503.287500px;}
.x27{left:526.695270px;}
.x2b{left:531.779190px;}
.x2d{left:538.701270px;}
.x12{left:541.981260px;}
.x45{left:586.498350px;}
.x26{left:602.114430px;}
.x37{left:606.060000px;}
.x2{left:633.600000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-1.392000pt;}
.lsf{letter-spacing:-1.076480pt;}
.ls15{letter-spacing:-0.647680pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.296960pt;}
.ls11{letter-spacing:-0.288000pt;}
.ls16{letter-spacing:-0.235520pt;}
.lsd{letter-spacing:-0.222720pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.176640pt;}
.ls14{letter-spacing:-0.058880pt;}
.lsc{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.058880pt;}
.lsb{letter-spacing:0.069120pt;}
.ls19{letter-spacing:0.144000pt;}
.ls1a{letter-spacing:0.176640pt;}
.ls1e{letter-spacing:0.235520pt;}
.ls23{letter-spacing:0.294400pt;}
.ls1f{letter-spacing:0.588800pt;}
.ls1b{letter-spacing:0.824320pt;}
.ls3{letter-spacing:23.669760pt;}
.ls9{letter-spacing:92.147200pt;}
.ls2{letter-spacing:131.184640pt;}
.ls4{letter-spacing:182.233600pt;}
.ls0{letter-spacing:206.880000pt;}
.ls1c{letter-spacing:264.960000pt;}
.ls7{letter-spacing:332.848640pt;}
.ls1{letter-spacing:394.849280pt;}
.ls5{letter-spacing:432.591360pt;}
.ls22{letter-spacing:451.256320pt;}
.ls6{letter-spacing:883.435520pt;}
.ls20{letter-spacing:1142.978560pt;}
.ls8{letter-spacing:1515.571200pt;}
.ls21{letter-spacing:1549.427200pt;}
.ls1d{letter-spacing:1754.447360pt;}
.ws2a{word-spacing:-14.778880pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2c{word-spacing:-14.661120pt;}
.ws2b{word-spacing:-14.543360pt;}
.ws1{word-spacing:-14.484480pt;}
.ws22{word-spacing:-3.886080pt;}
.ws28{word-spacing:-3.238400pt;}
.ws24{word-spacing:-3.120640pt;}
.ws14{word-spacing:-2.590720pt;}
.ws3a{word-spacing:-2.472960pt;}
.ws13{word-spacing:-2.355200pt;}
.ws20{word-spacing:-2.296320pt;}
.ws35{word-spacing:-2.001920pt;}
.ws16{word-spacing:-1.884160pt;}
.ws1f{word-spacing:-1.589760pt;}
.ws17{word-spacing:-1.236480pt;}
.ws30{word-spacing:-1.118720pt;}
.ws2d{word-spacing:-0.824320pt;}
.ws2f{word-spacing:-0.706560pt;}
.wsb{word-spacing:-0.588800pt;}
.ws5{word-spacing:-0.529920pt;}
.ws26{word-spacing:-0.471040pt;}
.ws39{word-spacing:-0.294400pt;}
.ws23{word-spacing:-0.080000pt;}
.ws12{word-spacing:-0.058880pt;}
.ws2{word-spacing:0.000000pt;}
.ws34{word-spacing:0.058880pt;}
.wsa{word-spacing:0.176640pt;}
.ws37{word-spacing:0.235520pt;}
.ws10{word-spacing:0.588800pt;}
.ws18{word-spacing:0.647680pt;}
.ws8{word-spacing:0.706560pt;}
.ws4{word-spacing:1.056000pt;}
.ws3{word-spacing:1.152000pt;}
.ws11{word-spacing:1.236480pt;}
.ws1d{word-spacing:1.354240pt;}
.ws27{word-spacing:1.472000pt;}
.wsf{word-spacing:1.884160pt;}
.ws7{word-spacing:2.001920pt;}
.ws15{word-spacing:2.119680pt;}
.ws21{word-spacing:2.531840pt;}
.ws3f{word-spacing:2.590720pt;}
.ws1b{word-spacing:2.649600pt;}
.ws2e{word-spacing:2.767360pt;}
.ws3b{word-spacing:2.826240pt;}
.ws36{word-spacing:3.061760pt;}
.ws1e{word-spacing:3.120640pt;}
.wse{word-spacing:3.238400pt;}
.wsd{word-spacing:3.356160pt;}
.wsc{word-spacing:3.768320pt;}
.ws38{word-spacing:3.886080pt;}
.ws3e{word-spacing:4.533760pt;}
.ws33{word-spacing:4.651520pt;}
.ws3c{word-spacing:5.063680pt;}
.ws9{word-spacing:5.711360pt;}
.ws6{word-spacing:5.946880pt;}
.ws25{word-spacing:6.005760pt;}
.ws29{word-spacing:6.064640pt;}
.ws31{word-spacing:6.359040pt;}
.ws1c{word-spacing:6.653440pt;}
.ws3d{word-spacing:7.006720pt;}
.ws32{word-spacing:7.124480pt;}
.ws19{word-spacing:8.360960pt;}
.ws1a{word-spacing:8.890880pt;}
._2{margin-left:-1.002240pt;}
._6{width:1.195200pt;}
._5{width:2.323712pt;}
._34{width:3.557333pt;}
._3f{width:23.646208pt;}
._31{width:35.169024pt;}
._26{width:37.070848pt;}
._87{width:40.962816pt;}
._48{width:44.054016pt;}
._6b{width:45.414144pt;}
._43{width:46.738944pt;}
._17{width:53.739776pt;}
._44{width:59.533568pt;}
._20{width:65.239040pt;}
._7d{width:66.552064pt;}
._5d{width:70.508800pt;}
._11{width:71.668736pt;}
._46{width:79.329024pt;}
._22{width:81.878528pt;}
._40{width:87.006976pt;}
._6a{width:88.885248pt;}
._55{width:93.424896pt;}
._1c{width:96.616192pt;}
._3a{width:101.061632pt;}
._29{width:109.399040pt;}
._7f{width:111.995648pt;}
._33{width:114.562816pt;}
._42{width:120.244736pt;}
._85{width:122.234880pt;}
._45{width:124.130816pt;}
._25{width:126.674432pt;}
._77{width:131.166976pt;}
._83{width:141.412096pt;}
._16{width:148.465920pt;}
._81{width:151.044864pt;}
._2e{width:153.564928pt;}
._2b{width:154.848512pt;}
._21{width:157.386240pt;}
._60{width:158.599168pt;}
._39{width:161.213440pt;}
._27{width:165.075968pt;}
._24{width:170.834432pt;}
._2c{width:175.968768pt;}
._23{width:179.171840pt;}
._5b{width:182.586880pt;}
._3c{width:186.166784pt;}
._4f{width:187.444480pt;}
._15{width:188.798720pt;}
._74{width:198.419712pt;}
._66{width:202.894592pt;}
._78{width:205.408768pt;}
._3e{width:209.801216pt;}
._36{width:216.908032pt;}
._47{width:220.788224pt;}
._2d{width:222.018816pt;}
._30{width:224.638976pt;}
._7a{width:230.927360pt;}
._18{width:239.347200pt;}
._d{width:245.099776pt;}
._41{width:247.619840pt;}
._69{width:253.360640pt;}
._86{width:259.796224pt;}
._3b{width:261.692160pt;}
._1b{width:265.584128pt;}
._28{width:289.854464pt;}
._32{width:292.462848pt;}
._a{width:293.746432pt;}
._57{width:296.284160pt;}
._19{width:298.892544pt;}
._37{width:300.723712pt;}
._38{width:302.643200pt;}
._13{width:309.120000pt;}
._2f{width:310.409472pt;}
._56{width:318.723328pt;}
._71{width:320.660480pt;}
._7b{width:322.497536pt;}
._10{width:334.085120pt;}
._53{width:336.028160pt;}
._14{width:339.207680pt;}
._4b{width:341.798400pt;}
._5f{width:343.523584pt;}
._65{width:354.622464pt;}
._3d{width:363.525120pt;}
._72{width:370.531840pt;}
._1a{width:373.081344pt;}
._68{width:384.074240pt;}
._58{width:385.310720pt;}
._67{width:389.791488pt;}
._8{width:427.527680pt;}
._7e{width:485.783552pt;}
._62{width:490.882560pt;}
._88{width:494.062080pt;}
._80{width:501.121792pt;}
._e{width:504.265984pt;}
._59{width:508.782080pt;}
._51{width:536.985600pt;}
._7c{width:561.950720pt;}
._76{width:566.366720pt;}
._1d{width:590.625280pt;}
._4d{width:611.822080pt;}
._f{width:631.075840pt;}
._4a{width:634.903040pt;}
._b{width:641.792000pt;}
._5e{width:643.835136pt;}
._4c{width:648.916480pt;}
._4e{width:684.715520pt;}
._79{width:687.388672pt;}
._6d{width:696.373760pt;}
._6e{width:711.741440pt;}
._5c{width:713.566720pt;}
._1f{width:717.452800pt;}
._82{width:780.866560pt;}
._49{width:789.757440pt;}
._61{width:795.586560pt;}
._35{width:799.354880pt;}
._12{width:806.420480pt;}
._3{width:812.222720pt;}
._75{width:814.074880pt;}
._64{width:824.849920pt;}
._4{width:884.903680pt;}
._73{width:914.524160pt;}
._70{width:961.274880pt;}
._9{width:972.167680pt;}
._52{width:996.426240pt;}
._54{width:1011.205120pt;}
._0{width:1014.712320pt;}
._50{width:1033.667840pt;}
._2a{width:1051.420160pt;}
._1{width:1061.223680pt;}
._5a{width:1080.212480pt;}
._7{width:1205.155840pt;}
._1e{width:1281.699840pt;}
._63{width:1286.528000pt;}
._6c{width:1300.835840pt;}
._84{width:1308.666880pt;}
._c{width:1652.467200pt;}
._6f{width:1685.557760pt;}
.fs0{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.yb9{bottom:58.394880pt;}
.y7b{bottom:58.398080pt;}
.y5{bottom:58.400000pt;}
.y7a{bottom:87.558400pt;}
.y64{bottom:87.561600pt;}
.y26{bottom:88.163840pt;}
.y79{bottom:105.796480pt;}
.y63{bottom:105.799680pt;}
.y25{bottom:106.401920pt;}
.y9a{bottom:123.207040pt;}
.y78{bottom:123.872640pt;}
.y62{bottom:123.875840pt;}
.y24{bottom:124.640000pt;}
.y23{bottom:124.650880pt;}
.y40{bottom:124.653440pt;}
.y77{bottom:141.948800pt;}
.y61{bottom:141.952000pt;}
.y22{bottom:142.727040pt;}
.y3f{bottom:142.729600pt;}
.y99{bottom:153.280000pt;}
.y76{bottom:160.186880pt;}
.y60{bottom:160.190080pt;}
.y3e{bottom:160.967680pt;}
.y98{bottom:175.360000pt;}
.y75{bottom:178.424960pt;}
.y21{bottom:179.203200pt;}
.y3d{bottom:179.205760pt;}
.y20{bottom:197.441280pt;}
.y3c{bottom:197.443840pt;}
.y97{bottom:197.600000pt;}
.y74{bottom:208.350720pt;}
.y5f{bottom:208.353920pt;}
.y1f{bottom:215.517440pt;}
.y3b{bottom:215.520000pt;}
.y73{bottom:226.588800pt;}
.y5e{bottom:226.592000pt;}
.yb8{bottom:227.606373pt;}
.y96{bottom:227.606400pt;}
.y3a{bottom:233.920000pt;}
.y1e{bottom:233.961600pt;}
.y39{bottom:233.964800pt;}
.y72{bottom:244.664960pt;}
.y5d{bottom:244.668160pt;}
.yb7{bottom:245.682533pt;}
.y95{bottom:245.682560pt;}
.y71{bottom:262.741120pt;}
.y5c{bottom:262.744320pt;}
.yb6{bottom:263.920613pt;}
.y94{bottom:263.920640pt;}
.y1d{bottom:264.358400pt;}
.y38{bottom:264.361600pt;}
.y70{bottom:280.979200pt;}
.y5b{bottom:280.982400pt;}
.yb5{bottom:281.996773pt;}
.y93{bottom:281.996800pt;}
.y1c{bottom:282.434560pt;}
.y37{bottom:282.437760pt;}
.y6f{bottom:299.055360pt;}
.y5a{bottom:299.058560pt;}
.yb4{bottom:300.072933pt;}
.y92{bottom:300.072960pt;}
.y1b{bottom:300.672640pt;}
.y36{bottom:300.675840pt;}
.y6e{bottom:317.131520pt;}
.y59{bottom:317.134720pt;}
.yb3{bottom:318.311013pt;}
.y91{bottom:318.311040pt;}
.y35{bottom:318.913920pt;}
.y6d{bottom:335.369600pt;}
.y58{bottom:335.372800pt;}
.yb2{bottom:336.387173pt;}
.y90{bottom:336.387200pt;}
.y1a{bottom:337.148800pt;}
.y34{bottom:337.152000pt;}
.y6c{bottom:353.445760pt;}
.y57{bottom:353.448960pt;}
.yb1{bottom:354.463333pt;}
.y8f{bottom:354.463360pt;}
.y19{bottom:355.224960pt;}
.y33{bottom:355.228160pt;}
.y6b{bottom:371.521920pt;}
.y56{bottom:371.525120pt;}
.yb0{bottom:372.701413pt;}
.y8e{bottom:372.701440pt;}
.y18{bottom:373.463040pt;}
.y32{bottom:373.466240pt;}
.y6a{bottom:389.760000pt;}
.y55{bottom:389.807360pt;}
.yaf{bottom:390.777573pt;}
.y8d{bottom:390.777600pt;}
.y17{bottom:391.701120pt;}
.y31{bottom:391.704320pt;}
.y54{bottom:407.883520pt;}
.yae{bottom:408.853733pt;}
.y8c{bottom:408.853760pt;}
.y16{bottom:422.097920pt;}
.y30{bottom:422.101120pt;}
.y53{bottom:425.959680pt;}
.yad{bottom:427.091813pt;}
.y8b{bottom:427.091840pt;}
.y15{bottom:440.336000pt;}
.y2f{bottom:440.339200pt;}
.y52{bottom:444.197760pt;}
.yac{bottom:445.167973pt;}
.y8a{bottom:445.168000pt;}
.y14{bottom:458.574080pt;}
.y2e{bottom:458.577280pt;}
.y51{bottom:462.273920pt;}
.yab{bottom:463.244133pt;}
.y89{bottom:463.244160pt;}
.y13{bottom:476.650240pt;}
.y2d{bottom:476.653440pt;}
.y50{bottom:480.512000pt;}
.yaa{bottom:481.482213pt;}
.y88{bottom:481.482240pt;}
.y12{bottom:494.888320pt;}
.y2c{bottom:494.891520pt;}
.ya9{bottom:499.720293pt;}
.y87{bottom:499.720320pt;}
.y4f{bottom:510.584960pt;}
.y11{bottom:513.126400pt;}
.y2b{bottom:513.129600pt;}
.y4e{bottom:528.823040pt;}
.ya8{bottom:529.646053pt;}
.y86{bottom:529.646080pt;}
.y10{bottom:531.364480pt;}
.y2a{bottom:531.367680pt;}
.y4d{bottom:547.061120pt;}
.ya7{bottom:547.884133pt;}
.y85{bottom:547.884160pt;}
.yf{bottom:549.440640pt;}
.y29{bottom:549.443840pt;}
.y4c{bottom:565.299200pt;}
.ya6{bottom:565.960293pt;}
.y84{bottom:565.960320pt;}
.ye{bottom:567.678720pt;}
.y28{bottom:567.681920pt;}
.y4b{bottom:583.375360pt;}
.ya5{bottom:584.036453pt;}
.y83{bottom:584.036480pt;}
.yd{bottom:585.931520pt;}
.y4a{bottom:601.613440pt;}
.ya4{bottom:602.274533pt;}
.y82{bottom:602.274560pt;}
.yc{bottom:604.169600pt;}
.y49{bottom:619.851520pt;}
.ya3{bottom:620.350693pt;}
.y81{bottom:620.350720pt;}
.y27{bottom:622.245760pt;}
.y48{bottom:638.089600pt;}
.ya2{bottom:638.426853pt;}
.y80{bottom:638.426880pt;}
.yb{bottom:640.483840pt;}
.y69{bottom:656.165760pt;}
.ya1{bottom:656.664933pt;}
.y7f{bottom:656.664960pt;}
.ya{bottom:658.721920pt;}
.y47{bottom:674.403840pt;}
.ya0{bottom:674.741093pt;}
.y7e{bottom:674.741120pt;}
.y9{bottom:676.960000pt;}
.y46{bottom:692.641920pt;}
.y9f{bottom:692.817253pt;}
.y7d{bottom:692.817280pt;}
.y8{bottom:710.560000pt;}
.y45{bottom:710.880000pt;}
.y68{bottom:710.883840pt;}
.y9e{bottom:711.055333pt;}
.y7c{bottom:711.055360pt;}
.y44{bottom:728.960000pt;}
.y67{bottom:728.969573pt;}
.y43{bottom:728.969600pt;}
.y9d{bottom:729.131493pt;}
.y7{bottom:736.800000pt;}
.y9c{bottom:747.207653pt;}
.y42{bottom:747.207680pt;}
.y66{bottom:747.208960pt;}
.y6{bottom:762.720000pt;}
.y9b{bottom:765.440640pt;}
.y41{bottom:765.445760pt;}
.y65{bottom:765.447040pt;}
.y4{bottom:807.040000pt;}
.y3{bottom:824.480000pt;}
.y2{bottom:838.880000pt;}
.y1{bottom:851.839867pt;}
.h3{height:31.084375pt;}
.h2{height:31.102500pt;}
.h5{height:40.195312pt;}
.h4{height:40.218750pt;}
.h6{height:49.306250pt;}
.ha{height:49.326623pt;}
.h8{height:49.335000pt;}
.h9{height:49.795000pt;}
.h7{height:67.031250pt;}
.h0{height:907.200027pt;}
.h1{height:907.333333pt;}
.w0{width:642.560013pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:79.360000pt;}
.x41{left:88.976027pt;}
.x1f{left:92.805760pt;}
.x1b{left:93.741920pt;}
.x20{left:99.040000pt;}
.x13{left:106.209760pt;}
.x34{left:107.680773pt;}
.xa{left:110.562400pt;}
.x29{left:115.364613pt;}
.x19{left:120.944480pt;}
.x2a{left:122.091653pt;}
.x14{left:123.991520pt;}
.xe{left:125.419360pt;}
.x47{left:127.829200pt;}
.xb{left:133.756000pt;}
.x1{left:137.757333pt;}
.x10{left:141.390560pt;}
.xc{left:144.805600pt;}
.x35{left:146.880133pt;}
.x48{left:148.161333pt;}
.x3e{left:150.093467pt;}
.x6{left:151.360000pt;}
.x32{left:157.434373pt;}
.x2e{left:160.172293pt;}
.x42{left:163.223707pt;}
.x38{left:164.640000pt;}
.x3a{left:167.374747pt;}
.x43{left:169.435547pt;}
.x2f{left:171.830533pt;}
.x3b{left:173.777947pt;}
.x21{left:185.924533pt;}
.x1c{left:189.274720pt;}
.xf{left:191.968480pt;}
.x22{left:198.720000pt;}
.x28{left:200.151813pt;}
.x3d{left:203.865627pt;}
.x30{left:220.642053pt;}
.x1a{left:221.747040pt;}
.x11{left:227.178720pt;}
.x46{left:231.185947pt;}
.x3c{left:233.423387pt;}
.x36{left:234.552453pt;}
.x17{left:236.908640pt;}
.xd{left:238.424800pt;}
.x44{left:246.259227pt;}
.x39{left:273.770907pt;}
.x40{left:275.684507pt;}
.x25{left:300.517147pt;}
.x3f{left:304.800667pt;}
.x24{left:310.882587pt;}
.x7{left:312.160000pt;}
.x1d{left:322.551733pt;}
.x4{left:330.237200pt;}
.x8{left:331.517467pt;}
.x9{left:370.723333pt;}
.x18{left:377.882080pt;}
.x2c{left:394.073093pt;}
.x16{left:395.443040pt;}
.x15{left:396.841440pt;}
.x31{left:399.799173pt;}
.x1e{left:430.880000pt;}
.x23{left:433.927067pt;}
.x33{left:437.909253pt;}
.x3{left:447.366667pt;}
.x27{left:468.173573pt;}
.x2b{left:472.692613pt;}
.x2d{left:478.845573pt;}
.x12{left:481.761120pt;}
.x45{left:521.331867pt;}
.x26{left:535.212827pt;}
.x37{left:538.720000pt;}
.x2{left:563.200000pt;}
}




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