
    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_3d01af6da8598bc238fcbb0b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f29cb5e83a2d3bb33b0552ab.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.187500;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_2dcc7d6060aa0d27128077ce.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_7e5bf83bd277e60e86191766.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.994141;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_2c6179d25d5669c3633bc26b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_799e0277d00418061da67fa8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_15e25f2d7f905c8c68ef79cc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_48924c8894067c20c26da436.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.679688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d34a64d341f6f0b44ce81734.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_343401d22628ceabdeb6105f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7{transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,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);}
.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);}
.m6{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m4{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-43.920035px;}
.v1{vertical-align:-38.880031px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.012598px;}
.ls2{letter-spacing:0.066600px;}
.ls7{letter-spacing:0.378602px;}
.ls4{letter-spacing:38.111190px;}
.ls3{letter-spacing:38.140411px;}
.ls5{letter-spacing:46.065157px;}
.ls8{letter-spacing:64.047171px;}
.ls6{letter-spacing:64.076571px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-44.820036px;}
.ws4{word-spacing:-35.856029px;}
.ws2{word-spacing:-14.940012px;}
.ws3{word-spacing:0.000000px;}
.ws0{word-spacing:174.345270px;}
._0{margin-left:-1.168242px;}
._1{width:1.029347px;}
._a{width:3.018528px;}
._d{width:4.386598px;}
._e{width:5.605027px;}
._13{width:7.417314px;}
._11{width:8.626613px;}
._15{width:9.727563px;}
._9{width:10.745030px;}
._8{width:11.754151px;}
._12{width:12.815973px;}
._17{width:13.825354px;}
._b{width:16.003178px;}
._c{width:17.241233px;}
._10{width:18.784357px;}
._f{width:20.057121px;}
._14{width:21.710054px;}
._18{width:23.324044px;}
._1a{width:24.343132px;}
._19{width:25.405642px;}
._16{width:26.810000px;}
._1c{width:28.489088px;}
._1b{width:29.731961px;}
._40{width:30.760918px;}
._3{width:33.165521px;}
._2{width:44.563282px;}
._4{width:58.243298px;}
._2c{width:65.628470px;}
._22{width:77.693772px;}
._41{width:93.126473px;}
._3f{width:119.876557px;}
._3b{width:130.626204px;}
._31{width:136.232067px;}
._2f{width:138.125824px;}
._34{width:140.116741px;}
._2a{width:141.432819px;}
._6{width:146.834799px;}
._1e{width:153.574075px;}
._35{width:157.239575px;}
._3c{width:159.360464px;}
._21{width:165.946291px;}
._39{width:168.011104px;}
._37{width:170.250536px;}
._2b{width:172.342424px;}
._29{width:177.641177px;}
._3a{width:178.992478px;}
._28{width:184.553121px;}
._38{width:193.235269px;}
._36{width:198.470737px;}
._7{width:201.192958px;}
._1f{width:203.161710px;}
._32{width:209.211254px;}
._2e{width:212.035952px;}
._3e{width:214.728529px;}
._23{width:219.878269px;}
._27{width:222.195857px;}
._1d{width:245.984497px;}
._33{width:248.324405px;}
._3d{width:249.429992px;}
._30{width:257.273671px;}
._2d{width:268.327773px;}
._25{width:332.271711px;}
._26{width:335.497999px;}
._20{width:382.028032px;}
._5{width:473.816115px;}
._24{width:647.028793px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:23.760019px;}
.fs8{font-size:30.240024px;}
.fs3{font-size:36.000029px;}
.fs5{font-size:41.760033px;}
.fs0{font-size:48.240039px;}
.fs1{font-size:59.760048px;}
.fs6{font-size:66.240053px;}
.fs2{font-size:72.000058px;}
.fs4{font-size:95.760077px;}
.y0{bottom:0.000000px;}
.yb{bottom:1.980032px;}
.y177{bottom:3.959666px;}
.y165{bottom:3.959905px;}
.y5{bottom:71.760957px;}
.y7{bottom:79.860964px;}
.y6{bottom:91.020973px;}
.y4{bottom:92.820974px;}
.y137{bottom:119.821596px;}
.y15c{bottom:124.141599px;}
.y11b{bottom:124.320999px;}
.ycc{bottom:130.621604px;}
.y76{bottom:130.801605px;}
.ya5{bottom:134.041607px;}
.y40{bottom:135.841609px;}
.y136{bottom:138.541611px;}
.y15b{bottom:142.861614px;}
.y11a{bottom:144.841016px;}
.y75{bottom:149.341619px;}
.yfe{bottom:152.221622px;}
.ya4{bottom:152.581622px;}
.y3f{bottom:154.561624px;}
.y192{bottom:155.821625px;}
.y135{bottom:157.081626px;}
.y15a{bottom:161.581629px;}
.y119{bottom:166.441633px;}
.y74{bottom:168.061634px;}
.yfd{bottom:170.761637px;}
.ya3{bottom:171.301637px;}
.y3e{bottom:173.281639px;}
.y191{bottom:174.361639px;}
.y134{bottom:175.801641px;}
.y159{bottom:180.121644px;}
.ycb{bottom:186.601649px;}
.y73{bottom:186.781649px;}
.y118{bottom:187.861650px;}
.yfc{bottom:189.481652px;}
.ya2{bottom:189.841652px;}
.y3d{bottom:191.821653px;}
.y190{bottom:193.801655px;}
.y133{bottom:194.521656px;}
.y158{bottom:198.841659px;}
.y72{bottom:205.321664px;}
.y117{bottom:205.861665px;}
.yfb{bottom:208.021666px;}
.ya1{bottom:208.561667px;}
.y3c{bottom:210.541668px;}
.y18f{bottom:212.341670px;}
.y132{bottom:213.061670px;}
.y116{bottom:216.841673px;}
.y157{bottom:217.381674px;}
.yca{bottom:223.861679px;}
.y71{bottom:224.041679px;}
.yfa{bottom:226.381681px;}
.ya0{bottom:227.281682px;}
.y3b{bottom:229.081683px;}
.y131{bottom:231.781685px;}
.y115{bottom:235.021688px;}
.y156{bottom:236.101689px;}
.y70{bottom:242.581694px;}
.yf9{bottom:245.461696px;}
.y9f{bottom:245.821697px;}
.y3a{bottom:247.801698px;}
.y130{bottom:250.321700px;}
.y114{bottom:253.381703px;}
.y155{bottom:254.641704px;}
.yc9{bottom:261.121709px;}
.y6f{bottom:261.301709px;}
.y9e{bottom:264.541712px;}
.y39{bottom:266.341713px;}
.y12f{bottom:269.041715px;}
.y113{bottom:269.761716px;}
.y154{bottom:273.361719px;}
.yf8{bottom:275.521720px;}
.y112{bottom:276.781721px;}
.y6e{bottom:279.841724px;}
.y9d{bottom:283.081726px;}
.y38{bottom:285.061728px;}
.y18e{bottom:287.401730px;}
.y12e{bottom:287.581730px;}
.y153{bottom:292.081734px;}
.yc8{bottom:298.381739px;}
.y6d{bottom:298.561739px;}
.y9c{bottom:301.801741px;}
.yf7{bottom:305.221744px;}
.y12d{bottom:306.301745px;}
.y37{bottom:306.481745px;}
.y18d{bottom:306.841745px;}
.y152{bottom:313.321751px;}
.yc7{bottom:316.741753px;}
.y6c{bottom:317.101754px;}
.y9b{bottom:320.341756px;}
.y12c{bottom:324.841760px;}
.y18c{bottom:325.561760px;}
.y36{bottom:325.921761px;}
.yf6{bottom:328.441763px;}
.y151{bottom:334.561768px;}
.yc6{bottom:334.921768px;}
.y6b{bottom:335.821769px;}
.yf5{bottom:338.341771px;}
.y9a{bottom:339.061771px;}
.y35{bottom:341.581773px;}
.y12b{bottom:343.561775px;}
.y18b{bottom:344.101775px;}
.yc5{bottom:353.281783px;}
.yf4{bottom:354.361783px;}
.y6a{bottom:354.541784px;}
.y99{bottom:357.601786px;}
.y34{bottom:360.301788px;}
.y12a{bottom:362.281790px;}
.y18a{bottom:363.541791px;}
.yf3{bottom:365.701793px;}
.yc4{bottom:372.001798px;}
.y69{bottom:373.081798px;}
.y98{bottom:375.961801px;}
.y33{bottom:378.841803px;}
.y129{bottom:380.821805px;}
.y189{bottom:382.081806px;}
.yf2{bottom:384.241807px;}
.yc3{bottom:390.541812px;}
.y150{bottom:390.721813px;}
.y68{bottom:391.801813px;}
.y97{bottom:394.321815px;}
.y32{bottom:397.561818px;}
.y128{bottom:399.541820px;}
.y188{bottom:401.521821px;}
.yf1{bottom:402.961822px;}
.yc2{bottom:409.261827px;}
.y67{bottom:410.341828px;}
.y96{bottom:413.041830px;}
.y31{bottom:416.101833px;}
.y187{bottom:420.061836px;}
.y127{bottom:420.781837px;}
.yf0{bottom:421.501837px;}
.yc1{bottom:427.621842px;}
.y14f{bottom:427.981842px;}
.y66{bottom:429.061843px;}
.y95{bottom:431.761845px;}
.y30{bottom:434.821848px;}
.y186{bottom:439.501852px;}
.yef{bottom:440.221852px;}
.y126{bottom:442.201854px;}
.yc0{bottom:445.621856px;}
.y14e{bottom:446.521857px;}
.y65{bottom:447.601858px;}
.y94{bottom:450.301860px;}
.y2f{bottom:453.541863px;}
.y185{bottom:458.041866px;}
.yee{bottom:458.581867px;}
.y125{bottom:460.921869px;}
.ybf{bottom:463.981871px;}
.y14d{bottom:465.241872px;}
.y64{bottom:466.321873px;}
.y93{bottom:469.021875px;}
.y2e{bottom:472.081878px;}
.yed{bottom:474.601880px;}
.y184{bottom:476.581881px;}
.y124{bottom:479.461884px;}
.ybe{bottom:482.701886px;}
.y14c{bottom:483.781887px;}
.y63{bottom:484.861888px;}
.yec{bottom:485.941889px;}
.y92{bottom:487.561890px;}
.y2d{bottom:490.801893px;}
.y183{bottom:496.021897px;}
.y123{bottom:498.181899px;}
.ybd{bottom:501.241901px;}
.y14b{bottom:502.501902px;}
.y62{bottom:503.581903px;}
.yeb{bottom:504.661904px;}
.y91{bottom:506.281905px;}
.y2c{bottom:509.341907px;}
.y182{bottom:514.561912px;}
.y122{bottom:516.721913px;}
.ybc{bottom:519.601916px;}
.y14a{bottom:521.041917px;}
.y61{bottom:522.301918px;}
.yea{bottom:523.201919px;}
.y90{bottom:524.641920px;}
.y2b{bottom:528.061922px;}
.y181{bottom:534.001927px;}
.y121{bottom:535.441928px;}
.ybb{bottom:537.781930px;}
.y149{bottom:539.761932px;}
.y60{bottom:540.841933px;}
.ye9{bottom:541.921934px;}
.y8f{bottom:542.641934px;}
.y2a{bottom:546.601937px;}
.y180{bottom:552.541942px;}
.y111{bottom:553.441943px;}
.yba{bottom:556.141945px;}
.y120{bottom:556.681945px;}
.y148{bottom:558.481947px;}
.y5f{bottom:559.201947px;}
.ye8{bottom:560.461948px;}
.y8e{bottom:561.001949px;}
.y29{bottom:568.021954px;}
.y17f{bottom:571.081957px;}
.y110{bottom:571.981958px;}
.yb9{bottom:574.681960px;}
.y147{bottom:577.021962px;}
.y5e{bottom:577.381962px;}
.y11f{bottom:577.921962px;}
.ye7{bottom:579.181963px;}
.y8d{bottom:579.721964px;}
.y28{bottom:586.381969px;}
.y17e{bottom:590.521972px;}
.y10f{bottom:590.701973px;}
.yb8{bottom:593.401975px;}
.y146{bottom:595.741977px;}
.y11e{bottom:596.281977px;}
.ye6{bottom:597.901978px;}
.y8c{bottom:598.261979px;}
.y5d{bottom:598.621979px;}
.y27{bottom:605.101984px;}
.y17d{bottom:609.061987px;}
.y10e{bottom:609.241987px;}
.yb7{bottom:611.941990px;}
.y11d{bottom:614.821992px;}
.ye5{bottom:616.441993px;}
.y8b{bottom:616.981994px;}
.y5c{bottom:617.341994px;}
.y26{bottom:621.121997px;}
.y10d{bottom:627.962002px;}
.y17c{bottom:628.502003px;}
.y11c{bottom:629.222003px;}
.yb6{bottom:630.662005px;}
.y25{bottom:631.202005px;}
.ye4{bottom:635.162008px;}
.y8a{bottom:635.702009px;}
.y5b{bottom:635.882009px;}
.y145{bottom:638.402011px;}
.y10c{bottom:646.502017px;}
.y17b{bottom:647.042018px;}
.yb5{bottom:649.202019px;}
.y24{bottom:649.742020px;}
.ye3{bottom:653.702023px;}
.y89{bottom:654.242023px;}
.y5a{bottom:654.602024px;}
.y144{bottom:657.122026px;}
.y10b{bottom:665.222032px;}
.y17a{bottom:666.482033px;}
.yb4{bottom:667.922034px;}
.y23{bottom:668.462035px;}
.ye2{bottom:672.422038px;}
.y88{bottom:672.962038px;}
.y59{bottom:673.322039px;}
.y143{bottom:675.662041px;}
.y10a{bottom:683.762047px;}
.y179{bottom:685.022048px;}
.yb3{bottom:686.642049px;}
.y22{bottom:687.002050px;}
.ye1{bottom:690.962053px;}
.y87{bottom:691.502053px;}
.y58{bottom:691.862053px;}
.y142{bottom:694.382056px;}
.y109{bottom:702.482062px;}
.y176{bottom:703.022400px;}
.y178{bottom:704.822064px;}
.yb2{bottom:705.182064px;}
.y21{bottom:705.722065px;}
.y175{bottom:706.802065px;}
.ye0{bottom:709.682068px;}
.y86{bottom:710.222068px;}
.y57{bottom:710.582068px;}
.y141{bottom:712.922070px;}
.y108{bottom:718.502075px;}
.yb1{bottom:723.902079px;}
.y174{bottom:724.082079px;}
.y20{bottom:724.262079px;}
.ydf{bottom:728.222083px;}
.y85{bottom:728.762083px;}
.y56{bottom:729.122083px;}
.y107{bottom:730.382084px;}
.y140{bottom:731.642085px;}
.yb0{bottom:742.442094px;}
.y173{bottom:742.622094px;}
.y1f{bottom:742.982094px;}
.yde{bottom:746.582097px;}
.y84{bottom:747.122098px;}
.y13f{bottom:750.182100px;}
.y55{bottom:750.542100px;}
.y106{bottom:752.162102px;}
.yaf{bottom:761.162109px;}
.y172{bottom:761.342109px;}
.y1e{bottom:761.522109px;}
.ydd{bottom:764.762112px;}
.y83{bottom:765.302112px;}
.y13e{bottom:768.902115px;}
.y54{bottom:771.782117px;}
.y105{bottom:773.402119px;}
.yae{bottom:779.702124px;}
.y171{bottom:779.882124px;}
.y1d{bottom:780.242124px;}
.ydc{bottom:783.122126px;}
.y82{bottom:783.302127px;}
.y53{bottom:790.502132px;}
.y104{bottom:791.402133px;}
.y1a5{bottom:793.742135px;}
.y81{bottom:797.342138px;}
.yad{bottom:798.422139px;}
.y170{bottom:798.602139px;}
.y1c{bottom:798.962139px;}
.ydb{bottom:801.662141px;}
.y103{bottom:802.382142px;}
.y52{bottom:809.222147px;}
.y1a4{bottom:812.282150px;}
.yac{bottom:816.962154px;}
.y16f{bottom:817.142154px;}
.y1b{bottom:817.502154px;}
.yda{bottom:820.382156px;}
.y102{bottom:820.742157px;}
.y51{bottom:827.762162px;}
.y1a3{bottom:831.002165px;}
.yab{bottom:835.682169px;}
.y16e{bottom:835.862169px;}
.y1a{bottom:836.222169px;}
.yd9{bottom:838.742171px;}
.y101{bottom:839.462172px;}
.y50{bottom:846.482177px;}
.y1a2{bottom:849.542180px;}
.yaa{bottom:854.402184px;}
.y16d{bottom:854.582184px;}
.y19{bottom:854.762184px;}
.y100{bottom:855.482184px;}
.yd8{bottom:856.922186px;}
.yff{bottom:861.242189px;}
.y4f{bottom:865.022192px;}
.y1a1{bottom:868.082194px;}
.ya9{bottom:872.942198px;}
.y16c{bottom:873.122198px;}
.y18{bottom:873.482199px;}
.yd7{bottom:875.282200px;}
.y4e{bottom:883.742207px;}
.y13d{bottom:886.442209px;}
.y1a0{bottom:887.522210px;}
.ya8{bottom:891.662213px;}
.y16b{bottom:891.842213px;}
.y17{bottom:892.022214px;}
.yd6{bottom:893.822215px;}
.y4d{bottom:902.282222px;}
.y19f{bottom:906.062225px;}
.y13c{bottom:907.682226px;}
.ya7{bottom:910.202228px;}
.y16{bottom:910.382228px;}
.yd5{bottom:912.542230px;}
.y4c{bottom:921.002237px;}
.y19e{bottom:925.502240px;}
.y13b{bottom:926.402241px;}
.y15{bottom:928.562243px;}
.ya6{bottom:928.922243px;}
.y16a{bottom:929.102243px;}
.yd4{bottom:931.082245px;}
.y4b{bottom:939.722252px;}
.y19d{bottom:944.042255px;}
.y13a{bottom:945.122256px;}
.y14{bottom:946.922258px;}
.y80{bottom:947.462258px;}
.y169{bottom:947.642258px;}
.yd3{bottom:949.442260px;}
.y4a{bottom:960.962269px;}
.y19c{bottom:963.482271px;}
.y139{bottom:963.662271px;}
.y12{bottom:965.282272px;}
.y13{bottom:965.462272px;}
.y7f{bottom:966.182273px;}
.y168{bottom:966.362273px;}
.yd2{bottom:967.622274px;}
.y19b{bottom:982.022286px;}
.y49{bottom:982.202286px;}
.y138{bottom:982.382286px;}
.y11{bottom:984.362287px;}
.y7e{bottom:984.722288px;}
.y167{bottom:984.902288px;}
.yd1{bottom:985.982289px;}
.y48{bottom:1000.922301px;}
.y19a{bottom:1001.462301px;}
.y10{bottom:1002.362302px;}
.y164{bottom:1002.362400px;}
.y7d{bottom:1003.442303px;}
.y166{bottom:1004.162303px;}
.yd0{bottom:1004.522304px;}
.y163{bottom:1006.142305px;}
.y47{bottom:1019.642316px;}
.y199{bottom:1020.002316px;}
.y7c{bottom:1022.162318px;}
.y162{bottom:1022.882318px;}
.ycf{bottom:1023.242319px;}
.y46{bottom:1038.362331px;}
.y198{bottom:1038.542331px;}
.y7b{bottom:1040.702333px;}
.y161{bottom:1041.242333px;}
.yce{bottom:1041.602333px;}
.yf{bottom:1048.262339px;}
.y45{bottom:1056.902346px;}
.y197{bottom:1057.982346px;}
.y7a{bottom:1059.422348px;}
.ycd{bottom:1059.602348px;}
.y160{bottom:1059.962348px;}
.ye{bottom:1067.702354px;}
.y44{bottom:1075.622360px;}
.y196{bottom:1076.522361px;}
.y79{bottom:1077.962362px;}
.y15f{bottom:1078.502363px;}
.y43{bottom:1094.162375px;}
.y195{bottom:1095.962377px;}
.yd{bottom:1096.682377px;}
.y15e{bottom:1097.222378px;}
.y42{bottom:1112.882390px;}
.y194{bottom:1114.682392px;}
.y78{bottom:1115.222392px;}
.y15d{bottom:1115.762393px;}
.yc{bottom:1125.662401px;}
.y193{bottom:1133.042406px;}
.y77{bottom:1133.942407px;}
.y41{bottom:1134.122407px;}
.ya{bottom:1163.462400px;}
.y3{bottom:1163.642431px;}
.y2{bottom:1177.502442px;}
.y9{bottom:1179.302443px;}
.y1{bottom:1191.362453px;}
.y8{bottom:1193.162455px;}
.h5{height:12.960000px;}
.hf{height:15.840000px;}
.hb{height:21.509314px;}
.hd{height:22.045096px;}
.hc{height:26.244162px;}
.h4{height:32.589870px;}
.h6{height:32.670378px;}
.h8{height:33.399870px;}
.h1{height:33.494792px;}
.h9{height:43.565308px;}
.he{height:47.796366px;}
.ha{height:47.868788px;}
.h3{height:49.992227px;}
.h2{height:54.099184px;}
.h7{height:69.809470px;}
.h0{height:1263.000000px;}
.w2{width:5.940000px;}
.w3{width:9.000000px;}
.w1{width:241.920000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:81.000065px;}
.x1d{left:89.280071px;}
.x3{left:91.800073px;}
.x17{left:93.780075px;}
.xd{left:96.120077px;}
.x1e{left:104.040000px;}
.xe{left:108.001487px;}
.x1a{left:113.400091px;}
.x1c{left:123.839336px;}
.x13{left:128.340103px;}
.x21{left:135.000170px;}
.x15{left:147.600118px;}
.x19{left:159.840128px;}
.x9{left:187.200735px;}
.x12{left:201.780161px;}
.x14{left:237.599679px;}
.xa{left:250.200746px;}
.x18{left:252.179935px;}
.xb{left:273.600219px;}
.x10{left:296.640275px;}
.x1f{left:418.500335px;}
.x20{left:427.680342px;}
.x8{left:446.580357px;}
.xc{left:483.660331px;}
.x4{left:561.240449px;}
.x6{left:563.400000px;}
.x5{left:643.680507px;}
.xf{left:684.900548px;}
.x16{left:722.340578px;}
.x1b{left:753.480603px;}
.x11{left:779.580624px;}
.x2{left:787.140630px;}
.x7{left:804.960000px;}
@media print{
.v2{vertical-align:-39.040031pt;}
.v1{vertical-align:-34.560028pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.011198pt;}
.ls2{letter-spacing:0.059200pt;}
.ls7{letter-spacing:0.336535pt;}
.ls4{letter-spacing:33.876614pt;}
.ls3{letter-spacing:33.902587pt;}
.ls5{letter-spacing:40.946806pt;}
.ls8{letter-spacing:56.930819pt;}
.ls6{letter-spacing:56.956952pt;}
.ws1{word-spacing:-39.840032pt;}
.ws4{word-spacing:-31.872025pt;}
.ws2{word-spacing:-13.280011pt;}
.ws3{word-spacing:0.000000pt;}
.ws0{word-spacing:154.973573pt;}
._0{margin-left:-1.038437pt;}
._1{width:0.914975pt;}
._a{width:2.683136pt;}
._d{width:3.899199pt;}
._e{width:4.982246pt;}
._13{width:6.593168pt;}
._11{width:7.668100pt;}
._15{width:8.646722pt;}
._9{width:9.551138pt;}
._8{width:10.448134pt;}
._12{width:11.391976pt;}
._17{width:12.289203pt;}
._b{width:14.225047pt;}
._c{width:15.325541pt;}
._10{width:16.697206pt;}
._f{width:17.828552pt;}
._14{width:19.297826pt;}
._18{width:20.732484pt;}
._1a{width:21.638340pt;}
._19{width:22.582792pt;}
._16{width:23.831111pt;}
._1c{width:25.323634pt;}
._1b{width:26.428409pt;}
._40{width:27.343038pt;}
._3{width:29.480463pt;}
._2{width:39.611807pt;}
._4{width:51.771821pt;}
._2c{width:58.336418pt;}
._22{width:69.061131pt;}
._41{width:82.779087pt;}
._3f{width:106.556939pt;}
._3b{width:116.112181pt;}
._31{width:121.095171pt;}
._2f{width:122.778510pt;}
._34{width:124.548214pt;}
._2a{width:125.718061pt;}
._6{width:130.519822pt;}
._1e{width:136.510289pt;}
._35{width:139.768511pt;}
._3c{width:141.653745pt;}
._21{width:147.507815pt;}
._39{width:149.343204pt;}
._37{width:151.333810pt;}
._2b{width:153.193266pt;}
._29{width:157.903268pt;}
._3a{width:159.104425pt;}
._28{width:164.047219pt;}
._38{width:171.764684pt;}
._36{width:176.418433pt;}
._7{width:178.838185pt;}
._1f{width:180.588187pt;}
._32{width:185.965559pt;}
._2e{width:188.476402pt;}
._3e{width:190.869804pt;}
._23{width:195.447350pt;}
._27{width:197.507428pt;}
._1d{width:218.652886pt;}
._33{width:220.732804pt;}
._3d{width:221.715548pt;}
._30{width:228.687707pt;}
._2d{width:238.513576pt;}
._25{width:295.352632pt;}
._26{width:298.220444pt;}
._20{width:339.580473pt;}
._5{width:421.169880pt;}
._24{width:575.136705pt;}
.fs7{font-size:21.120017pt;}
.fs8{font-size:26.880022pt;}
.fs3{font-size:32.000026pt;}
.fs5{font-size:37.120030pt;}
.fs0{font-size:42.880034pt;}
.fs1{font-size:53.120042pt;}
.fs6{font-size:58.880047pt;}
.fs2{font-size:64.000051pt;}
.fs4{font-size:85.120068pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:1.760029pt;}
.y177{bottom:3.519703pt;}
.y165{bottom:3.519916pt;}
.y5{bottom:63.787518pt;}
.y7{bottom:70.987523pt;}
.y6{bottom:80.907531pt;}
.y4{bottom:82.507533pt;}
.y137{bottom:106.508085pt;}
.y15c{bottom:110.348088pt;}
.y11b{bottom:110.507555pt;}
.ycc{bottom:116.108093pt;}
.y76{bottom:116.268093pt;}
.ya5{bottom:119.148095pt;}
.y40{bottom:120.748097pt;}
.y136{bottom:123.148099pt;}
.y15b{bottom:126.988102pt;}
.y11a{bottom:128.747570pt;}
.y75{bottom:132.748106pt;}
.yfe{bottom:135.308108pt;}
.ya4{bottom:135.628109pt;}
.y3f{bottom:137.388110pt;}
.y192{bottom:138.508111pt;}
.y135{bottom:139.628112pt;}
.y15a{bottom:143.628115pt;}
.y119{bottom:147.948118pt;}
.y74{bottom:149.388120pt;}
.yfd{bottom:151.788121pt;}
.ya3{bottom:152.268122pt;}
.y3e{bottom:154.028123pt;}
.y191{bottom:154.988124pt;}
.y134{bottom:156.268125pt;}
.y159{bottom:160.108128pt;}
.ycb{bottom:165.868133pt;}
.y73{bottom:166.028133pt;}
.y118{bottom:166.988134pt;}
.yfc{bottom:168.428135pt;}
.ya2{bottom:168.748135pt;}
.y3d{bottom:170.508136pt;}
.y190{bottom:172.268138pt;}
.y133{bottom:172.908138pt;}
.y158{bottom:176.748141pt;}
.y72{bottom:182.508146pt;}
.y117{bottom:182.988146pt;}
.yfb{bottom:184.908148pt;}
.ya1{bottom:185.388148pt;}
.y3c{bottom:187.148150pt;}
.y18f{bottom:188.748151pt;}
.y132{bottom:189.388152pt;}
.y116{bottom:192.748154pt;}
.y157{bottom:193.228155pt;}
.yca{bottom:198.988159pt;}
.y71{bottom:199.148159pt;}
.yfa{bottom:201.228161pt;}
.ya0{bottom:202.028162pt;}
.y3b{bottom:203.628163pt;}
.y131{bottom:206.028165pt;}
.y115{bottom:208.908167pt;}
.y156{bottom:209.868168pt;}
.y70{bottom:215.628173pt;}
.yf9{bottom:218.188175pt;}
.y9f{bottom:218.508175pt;}
.y3a{bottom:220.268176pt;}
.y130{bottom:222.508178pt;}
.y114{bottom:225.228180pt;}
.y155{bottom:226.348181pt;}
.yc9{bottom:232.108186pt;}
.y6f{bottom:232.268186pt;}
.y9e{bottom:235.148188pt;}
.y39{bottom:236.748189pt;}
.y12f{bottom:239.148191pt;}
.y113{bottom:239.788192pt;}
.y154{bottom:242.988194pt;}
.yf8{bottom:244.908196pt;}
.y112{bottom:246.028197pt;}
.y6e{bottom:248.748199pt;}
.y9d{bottom:251.628201pt;}
.y38{bottom:253.388203pt;}
.y18e{bottom:255.468204pt;}
.y12e{bottom:255.628205pt;}
.y153{bottom:259.628208pt;}
.yc8{bottom:265.228212pt;}
.y6d{bottom:265.388212pt;}
.y9c{bottom:268.268215pt;}
.yf7{bottom:271.308217pt;}
.y12d{bottom:272.268218pt;}
.y37{bottom:272.428218pt;}
.y18d{bottom:272.748218pt;}
.y152{bottom:278.508223pt;}
.yc7{bottom:281.548225pt;}
.y6c{bottom:281.868225pt;}
.y9b{bottom:284.748228pt;}
.y12c{bottom:288.748231pt;}
.y18c{bottom:289.388232pt;}
.y36{bottom:289.708232pt;}
.yf6{bottom:291.948234pt;}
.y151{bottom:297.388238pt;}
.yc6{bottom:297.708238pt;}
.y6b{bottom:298.508239pt;}
.yf5{bottom:300.748241pt;}
.y9a{bottom:301.388241pt;}
.y35{bottom:303.628243pt;}
.y12b{bottom:305.388244pt;}
.y18b{bottom:305.868245pt;}
.yc5{bottom:314.028251pt;}
.yf4{bottom:314.988252pt;}
.y6a{bottom:315.148252pt;}
.y99{bottom:317.868254pt;}
.y34{bottom:320.268256pt;}
.y12a{bottom:322.028258pt;}
.y18a{bottom:323.148259pt;}
.yf3{bottom:325.068260pt;}
.yc4{bottom:330.668265pt;}
.y69{bottom:331.628265pt;}
.y98{bottom:334.188267pt;}
.y33{bottom:336.748269pt;}
.y129{bottom:338.508271pt;}
.y189{bottom:339.628272pt;}
.yf2{bottom:341.548273pt;}
.yc3{bottom:347.148278pt;}
.y150{bottom:347.308278pt;}
.y68{bottom:348.268279pt;}
.y97{bottom:350.508280pt;}
.y32{bottom:353.388283pt;}
.y128{bottom:355.148284pt;}
.y188{bottom:356.908286pt;}
.yf1{bottom:358.188287pt;}
.yc2{bottom:363.788291pt;}
.y67{bottom:364.748292pt;}
.y96{bottom:367.148294pt;}
.y31{bottom:369.868296pt;}
.y187{bottom:373.388299pt;}
.y127{bottom:374.028299pt;}
.yf0{bottom:374.668300pt;}
.yc1{bottom:380.108304pt;}
.y14f{bottom:380.428304pt;}
.y66{bottom:381.388305pt;}
.y95{bottom:383.788307pt;}
.y30{bottom:386.508309pt;}
.y186{bottom:390.668313pt;}
.yef{bottom:391.308313pt;}
.y126{bottom:393.068314pt;}
.yc0{bottom:396.108317pt;}
.y14e{bottom:396.908318pt;}
.y65{bottom:397.868318pt;}
.y94{bottom:400.268320pt;}
.y2f{bottom:403.148323pt;}
.y185{bottom:407.148326pt;}
.yee{bottom:407.628326pt;}
.y125{bottom:409.708328pt;}
.ybf{bottom:412.428330pt;}
.y14d{bottom:413.548331pt;}
.y64{bottom:414.508332pt;}
.y93{bottom:416.908334pt;}
.y2e{bottom:419.628336pt;}
.yed{bottom:421.868337pt;}
.y184{bottom:423.628339pt;}
.y124{bottom:426.188341pt;}
.ybe{bottom:429.068343pt;}
.y14c{bottom:430.028344pt;}
.y63{bottom:430.988345pt;}
.yec{bottom:431.948346pt;}
.y92{bottom:433.388347pt;}
.y2d{bottom:436.268349pt;}
.y183{bottom:440.908353pt;}
.y123{bottom:442.828354pt;}
.ybd{bottom:445.548356pt;}
.y14b{bottom:446.668357pt;}
.y62{bottom:447.628358pt;}
.yeb{bottom:448.588359pt;}
.y91{bottom:450.028360pt;}
.y2c{bottom:452.748362pt;}
.y182{bottom:457.388366pt;}
.y122{bottom:459.308367pt;}
.ybc{bottom:461.868369pt;}
.y14a{bottom:463.148371pt;}
.y61{bottom:464.268371pt;}
.yea{bottom:465.068372pt;}
.y90{bottom:466.348373pt;}
.y2b{bottom:469.388376pt;}
.y181{bottom:474.668380pt;}
.y121{bottom:475.948381pt;}
.ybb{bottom:478.028382pt;}
.y149{bottom:479.788384pt;}
.y60{bottom:480.748385pt;}
.ye9{bottom:481.708385pt;}
.y8f{bottom:482.348386pt;}
.y2a{bottom:485.868389pt;}
.y180{bottom:491.148393pt;}
.y111{bottom:491.948394pt;}
.yba{bottom:494.348395pt;}
.y120{bottom:494.828396pt;}
.y148{bottom:496.428397pt;}
.y5f{bottom:497.068398pt;}
.ye8{bottom:498.188399pt;}
.y8e{bottom:498.668399pt;}
.y29{bottom:504.908404pt;}
.y17f{bottom:507.628406pt;}
.y110{bottom:508.428407pt;}
.yb9{bottom:510.828409pt;}
.y147{bottom:512.908410pt;}
.y5e{bottom:513.228411pt;}
.y11f{bottom:513.708411pt;}
.ye7{bottom:514.828412pt;}
.y8d{bottom:515.308412pt;}
.y28{bottom:521.228417pt;}
.y17e{bottom:524.908420pt;}
.y10f{bottom:525.068420pt;}
.yb8{bottom:527.468422pt;}
.y146{bottom:529.548424pt;}
.y11e{bottom:530.028424pt;}
.ye6{bottom:531.468425pt;}
.y8c{bottom:531.788425pt;}
.y5d{bottom:532.108426pt;}
.y27{bottom:537.868430pt;}
.y17d{bottom:541.388433pt;}
.y10e{bottom:541.548433pt;}
.yb7{bottom:543.948435pt;}
.y11d{bottom:546.508437pt;}
.ye5{bottom:547.948438pt;}
.y8b{bottom:548.428439pt;}
.y5c{bottom:548.748439pt;}
.y26{bottom:552.108442pt;}
.y10d{bottom:558.188447pt;}
.y17c{bottom:558.668447pt;}
.y11c{bottom:559.308447pt;}
.yb6{bottom:560.588448pt;}
.y25{bottom:561.068449pt;}
.ye4{bottom:564.588452pt;}
.y8a{bottom:565.068452pt;}
.y5b{bottom:565.228452pt;}
.y145{bottom:567.468454pt;}
.y10c{bottom:574.668460pt;}
.y17b{bottom:575.148460pt;}
.yb5{bottom:577.068462pt;}
.y24{bottom:577.548462pt;}
.ye3{bottom:581.068465pt;}
.y89{bottom:581.548465pt;}
.y5a{bottom:581.868465pt;}
.y144{bottom:584.108467pt;}
.y10b{bottom:591.308473pt;}
.y17a{bottom:592.428474pt;}
.yb4{bottom:593.708475pt;}
.y23{bottom:594.188475pt;}
.ye2{bottom:597.708478pt;}
.y88{bottom:598.188479pt;}
.y59{bottom:598.508479pt;}
.y143{bottom:600.588480pt;}
.y10a{bottom:607.788486pt;}
.y179{bottom:608.908487pt;}
.yb3{bottom:610.348488pt;}
.y22{bottom:610.668489pt;}
.ye1{bottom:614.188491pt;}
.y87{bottom:614.668492pt;}
.y58{bottom:614.988492pt;}
.y142{bottom:617.228494pt;}
.y109{bottom:624.428500pt;}
.y176{bottom:624.908800pt;}
.y178{bottom:626.508501pt;}
.yb2{bottom:626.828501pt;}
.y21{bottom:627.308502pt;}
.y175{bottom:628.268503pt;}
.ye0{bottom:630.828505pt;}
.y86{bottom:631.308505pt;}
.y57{bottom:631.628505pt;}
.y141{bottom:633.708507pt;}
.y108{bottom:638.668511pt;}
.yb1{bottom:643.468515pt;}
.y174{bottom:643.628515pt;}
.y20{bottom:643.788515pt;}
.ydf{bottom:647.308518pt;}
.y85{bottom:647.788518pt;}
.y56{bottom:648.108518pt;}
.y107{bottom:649.228519pt;}
.y140{bottom:650.348520pt;}
.yb0{bottom:659.948528pt;}
.y173{bottom:660.108528pt;}
.y1f{bottom:660.428528pt;}
.yde{bottom:663.628531pt;}
.y84{bottom:664.108531pt;}
.y13f{bottom:666.828533pt;}
.y55{bottom:667.148534pt;}
.y106{bottom:668.588535pt;}
.yaf{bottom:676.588541pt;}
.y172{bottom:676.748541pt;}
.y1e{bottom:676.908542pt;}
.ydd{bottom:679.788544pt;}
.y83{bottom:680.268544pt;}
.y13e{bottom:683.468547pt;}
.y54{bottom:686.028549pt;}
.y105{bottom:687.468550pt;}
.yae{bottom:693.068554pt;}
.y171{bottom:693.228555pt;}
.y1d{bottom:693.548555pt;}
.ydc{bottom:696.108557pt;}
.y82{bottom:696.268557pt;}
.y53{bottom:702.668562pt;}
.y104{bottom:703.468563pt;}
.y1a5{bottom:705.548564pt;}
.y81{bottom:708.748567pt;}
.yad{bottom:709.708568pt;}
.y170{bottom:709.868568pt;}
.y1c{bottom:710.188568pt;}
.ydb{bottom:712.588570pt;}
.y103{bottom:713.228571pt;}
.y52{bottom:719.308575pt;}
.y1a4{bottom:722.028578pt;}
.yac{bottom:726.188581pt;}
.y16f{bottom:726.348581pt;}
.y1b{bottom:726.668581pt;}
.yda{bottom:729.228583pt;}
.y102{bottom:729.548584pt;}
.y51{bottom:735.788589pt;}
.y1a3{bottom:738.668591pt;}
.yab{bottom:742.828594pt;}
.y16e{bottom:742.988594pt;}
.y1a{bottom:743.308595pt;}
.yd9{bottom:745.548596pt;}
.y101{bottom:746.188597pt;}
.y50{bottom:752.428602pt;}
.y1a2{bottom:755.148604pt;}
.yaa{bottom:759.468608pt;}
.y16d{bottom:759.628608pt;}
.y19{bottom:759.788608pt;}
.y100{bottom:760.428608pt;}
.yd8{bottom:761.708609pt;}
.yff{bottom:765.548612pt;}
.y4f{bottom:768.908615pt;}
.y1a1{bottom:771.628617pt;}
.ya9{bottom:775.948621pt;}
.y16c{bottom:776.108621pt;}
.y18{bottom:776.428621pt;}
.yd7{bottom:778.028622pt;}
.y4e{bottom:785.548628pt;}
.y13d{bottom:787.948630pt;}
.y1a0{bottom:788.908631pt;}
.ya8{bottom:792.588634pt;}
.y16b{bottom:792.748634pt;}
.y17{bottom:792.908634pt;}
.yd6{bottom:794.508636pt;}
.y4d{bottom:802.028642pt;}
.y19f{bottom:805.388644pt;}
.y13c{bottom:806.828645pt;}
.ya7{bottom:809.068647pt;}
.y16{bottom:809.228647pt;}
.yd5{bottom:811.148649pt;}
.y4c{bottom:818.668655pt;}
.y19e{bottom:822.668658pt;}
.y13b{bottom:823.468659pt;}
.y15{bottom:825.388660pt;}
.ya6{bottom:825.708661pt;}
.y16a{bottom:825.868661pt;}
.yd4{bottom:827.628662pt;}
.y4b{bottom:835.308668pt;}
.y19d{bottom:839.148671pt;}
.y13a{bottom:840.108672pt;}
.y14{bottom:841.708673pt;}
.y80{bottom:842.188674pt;}
.y169{bottom:842.348674pt;}
.yd3{bottom:843.948675pt;}
.y4a{bottom:854.188683pt;}
.y19c{bottom:856.428685pt;}
.y139{bottom:856.588685pt;}
.y12{bottom:858.028686pt;}
.y13{bottom:858.188687pt;}
.y7f{bottom:858.828687pt;}
.y168{bottom:858.988687pt;}
.yd2{bottom:860.108688pt;}
.y19b{bottom:872.908698pt;}
.y49{bottom:873.068698pt;}
.y138{bottom:873.228699pt;}
.y11{bottom:874.988700pt;}
.y7e{bottom:875.308700pt;}
.y167{bottom:875.468700pt;}
.yd1{bottom:876.428701pt;}
.y48{bottom:889.708712pt;}
.y19a{bottom:890.188712pt;}
.y10{bottom:890.988713pt;}
.y164{bottom:890.988800pt;}
.y7d{bottom:891.948714pt;}
.y166{bottom:892.588714pt;}
.yd0{bottom:892.908714pt;}
.y163{bottom:894.348715pt;}
.y47{bottom:906.348725pt;}
.y199{bottom:906.668725pt;}
.y7c{bottom:908.588727pt;}
.y162{bottom:909.228727pt;}
.ycf{bottom:909.548728pt;}
.y46{bottom:922.988738pt;}
.y198{bottom:923.148739pt;}
.y7b{bottom:925.068740pt;}
.y161{bottom:925.548740pt;}
.yce{bottom:925.868741pt;}
.yf{bottom:931.788745pt;}
.y45{bottom:939.468752pt;}
.y197{bottom:940.428752pt;}
.y7a{bottom:941.708753pt;}
.ycd{bottom:941.868753pt;}
.y160{bottom:942.188754pt;}
.ye{bottom:949.068759pt;}
.y44{bottom:956.108765pt;}
.y196{bottom:956.908766pt;}
.y79{bottom:958.188767pt;}
.y15f{bottom:958.668767pt;}
.y43{bottom:972.588778pt;}
.y195{bottom:974.188779pt;}
.yd{bottom:974.828780pt;}
.y15e{bottom:975.308780pt;}
.y42{bottom:989.228791pt;}
.y194{bottom:990.828793pt;}
.y78{bottom:991.308793pt;}
.y15d{bottom:991.788793pt;}
.yc{bottom:1000.588800pt;}
.y193{bottom:1007.148806pt;}
.y77{bottom:1007.948806pt;}
.y41{bottom:1008.108806pt;}
.ya{bottom:1034.188800pt;}
.y3{bottom:1034.348827pt;}
.y2{bottom:1046.668837pt;}
.y9{bottom:1048.268839pt;}
.y1{bottom:1058.988847pt;}
.y8{bottom:1060.588848pt;}
.h5{height:11.520000pt;}
.hf{height:14.080000pt;}
.hb{height:19.119390pt;}
.hd{height:19.595641pt;}
.hc{height:23.328144pt;}
.h4{height:28.968773pt;}
.h6{height:29.040336pt;}
.h8{height:29.688774pt;}
.h1{height:29.773149pt;}
.h9{height:38.724718pt;}
.he{height:42.485659pt;}
.ha{height:42.550034pt;}
.h3{height:44.437536pt;}
.h2{height:48.088163pt;}
.h7{height:62.052862pt;}
.h0{height:1122.666667pt;}
.w2{width:5.280000pt;}
.w3{width:8.000000pt;}
.w1{width:215.040000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:72.000058pt;}
.x1d{left:79.360063pt;}
.x3{left:81.600065pt;}
.x17{left:83.360067pt;}
.xd{left:85.440068pt;}
.x1e{left:92.480000pt;}
.xe{left:96.001322pt;}
.x1a{left:100.800081pt;}
.x1c{left:110.079410pt;}
.x13{left:114.080091pt;}
.x21{left:120.000151pt;}
.x15{left:131.200105pt;}
.x19{left:142.080114pt;}
.x9{left:166.400654pt;}
.x12{left:179.360143pt;}
.x14{left:211.199715pt;}
.xa{left:222.400663pt;}
.x18{left:224.159942pt;}
.xb{left:243.200195pt;}
.x10{left:263.680245pt;}
.x1f{left:372.000298pt;}
.x20{left:380.160304pt;}
.x8{left:396.960318pt;}
.xc{left:429.920294pt;}
.x4{left:498.880399pt;}
.x6{left:500.800000pt;}
.x5{left:572.160451pt;}
.xf{left:608.800487pt;}
.x16{left:642.080514pt;}
.x1b{left:669.760536pt;}
.x11{left:692.960554pt;}
.x2{left:699.680560pt;}
.x7{left:715.520000pt;}
}




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