
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_2d4f4c5ab4e41b727ea293cc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_f92618cb8ccc4201ee4291f3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_0c822db0072328c3877f5ae8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_0f5f9b227849b7fb3ed253c9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_66cb797180ecf2362e58c8f8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_a1f1fd01b68177aaa6baf83e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls20{letter-spacing:-0.960000px;}
.ls7{letter-spacing:-0.463800px;}
.lsf{letter-spacing:-0.326400px;}
.ls9{letter-spacing:-0.303000px;}
.ls1b{letter-spacing:-0.298200px;}
.ls11{letter-spacing:-0.291000px;}
.lsa{letter-spacing:-0.256800px;}
.ls2c{letter-spacing:-0.240600px;}
.ls23{letter-spacing:-0.186600px;}
.ls22{letter-spacing:-0.143400px;}
.lse{letter-spacing:-0.115800px;}
.ls13{letter-spacing:-0.082200px;}
.ls1c{letter-spacing:-0.069600px;}
.ls27{letter-spacing:-0.064800px;}
.ls1d{letter-spacing:-0.058320px;}
.ls6{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.060600px;}
.lsd{letter-spacing:0.066000px;}
.lsc{letter-spacing:0.140400px;}
.ls19{letter-spacing:0.174000px;}
.ls16{letter-spacing:0.174240px;}
.ls4{letter-spacing:0.174960px;}
.ls2f{letter-spacing:0.175200px;}
.ls1e{letter-spacing:0.180000px;}
.ls2d{letter-spacing:0.186600px;}
.lsb{letter-spacing:0.190200px;}
.ls21{letter-spacing:0.195120px;}
.ls3{letter-spacing:0.214560px;}
.ls12{letter-spacing:0.238800px;}
.ls8{letter-spacing:0.256200px;}
.ls10{letter-spacing:0.393600px;}
.ls18{letter-spacing:0.617760px;}
.ls1f{letter-spacing:0.654000px;}
.ls2a{letter-spacing:0.659520px;}
.ls2e{letter-spacing:0.660000px;}
.ls30{letter-spacing:0.894000px;}
.ls1a{letter-spacing:0.894240px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls24{letter-spacing:2.106720px;}
.ls2b{letter-spacing:4.494240px;}
.ls17{letter-spacing:5.706720px;}
.ls26{letter-spacing:12.186720px;}
.ls29{letter-spacing:13.626720px;}
.ls14{letter-spacing:21.546720px;}
.ls5{letter-spacing:38.106720px;}
.ls25{letter-spacing:42.570720px;}
.ls15{letter-spacing:202.638240px;}
.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;}
}
.ws0{word-spacing:-41.040000px;}
.ws5{word-spacing:-21.384960px;}
.ws4{word-spacing:-21.338760px;}
.ws3{word-spacing:-15.226440px;}
.wse{word-spacing:-15.209040px;}
.ws2{word-spacing:-14.970240px;}
.wsd{word-spacing:-14.679240px;}
.ws1{word-spacing:-14.506440px;}
.ws1a{word-spacing:-14.399760px;}
.ws17{word-spacing:-14.165760px;}
.ws12{word-spacing:-14.159760px;}
.ws16{word-spacing:-13.692360px;}
.ws19{word-spacing:-13.680960px;}
.ws8{word-spacing:-13.646160px;}
.ws9{word-spacing:-13.505760px;}
.ws11{word-spacing:-13.447440px;}
.ws15{word-spacing:-13.440960px;}
.ws10{word-spacing:-13.436160px;}
.wsa{word-spacing:-13.389960px;}
.ws13{word-spacing:-13.362360px;}
.ws14{word-spacing:-13.319160px;}
.ws18{word-spacing:-13.265160px;}
.ws1b{word-spacing:-13.202760px;}
.wsb{word-spacing:-13.179360px;}
.ws6{word-spacing:-9.437760px;}
.ws7{word-spacing:-8.786880px;}
.wsf{word-spacing:-8.704680px;}
.wsc{word-spacing:0.000000px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1009.684800px;}
._5{margin-left:-582.617760px;}
._18{margin-left:-7.081200px;}
._15{margin-left:-5.557680px;}
._10{margin-left:-3.844560px;}
._f{margin-left:-2.629440px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._6{width:2.974560px;}
._b{width:4.165440px;}
._8{width:5.228640px;}
._7{width:6.703200px;}
._a{width:7.788480px;}
._9{width:9.692400px;}
._d{width:11.035680px;}
._c{width:12.310560px;}
._e{width:14.740800px;}
._12{width:15.836400px;}
._16{width:17.128800px;}
._22{width:18.185280px;}
._1b{width:19.743600px;}
._1a{width:21.049200px;}
._13{width:25.876080px;}
._14{width:26.951760px;}
._20{width:38.365920px;}
._21{width:39.501360px;}
._1f{width:44.820000px;}
._1e{width:45.849600px;}
._1d{width:51.095040px;}
._1c{width:52.183200px;}
._17{width:90.984480px;}
._19{width:103.839360px;}
._11{width:202.638240px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y64{bottom:6.660000px;}
.yb2{bottom:7.380000px;}
.yab{bottom:18.180000px;}
.y7b{bottom:19.980000px;}
.y7e{bottom:27.720000px;}
.yb0{bottom:28.440000px;}
.y6{bottom:61.236000px;}
.y7a{bottom:87.876000px;}
.y125{bottom:90.036000px;}
.yf2{bottom:92.556000px;}
.ya9{bottom:101.916000px;}
.y124{bottom:104.076000px;}
.yd2{bottom:104.796000px;}
.yf1{bottom:113.616000px;}
.y30{bottom:115.956000px;}
.y79{bottom:122.256000px;}
.ya8{bottom:122.976000px;}
.y123{bottom:125.136000px;}
.yd1{bottom:125.856000px;}
.y6e{bottom:127.296000px;}
.y62{bottom:130.356000px;}
.yf0{bottom:134.676000px;}
.y2f{bottom:137.016000px;}
.y78{bottom:143.316000px;}
.ya7{bottom:144.036000px;}
.y122{bottom:146.196000px;}
.yd0{bottom:146.916000px;}
.y6d{bottom:148.356000px;}
.y61{bottom:151.410000px;}
.yef{bottom:155.730000px;}
.y2e{bottom:158.070000px;}
.y77{bottom:164.370000px;}
.ya6{bottom:165.090000px;}
.y121{bottom:167.250000px;}
.ycf{bottom:167.970000px;}
.y6c{bottom:169.410000px;}
.y60{bottom:172.470000px;}
.yee{bottom:176.790000px;}
.y2d{bottom:179.130000px;}
.y76{bottom:185.430000px;}
.ya5{bottom:186.150000px;}
.y120{bottom:188.310000px;}
.yce{bottom:189.030000px;}
.y6b{bottom:190.470000px;}
.y5f{bottom:193.530000px;}
.yed{bottom:197.850000px;}
.y2c{bottom:200.190000px;}
.y75{bottom:206.490000px;}
.ya4{bottom:207.030000px;}
.y11f{bottom:209.370000px;}
.ycd{bottom:210.090000px;}
.y6a{bottom:211.530000px;}
.y5e{bottom:214.590000px;}
.yec{bottom:218.910000px;}
.y2b{bottom:221.250000px;}
.y74{bottom:227.550000px;}
.ya3{bottom:228.090000px;}
.y11e{bottom:230.430000px;}
.ycc{bottom:231.150000px;}
.y69{bottom:232.590000px;}
.y5d{bottom:235.650000px;}
.yeb{bottom:239.970000px;}
.y2a{bottom:242.310000px;}
.y68{bottom:247.890000px;}
.y73{bottom:248.610000px;}
.ya2{bottom:249.150000px;}
.y11d{bottom:251.490000px;}
.ycb{bottom:252.210000px;}
.y5c{bottom:256.710000px;}
.yea{bottom:261.030000px;}
.y29{bottom:263.370000px;}
.yae{bottom:264.450000px;}
.y67{bottom:269.670000px;}
.y11c{bottom:272.550000px;}
.yca{bottom:273.270000px;}
.y5b{bottom:277.770000px;}
.ye9{bottom:282.135000px;}
.y28{bottom:284.475000px;}
.yad{bottom:286.275000px;}
.y66{bottom:290.775000px;}
.y11b{bottom:293.655000px;}
.yc9{bottom:294.375000px;}
.y5a{bottom:298.875000px;}
.ye8{bottom:303.195000px;}
.y27{bottom:305.535000px;}
.yac{bottom:307.335000px;}
.y65{bottom:311.835000px;}
.y11a{bottom:314.715000px;}
.yc8{bottom:315.435000px;}
.y59{bottom:319.935000px;}
.ye7{bottom:324.255000px;}
.y26{bottom:326.595000px;}
.yaa{bottom:329.115000px;}
.y72{bottom:332.895000px;}
.y63{bottom:333.615000px;}
.y119{bottom:335.775000px;}
.yc7{bottom:336.495000px;}
.y58{bottom:340.995000px;}
.ye6{bottom:345.315000px;}
.y25{bottom:347.655000px;}
.y71{bottom:353.955000px;}
.y118{bottom:356.835000px;}
.yc6{bottom:357.555000px;}
.y57{bottom:362.055000px;}
.ye5{bottom:366.375000px;}
.ya1{bottom:368.175000px;}
.y24{bottom:368.715000px;}
.y70{bottom:375.015000px;}
.y117{bottom:377.895000px;}
.yc5{bottom:378.615000px;}
.y56{bottom:383.115000px;}
.ye4{bottom:387.435000px;}
.ya0{bottom:389.235000px;}
.y23{bottom:389.775000px;}
.y6f{bottom:396.795000px;}
.y116{bottom:398.955000px;}
.yc4{bottom:399.675000px;}
.y55{bottom:404.175000px;}
.ye3{bottom:408.495000px;}
.y9f{bottom:410.295000px;}
.y22{bottom:410.835000px;}
.y115{bottom:420.015000px;}
.yc3{bottom:420.735000px;}
.y54{bottom:425.235000px;}
.ye2{bottom:429.555000px;}
.y9e{bottom:431.355000px;}
.y21{bottom:431.895000px;}
.y114{bottom:441.075000px;}
.yc2{bottom:441.795000px;}
.y53{bottom:446.295000px;}
.ye1{bottom:450.615000px;}
.y9d{bottom:452.415000px;}
.y20{bottom:452.955000px;}
.y113{bottom:462.135000px;}
.yc1{bottom:462.855000px;}
.y52{bottom:467.355000px;}
.ye0{bottom:471.675000px;}
.y9c{bottom:473.475000px;}
.y1f{bottom:474.015000px;}
.y112{bottom:483.195000px;}
.yc0{bottom:483.915000px;}
.y51{bottom:488.415000px;}
.ydf{bottom:492.735000px;}
.y9b{bottom:494.535000px;}
.y1e{bottom:495.075000px;}
.y111{bottom:504.255000px;}
.ybf{bottom:504.975000px;}
.y50{bottom:509.475000px;}
.yde{bottom:514.335000px;}
.y9a{bottom:515.595000px;}
.y1d{bottom:516.135000px;}
.y110{bottom:525.315000px;}
.ybe{bottom:526.035000px;}
.y4f{bottom:530.535000px;}
.ydd{bottom:536.115000px;}
.y99{bottom:536.655000px;}
.y1c{bottom:537.195000px;}
.y10f{bottom:546.375000px;}
.ybd{bottom:547.095000px;}
.y4e{bottom:551.595000px;}
.y98{bottom:557.715000px;}
.ydc{bottom:558.075000px;}
.y1b{bottom:558.255000px;}
.y10e{bottom:567.465000px;}
.ybc{bottom:568.185000px;}
.y4d{bottom:572.685000px;}
.y97{bottom:578.805000px;}
.ydb{bottom:580.065000px;}
.y10d{bottom:588.525000px;}
.ybb{bottom:589.245000px;}
.y4c{bottom:593.745000px;}
.y96{bottom:599.865000px;}
.yda{bottom:601.485000px;}
.y1a{bottom:602.745000px;}
.y10c{bottom:609.585000px;}
.yba{bottom:610.305000px;}
.y4b{bottom:614.805000px;}
.y95{bottom:620.925000px;}
.yd9{bottom:622.545000px;}
.y10b{bottom:630.645000px;}
.yb9{bottom:631.365000px;}
.y19{bottom:632.625000px;}
.y4a{bottom:635.865000px;}
.y94{bottom:641.985000px;}
.yd8{bottom:643.605000px;}
.yb7{bottom:646.485000px;}
.y10a{bottom:651.705000px;}
.y18{bottom:653.685000px;}
.y49{bottom:656.925000px;}
.y93{bottom:663.045000px;}
.yd7{bottom:663.405000px;}
.yb8{bottom:668.265000px;}
.y109{bottom:672.765000px;}
.y17{bottom:674.745000px;}
.y48{bottom:677.985000px;}
.yd6{bottom:683.205000px;}
.y92{bottom:684.105000px;}
.yb6{bottom:690.045000px;}
.y108{bottom:693.825000px;}
.y16{bottom:695.805000px;}
.y47{bottom:699.045000px;}
.yd5{bottom:702.825000px;}
.y91{bottom:705.165000px;}
.yb5{bottom:711.105000px;}
.y107{bottom:714.885000px;}
.y15{bottom:716.865000px;}
.y46{bottom:720.105000px;}
.yd4{bottom:722.625000px;}
.y90{bottom:726.225000px;}
.yb4{bottom:732.165000px;}
.y106{bottom:735.945000px;}
.y14{bottom:737.925000px;}
.y45{bottom:741.165000px;}
.yd3{bottom:742.425000px;}
.y8f{bottom:747.285000px;}
.yb3{bottom:753.225000px;}
.y105{bottom:757.005000px;}
.y13{bottom:758.985000px;}
.y44{bottom:762.225000px;}
.y8e{bottom:768.345000px;}
.y104{bottom:778.065000px;}
.y12{bottom:780.045000px;}
.y43{bottom:783.285000px;}
.y8d{bottom:789.405000px;}
.yaf{bottom:796.065000px;}
.y103{bottom:799.665000px;}
.y11{bottom:801.105000px;}
.y42{bottom:804.345000px;}
.y8c{bottom:810.465000px;}
.yb1{bottom:817.845000px;}
.y102{bottom:821.445000px;}
.y10{bottom:822.165000px;}
.y41{bottom:825.405000px;}
.y8b{bottom:831.525000px;}
.y101{bottom:842.865000px;}
.yf{bottom:843.225000px;}
.y40{bottom:846.465000px;}
.y8a{bottom:852.630000px;}
.y100{bottom:863.970000px;}
.ye{bottom:864.330000px;}
.y3f{bottom:867.570000px;}
.y89{bottom:873.690000px;}
.yd{bottom:885.390000px;}
.yff{bottom:885.570000px;}
.y3e{bottom:888.630000px;}
.y88{bottom:894.750000px;}
.yfe{bottom:907.530000px;}
.yc{bottom:908.610000px;}
.y3d{bottom:909.690000px;}
.y87{bottom:915.810000px;}
.yfd{bottom:929.490000px;}
.y3c{bottom:930.570000px;}
.yb{bottom:934.890000px;}
.y86{bottom:936.870000px;}
.yfc{bottom:950.910000px;}
.y3b{bottom:951.630000px;}
.ya{bottom:955.950000px;}
.y85{bottom:957.930000px;}
.yfb{bottom:971.970000px;}
.y9{bottom:972.690000px;}
.y84{bottom:978.990000px;}
.yfa{bottom:993.030000px;}
.y3a{bottom:993.750000px;}
.y8{bottom:995.010000px;}
.y83{bottom:1000.050000px;}
.yf9{bottom:1014.090000px;}
.y39{bottom:1014.810000px;}
.y7{bottom:1020.210000px;}
.y82{bottom:1021.110000px;}
.yf8{bottom:1035.150000px;}
.y38{bottom:1035.870000px;}
.y81{bottom:1042.170000px;}
.yf7{bottom:1056.210000px;}
.y37{bottom:1056.930000px;}
.y5{bottom:1060.350000px;}
.y80{bottom:1063.230000px;}
.yf6{bottom:1077.270000px;}
.y36{bottom:1077.990000px;}
.y7f{bottom:1078.350000px;}
.y4{bottom:1092.570000px;}
.yf5{bottom:1098.330000px;}
.y35{bottom:1099.050000px;}
.y7d{bottom:1100.130000px;}
.yf4{bottom:1119.390000px;}
.y34{bottom:1120.110000px;}
.y3{bottom:1124.610000px;}
.yf3{bottom:1140.840000px;}
.y33{bottom:1141.200000px;}
.y7c{bottom:1142.280000px;}
.y2{bottom:1156.860000px;}
.y32{bottom:1162.260000px;}
.y1{bottom:1191.420000px;}
.y31{bottom:1193.220000px;}
.hb{height:21.060000px;}
.hc{height:21.096000px;}
.hf{height:32.580000px;}
.hd{height:34.380000px;}
.h7{height:38.671172px;}
.h11{height:42.120000px;}
.he{height:42.156000px;}
.h10{height:42.840000px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.ha{height:59.551172px;}
.h5{height:61.189805px;}
.h12{height:61.423863px;}
.h9{height:62.211094px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:53.280000px;}
.w9{width:63.900000px;}
.w5{width:64.260000px;}
.w4{width:72.396000px;}
.wf{width:81.540000px;}
.we{width:81.756000px;}
.w18{width:89.496000px;}
.w19{width:98.460000px;}
.w6{width:103.500000px;}
.w15{width:123.336000px;}
.wb{width:124.776000px;}
.w12{width:125.820000px;}
.w11{width:130.356000px;}
.w16{width:147.816000px;}
.w13{width:148.716000px;}
.wc{width:149.976000px;}
.w10{width:154.650000px;}
.w17{width:180.720000px;}
.w14{width:187.950000px;}
.w7{width:191.190000px;}
.wd{width:210.990000px;}
.w3{width:353.775000px;}
.w8{width:419.145000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.100000px;}
.x17{left:13.140000px;}
.x10{left:14.220000px;}
.x9{left:16.920000px;}
.x5{left:18.540000px;}
.x1d{left:21.780000px;}
.xd{left:22.860000px;}
.x7{left:23.940000px;}
.x2d{left:25.200000px;}
.x13{left:27.540000px;}
.x15{left:31.680000px;}
.x2c{left:33.300000px;}
.x2b{left:37.476000px;}
.x27{left:40.500000px;}
.x29{left:41.940000px;}
.x1e{left:45.396000px;}
.x26{left:49.860000px;}
.xb{left:52.425000px;}
.x1{left:53.999987px;}
.x2a{left:57.420000px;}
.x2f{left:67.499987px;}
.x23{left:73.800000px;}
.x20{left:85.005000px;}
.x30{left:87.839987px;}
.x25{left:90.360000px;}
.x2e{left:100.475987px;}
.x31{left:101.735987px;}
.x2{left:108.035987px;}
.x3{left:148.710000px;}
.xe{left:154.470000px;}
.x16{left:187.050000px;}
.x1f{left:202.710000px;}
.x18{left:264.990000px;}
.x28{left:292.215000px;}
.x19{left:346.755000px;}
.x21{left:390.675000px;}
.x4{left:407.775000px;}
.x1a{left:428.295000px;}
.xf{left:473.145000px;}
.x6{left:480.165000px;}
.x22{left:514.005000px;}
.x11{left:537.045000px;}
.x8{left:544.425000px;}
.x1b{left:582.945000px;}
.x12{left:590.325000px;}
.xa{left:647.925000px;}
.x24{left:661.830000px;}
.x1c{left:713.310000px;}
.x14{left:715.110000px;}
.x32{left:839.309987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls20{letter-spacing:-0.853333pt;}
.ls7{letter-spacing:-0.412267pt;}
.lsf{letter-spacing:-0.290133pt;}
.ls9{letter-spacing:-0.269333pt;}
.ls1b{letter-spacing:-0.265067pt;}
.ls11{letter-spacing:-0.258667pt;}
.lsa{letter-spacing:-0.228267pt;}
.ls2c{letter-spacing:-0.213867pt;}
.ls23{letter-spacing:-0.165867pt;}
.ls22{letter-spacing:-0.127467pt;}
.lse{letter-spacing:-0.102933pt;}
.ls13{letter-spacing:-0.073067pt;}
.ls1c{letter-spacing:-0.061867pt;}
.ls27{letter-spacing:-0.057600pt;}
.ls1d{letter-spacing:-0.051840pt;}
.ls6{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.053867pt;}
.lsd{letter-spacing:0.058667pt;}
.lsc{letter-spacing:0.124800pt;}
.ls19{letter-spacing:0.154667pt;}
.ls16{letter-spacing:0.154880pt;}
.ls4{letter-spacing:0.155520pt;}
.ls2f{letter-spacing:0.155733pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls2d{letter-spacing:0.165867pt;}
.lsb{letter-spacing:0.169067pt;}
.ls21{letter-spacing:0.173440pt;}
.ls3{letter-spacing:0.190720pt;}
.ls12{letter-spacing:0.212267pt;}
.ls8{letter-spacing:0.227733pt;}
.ls10{letter-spacing:0.349867pt;}
.ls18{letter-spacing:0.549120pt;}
.ls1f{letter-spacing:0.581333pt;}
.ls2a{letter-spacing:0.586240pt;}
.ls2e{letter-spacing:0.586667pt;}
.ls30{letter-spacing:0.794667pt;}
.ls1a{letter-spacing:0.794880pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls24{letter-spacing:1.872640pt;}
.ls2b{letter-spacing:3.994880pt;}
.ls17{letter-spacing:5.072640pt;}
.ls26{letter-spacing:10.832640pt;}
.ls29{letter-spacing:12.112640pt;}
.ls14{letter-spacing:19.152640pt;}
.ls5{letter-spacing:33.872640pt;}
.ls25{letter-spacing:37.840640pt;}
.ls15{letter-spacing:180.122880pt;}
.ws0{word-spacing:-36.480000pt;}
.ws5{word-spacing:-19.008853pt;}
.ws4{word-spacing:-18.967787pt;}
.ws3{word-spacing:-13.534613pt;}
.wse{word-spacing:-13.519147pt;}
.ws2{word-spacing:-13.306880pt;}
.wsd{word-spacing:-13.048213pt;}
.ws1{word-spacing:-12.894613pt;}
.ws1a{word-spacing:-12.799787pt;}
.ws17{word-spacing:-12.591787pt;}
.ws12{word-spacing:-12.586453pt;}
.ws16{word-spacing:-12.170987pt;}
.ws19{word-spacing:-12.160853pt;}
.ws8{word-spacing:-12.129920pt;}
.ws9{word-spacing:-12.005120pt;}
.ws11{word-spacing:-11.953280pt;}
.ws15{word-spacing:-11.947520pt;}
.ws10{word-spacing:-11.943253pt;}
.wsa{word-spacing:-11.902187pt;}
.ws13{word-spacing:-11.877653pt;}
.ws14{word-spacing:-11.839253pt;}
.ws18{word-spacing:-11.791253pt;}
.ws1b{word-spacing:-11.735787pt;}
.wsb{word-spacing:-11.714987pt;}
.ws6{word-spacing:-8.389120pt;}
.ws7{word-spacing:-7.810560pt;}
.wsf{word-spacing:-7.737493pt;}
.wsc{word-spacing:0.000000pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-897.497600pt;}
._5{margin-left:-517.882453pt;}
._18{margin-left:-6.294400pt;}
._15{margin-left:-4.940160pt;}
._10{margin-left:-3.417387pt;}
._f{margin-left:-2.337280pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._6{width:2.644053pt;}
._b{width:3.702613pt;}
._8{width:4.647680pt;}
._7{width:5.958400pt;}
._a{width:6.923093pt;}
._9{width:8.615467pt;}
._d{width:9.809493pt;}
._c{width:10.942720pt;}
._e{width:13.102933pt;}
._12{width:14.076800pt;}
._16{width:15.225600pt;}
._22{width:16.164693pt;}
._1b{width:17.549867pt;}
._1a{width:18.710400pt;}
._13{width:23.000960pt;}
._14{width:23.957120pt;}
._20{width:34.103040pt;}
._21{width:35.112320pt;}
._1f{width:39.840000pt;}
._1e{width:40.755200pt;}
._1d{width:45.417813pt;}
._1c{width:46.385067pt;}
._17{width:80.875093pt;}
._19{width:92.301653pt;}
._11{width:180.122880pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:5.920000pt;}
.yb2{bottom:6.560000pt;}
.yab{bottom:16.160000pt;}
.y7b{bottom:17.760000pt;}
.y7e{bottom:24.640000pt;}
.yb0{bottom:25.280000pt;}
.y6{bottom:54.432000pt;}
.y7a{bottom:78.112000pt;}
.y125{bottom:80.032000pt;}
.yf2{bottom:82.272000pt;}
.ya9{bottom:90.592000pt;}
.y124{bottom:92.512000pt;}
.yd2{bottom:93.152000pt;}
.yf1{bottom:100.992000pt;}
.y30{bottom:103.072000pt;}
.y79{bottom:108.672000pt;}
.ya8{bottom:109.312000pt;}
.y123{bottom:111.232000pt;}
.yd1{bottom:111.872000pt;}
.y6e{bottom:113.152000pt;}
.y62{bottom:115.872000pt;}
.yf0{bottom:119.712000pt;}
.y2f{bottom:121.792000pt;}
.y78{bottom:127.392000pt;}
.ya7{bottom:128.032000pt;}
.y122{bottom:129.952000pt;}
.yd0{bottom:130.592000pt;}
.y6d{bottom:131.872000pt;}
.y61{bottom:134.586667pt;}
.yef{bottom:138.426667pt;}
.y2e{bottom:140.506667pt;}
.y77{bottom:146.106667pt;}
.ya6{bottom:146.746667pt;}
.y121{bottom:148.666667pt;}
.ycf{bottom:149.306667pt;}
.y6c{bottom:150.586667pt;}
.y60{bottom:153.306667pt;}
.yee{bottom:157.146667pt;}
.y2d{bottom:159.226667pt;}
.y76{bottom:164.826667pt;}
.ya5{bottom:165.466667pt;}
.y120{bottom:167.386667pt;}
.yce{bottom:168.026667pt;}
.y6b{bottom:169.306667pt;}
.y5f{bottom:172.026667pt;}
.yed{bottom:175.866667pt;}
.y2c{bottom:177.946667pt;}
.y75{bottom:183.546667pt;}
.ya4{bottom:184.026667pt;}
.y11f{bottom:186.106667pt;}
.ycd{bottom:186.746667pt;}
.y6a{bottom:188.026667pt;}
.y5e{bottom:190.746667pt;}
.yec{bottom:194.586667pt;}
.y2b{bottom:196.666667pt;}
.y74{bottom:202.266667pt;}
.ya3{bottom:202.746667pt;}
.y11e{bottom:204.826667pt;}
.ycc{bottom:205.466667pt;}
.y69{bottom:206.746667pt;}
.y5d{bottom:209.466667pt;}
.yeb{bottom:213.306667pt;}
.y2a{bottom:215.386667pt;}
.y68{bottom:220.346667pt;}
.y73{bottom:220.986667pt;}
.ya2{bottom:221.466667pt;}
.y11d{bottom:223.546667pt;}
.ycb{bottom:224.186667pt;}
.y5c{bottom:228.186667pt;}
.yea{bottom:232.026667pt;}
.y29{bottom:234.106667pt;}
.yae{bottom:235.066667pt;}
.y67{bottom:239.706667pt;}
.y11c{bottom:242.266667pt;}
.yca{bottom:242.906667pt;}
.y5b{bottom:246.906667pt;}
.ye9{bottom:250.786667pt;}
.y28{bottom:252.866667pt;}
.yad{bottom:254.466667pt;}
.y66{bottom:258.466667pt;}
.y11b{bottom:261.026667pt;}
.yc9{bottom:261.666667pt;}
.y5a{bottom:265.666667pt;}
.ye8{bottom:269.506667pt;}
.y27{bottom:271.586667pt;}
.yac{bottom:273.186667pt;}
.y65{bottom:277.186667pt;}
.y11a{bottom:279.746667pt;}
.yc8{bottom:280.386667pt;}
.y59{bottom:284.386667pt;}
.ye7{bottom:288.226667pt;}
.y26{bottom:290.306667pt;}
.yaa{bottom:292.546667pt;}
.y72{bottom:295.906667pt;}
.y63{bottom:296.546667pt;}
.y119{bottom:298.466667pt;}
.yc7{bottom:299.106667pt;}
.y58{bottom:303.106667pt;}
.ye6{bottom:306.946667pt;}
.y25{bottom:309.026667pt;}
.y71{bottom:314.626667pt;}
.y118{bottom:317.186667pt;}
.yc6{bottom:317.826667pt;}
.y57{bottom:321.826667pt;}
.ye5{bottom:325.666667pt;}
.ya1{bottom:327.266667pt;}
.y24{bottom:327.746667pt;}
.y70{bottom:333.346667pt;}
.y117{bottom:335.906667pt;}
.yc5{bottom:336.546667pt;}
.y56{bottom:340.546667pt;}
.ye4{bottom:344.386667pt;}
.ya0{bottom:345.986667pt;}
.y23{bottom:346.466667pt;}
.y6f{bottom:352.706667pt;}
.y116{bottom:354.626667pt;}
.yc4{bottom:355.266667pt;}
.y55{bottom:359.266667pt;}
.ye3{bottom:363.106667pt;}
.y9f{bottom:364.706667pt;}
.y22{bottom:365.186667pt;}
.y115{bottom:373.346667pt;}
.yc3{bottom:373.986667pt;}
.y54{bottom:377.986667pt;}
.ye2{bottom:381.826667pt;}
.y9e{bottom:383.426667pt;}
.y21{bottom:383.906667pt;}
.y114{bottom:392.066667pt;}
.yc2{bottom:392.706667pt;}
.y53{bottom:396.706667pt;}
.ye1{bottom:400.546667pt;}
.y9d{bottom:402.146667pt;}
.y20{bottom:402.626667pt;}
.y113{bottom:410.786667pt;}
.yc1{bottom:411.426667pt;}
.y52{bottom:415.426667pt;}
.ye0{bottom:419.266667pt;}
.y9c{bottom:420.866667pt;}
.y1f{bottom:421.346667pt;}
.y112{bottom:429.506667pt;}
.yc0{bottom:430.146667pt;}
.y51{bottom:434.146667pt;}
.ydf{bottom:437.986667pt;}
.y9b{bottom:439.586667pt;}
.y1e{bottom:440.066667pt;}
.y111{bottom:448.226667pt;}
.ybf{bottom:448.866667pt;}
.y50{bottom:452.866667pt;}
.yde{bottom:457.186667pt;}
.y9a{bottom:458.306667pt;}
.y1d{bottom:458.786667pt;}
.y110{bottom:466.946667pt;}
.ybe{bottom:467.586667pt;}
.y4f{bottom:471.586667pt;}
.ydd{bottom:476.546667pt;}
.y99{bottom:477.026667pt;}
.y1c{bottom:477.506667pt;}
.y10f{bottom:485.666667pt;}
.ybd{bottom:486.306667pt;}
.y4e{bottom:490.306667pt;}
.y98{bottom:495.746667pt;}
.ydc{bottom:496.066667pt;}
.y1b{bottom:496.226667pt;}
.y10e{bottom:504.413333pt;}
.ybc{bottom:505.053333pt;}
.y4d{bottom:509.053333pt;}
.y97{bottom:514.493333pt;}
.ydb{bottom:515.613333pt;}
.y10d{bottom:523.133333pt;}
.ybb{bottom:523.773333pt;}
.y4c{bottom:527.773333pt;}
.y96{bottom:533.213333pt;}
.yda{bottom:534.653333pt;}
.y1a{bottom:535.773333pt;}
.y10c{bottom:541.853333pt;}
.yba{bottom:542.493333pt;}
.y4b{bottom:546.493333pt;}
.y95{bottom:551.933333pt;}
.yd9{bottom:553.373333pt;}
.y10b{bottom:560.573333pt;}
.yb9{bottom:561.213333pt;}
.y19{bottom:562.333333pt;}
.y4a{bottom:565.213333pt;}
.y94{bottom:570.653333pt;}
.yd8{bottom:572.093333pt;}
.yb7{bottom:574.653333pt;}
.y10a{bottom:579.293333pt;}
.y18{bottom:581.053333pt;}
.y49{bottom:583.933333pt;}
.y93{bottom:589.373333pt;}
.yd7{bottom:589.693333pt;}
.yb8{bottom:594.013333pt;}
.y109{bottom:598.013333pt;}
.y17{bottom:599.773333pt;}
.y48{bottom:602.653333pt;}
.yd6{bottom:607.293333pt;}
.y92{bottom:608.093333pt;}
.yb6{bottom:613.373333pt;}
.y108{bottom:616.733333pt;}
.y16{bottom:618.493333pt;}
.y47{bottom:621.373333pt;}
.yd5{bottom:624.733333pt;}
.y91{bottom:626.813333pt;}
.yb5{bottom:632.093333pt;}
.y107{bottom:635.453333pt;}
.y15{bottom:637.213333pt;}
.y46{bottom:640.093333pt;}
.yd4{bottom:642.333333pt;}
.y90{bottom:645.533333pt;}
.yb4{bottom:650.813333pt;}
.y106{bottom:654.173333pt;}
.y14{bottom:655.933333pt;}
.y45{bottom:658.813333pt;}
.yd3{bottom:659.933333pt;}
.y8f{bottom:664.253333pt;}
.yb3{bottom:669.533333pt;}
.y105{bottom:672.893333pt;}
.y13{bottom:674.653333pt;}
.y44{bottom:677.533333pt;}
.y8e{bottom:682.973333pt;}
.y104{bottom:691.613333pt;}
.y12{bottom:693.373333pt;}
.y43{bottom:696.253333pt;}
.y8d{bottom:701.693333pt;}
.yaf{bottom:707.613333pt;}
.y103{bottom:710.813333pt;}
.y11{bottom:712.093333pt;}
.y42{bottom:714.973333pt;}
.y8c{bottom:720.413333pt;}
.yb1{bottom:726.973333pt;}
.y102{bottom:730.173333pt;}
.y10{bottom:730.813333pt;}
.y41{bottom:733.693333pt;}
.y8b{bottom:739.133333pt;}
.y101{bottom:749.213333pt;}
.yf{bottom:749.533333pt;}
.y40{bottom:752.413333pt;}
.y8a{bottom:757.893333pt;}
.y100{bottom:767.973333pt;}
.ye{bottom:768.293333pt;}
.y3f{bottom:771.173333pt;}
.y89{bottom:776.613333pt;}
.yd{bottom:787.013333pt;}
.yff{bottom:787.173333pt;}
.y3e{bottom:789.893333pt;}
.y88{bottom:795.333333pt;}
.yfe{bottom:806.693333pt;}
.yc{bottom:807.653333pt;}
.y3d{bottom:808.613333pt;}
.y87{bottom:814.053333pt;}
.yfd{bottom:826.213333pt;}
.y3c{bottom:827.173333pt;}
.yb{bottom:831.013333pt;}
.y86{bottom:832.773333pt;}
.yfc{bottom:845.253333pt;}
.y3b{bottom:845.893333pt;}
.ya{bottom:849.733333pt;}
.y85{bottom:851.493333pt;}
.yfb{bottom:863.973333pt;}
.y9{bottom:864.613333pt;}
.y84{bottom:870.213333pt;}
.yfa{bottom:882.693333pt;}
.y3a{bottom:883.333333pt;}
.y8{bottom:884.453333pt;}
.y83{bottom:888.933333pt;}
.yf9{bottom:901.413333pt;}
.y39{bottom:902.053333pt;}
.y7{bottom:906.853333pt;}
.y82{bottom:907.653333pt;}
.yf8{bottom:920.133333pt;}
.y38{bottom:920.773333pt;}
.y81{bottom:926.373333pt;}
.yf7{bottom:938.853333pt;}
.y37{bottom:939.493333pt;}
.y5{bottom:942.533333pt;}
.y80{bottom:945.093333pt;}
.yf6{bottom:957.573333pt;}
.y36{bottom:958.213333pt;}
.y7f{bottom:958.533333pt;}
.y4{bottom:971.173333pt;}
.yf5{bottom:976.293333pt;}
.y35{bottom:976.933333pt;}
.y7d{bottom:977.893333pt;}
.yf4{bottom:995.013333pt;}
.y34{bottom:995.653333pt;}
.y3{bottom:999.653333pt;}
.yf3{bottom:1014.080000pt;}
.y33{bottom:1014.400000pt;}
.y7c{bottom:1015.360000pt;}
.y2{bottom:1028.320000pt;}
.y32{bottom:1033.120000pt;}
.y1{bottom:1059.040000pt;}
.y31{bottom:1060.640000pt;}
.hb{height:18.720000pt;}
.hc{height:18.752000pt;}
.hf{height:28.960000pt;}
.hd{height:30.560000pt;}
.h7{height:34.374375pt;}
.h11{height:37.440000pt;}
.he{height:37.472000pt;}
.h10{height:38.080000pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.ha{height:52.934375pt;}
.h5{height:54.390938pt;}
.h12{height:54.598989pt;}
.h9{height:55.298750pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:47.360000pt;}
.w9{width:56.800000pt;}
.w5{width:57.120000pt;}
.w4{width:64.352000pt;}
.wf{width:72.480000pt;}
.we{width:72.672000pt;}
.w18{width:79.552000pt;}
.w19{width:87.520000pt;}
.w6{width:92.000000pt;}
.w15{width:109.632000pt;}
.wb{width:110.912000pt;}
.w12{width:111.840000pt;}
.w11{width:115.872000pt;}
.w16{width:131.392000pt;}
.w13{width:132.192000pt;}
.wc{width:133.312000pt;}
.w10{width:137.466667pt;}
.w17{width:160.640000pt;}
.w14{width:167.066667pt;}
.w7{width:169.946667pt;}
.wd{width:187.546667pt;}
.w3{width:314.466667pt;}
.w8{width:372.573333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.200000pt;}
.x17{left:11.680000pt;}
.x10{left:12.640000pt;}
.x9{left:15.040000pt;}
.x5{left:16.480000pt;}
.x1d{left:19.360000pt;}
.xd{left:20.320000pt;}
.x7{left:21.280000pt;}
.x2d{left:22.400000pt;}
.x13{left:24.480000pt;}
.x15{left:28.160000pt;}
.x2c{left:29.600000pt;}
.x2b{left:33.312000pt;}
.x27{left:36.000000pt;}
.x29{left:37.280000pt;}
.x1e{left:40.352000pt;}
.x26{left:44.320000pt;}
.xb{left:46.600000pt;}
.x1{left:47.999988pt;}
.x2a{left:51.040000pt;}
.x2f{left:59.999988pt;}
.x23{left:65.600000pt;}
.x20{left:75.560000pt;}
.x30{left:78.079988pt;}
.x25{left:80.320000pt;}
.x2e{left:89.311988pt;}
.x31{left:90.431988pt;}
.x2{left:96.031988pt;}
.x3{left:132.186667pt;}
.xe{left:137.306667pt;}
.x16{left:166.266667pt;}
.x1f{left:180.186667pt;}
.x18{left:235.546667pt;}
.x28{left:259.746667pt;}
.x19{left:308.226667pt;}
.x21{left:347.266667pt;}
.x4{left:362.466667pt;}
.x1a{left:380.706667pt;}
.xf{left:420.573333pt;}
.x6{left:426.813333pt;}
.x22{left:456.893333pt;}
.x11{left:477.373333pt;}
.x8{left:483.933333pt;}
.x1b{left:518.173333pt;}
.x12{left:524.733333pt;}
.xa{left:575.933333pt;}
.x24{left:588.293333pt;}
.x1c{left:634.053333pt;}
.x14{left:635.653333pt;}
.x32{left:746.053322pt;}
}




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