
    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_5bdb207d47798d525735091d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_1ba0c0c355e0c57ada9d29a4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_32691d83b3a3e73a50a522a2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_ac5005fc0504bba80e0ca764.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_e321d64e743eb6ac085c23a0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_5d111abcacdb774d0d9ee711.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_0a4ccafa5a5afe88550a7957.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_dd5e9fe09dd12f7cfde2de2a.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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:-70.536000px;}
.v1{vertical-align:-69.120000px;}
.v3{vertical-align:-63.360000px;}
.v0{vertical-align:0.000000px;}
.ls3f{letter-spacing:-1.998000px;}
.ls41{letter-spacing:-1.914000px;}
.ls2e{letter-spacing:-1.440000px;}
.ls1f{letter-spacing:-1.422000px;}
.ls45{letter-spacing:-1.254000px;}
.ls1e{letter-spacing:-0.972000px;}
.ls1d{letter-spacing:-0.930000px;}
.ls44{letter-spacing:-0.810000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.678000px;}
.ls21{letter-spacing:-0.510000px;}
.ls2c{letter-spacing:-0.507000px;}
.ls40{letter-spacing:-0.492600px;}
.ls43{letter-spacing:-0.475200px;}
.ls1a{letter-spacing:-0.466800px;}
.ls3e{letter-spacing:-0.276600px;}
.ls19{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.012000px;}
.ls16{letter-spacing:0.020160px;}
.ls39{letter-spacing:0.094080px;}
.ls3a{letter-spacing:0.140160px;}
.ls18{letter-spacing:0.172800px;}
.ls29{letter-spacing:0.200160px;}
.ls10{letter-spacing:0.293760px;}
.ls3d{letter-spacing:0.316800px;}
.lse{letter-spacing:0.334080px;}
.ls1c{letter-spacing:0.466800px;}
.ls3{letter-spacing:0.506880px;}
.ls30{letter-spacing:0.507000px;}
.ls2d{letter-spacing:0.596400px;}
.ls1{letter-spacing:0.627840px;}
.ls42{letter-spacing:0.630000px;}
.ls0{letter-spacing:0.720000px;}
.ls38{letter-spacing:0.840000px;}
.ls33{letter-spacing:0.900000px;}
.ls34{letter-spacing:0.972000px;}
.ls28{letter-spacing:1.460160px;}
.ls5{letter-spacing:2.160000px;}
.ls6{letter-spacing:2.280000px;}
.ls23{letter-spacing:3.600000px;}
.ls2b{letter-spacing:5.040000px;}
.ls2{letter-spacing:6.480000px;}
.ls26{letter-spacing:6.660000px;}
.lsf{letter-spacing:7.920000px;}
.ls14{letter-spacing:8.100000px;}
.lsd{letter-spacing:9.360000px;}
.ls22{letter-spacing:10.800000px;}
.ls25{letter-spacing:12.240000px;}
.ls15{letter-spacing:13.680000px;}
.ls2a{letter-spacing:15.120000px;}
.ls36{letter-spacing:16.560000px;}
.ls11{letter-spacing:18.000000px;}
.lsa{letter-spacing:19.440000px;}
.ls7{letter-spacing:19.560000px;}
.ls9{letter-spacing:20.880000px;}
.ls3c{letter-spacing:20.892000px;}
.ls8{letter-spacing:21.000000px;}
.ls32{letter-spacing:22.320000px;}
.ls24{letter-spacing:26.640000px;}
.lsc{letter-spacing:28.080000px;}
.lsb{letter-spacing:29.520000px;}
.ls13{letter-spacing:32.400000px;}
.ls12{letter-spacing:32.520000px;}
.ls27{letter-spacing:46.690560px;}
.ls2f{letter-spacing:56.626560px;}
.ls35{letter-spacing:88.680000px;}
.ls17{letter-spacing:154.944000px;}
.ls37{letter-spacing:193.558560px;}
.ls31{letter-spacing:438.780000px;}
.ls3b{letter-spacing:1151.976000px;}
.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;}
}
.wsc{word-spacing:-60.480000px;}
.wsd{word-spacing:-16.092000px;}
.wsb{word-spacing:-15.716400px;}
.ws3{word-spacing:-15.586800px;}
.wsa{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.wsf{word-spacing:-14.843400px;}
.ws1{word-spacing:-14.653200px;}
.ws9{word-spacing:-14.613000px;}
.ws7{word-spacing:-14.610000px;}
.ws6{word-spacing:-14.442000px;}
.ws13{word-spacing:-14.310000px;}
.ws4{word-spacing:-14.190000px;}
.ws5{word-spacing:-14.148000px;}
.wse{word-spacing:-13.698000px;}
.ws2{word-spacing:-13.680000px;}
.ws14{word-spacing:-13.204800px;}
.ws11{word-spacing:-13.187400px;}
.ws15{word-spacing:-12.870000px;}
.ws16{word-spacing:-12.426000px;}
.ws10{word-spacing:-12.240000px;}
.ws12{word-spacing:-11.766000px;}
.ws8{word-spacing:0.000000px;}
._27{margin-left:-32.268720px;}
._26{margin-left:-12.151200px;}
._2e{margin-left:-9.230880px;}
._8{margin-left:-8.159760px;}
._17{margin-left:-6.978240px;}
._0{margin-left:-5.382720px;}
._e{margin-left:-3.409200px;}
._1{margin-left:-2.252160px;}
._2{margin-left:-1.241760px;}
._3{width:1.302480px;}
._4{width:2.323440px;}
._13{width:3.644160px;}
._10{width:4.738320px;}
._7{width:6.624480px;}
._f{width:8.604240px;}
._a{width:9.965280px;}
._9{width:11.687040px;}
._b{width:13.022880px;}
._14{width:14.064240px;}
._11{width:16.273680px;}
._c{width:17.400240px;}
._d{width:18.926640px;}
._12{width:20.897520px;}
._19{width:22.057920px;}
._5{width:23.210400px;}
._6{width:24.707760px;}
._15{width:25.839120px;}
._16{width:26.908800px;}
._1a{width:28.863120px;}
._1b{width:30.241200px;}
._1c{width:31.473120px;}
._28{width:32.530560px;}
._24{width:33.808320px;}
._1f{width:34.865040px;}
._20{width:36.198960px;}
._25{width:37.211760px;}
._31{width:38.319600px;}
._18{width:39.624480px;}
._22{width:40.717440px;}
._21{width:41.736960px;}
._37{width:43.901520px;}
._36{width:45.239040px;}
._29{width:46.495200px;}
._2a{width:47.815920px;}
._2b{width:49.115520px;}
._32{width:53.635440px;}
._1d{width:54.660000px;}
._1e{width:56.065200px;}
._2d{width:62.373600px;}
._2c{width:63.490080px;}
._30{width:68.463360px;}
._33{width:87.151680px;}
._34{width:88.662240px;}
._35{width:90.082560px;}
._2f{width:118.786560px;}
._23{width:1709.845920px;}
.fc5{color:rgb(16,0,12);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(13,13,13);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:3.600000px;}
.yc0{bottom:8.640000px;}
.yc5{bottom:9.000000px;}
.yd2{bottom:9.030000px;}
.yc2{bottom:9.045000px;}
.yd0{bottom:20.880000px;}
.y2{bottom:24.480000px;}
.y1{bottom:65.520000px;}
.y39{bottom:102.600000px;}
.y130{bottom:106.200000px;}
.ybb{bottom:108.720000px;}
.y9d{bottom:110.160000px;}
.y10b{bottom:112.356000px;}
.y110{bottom:113.076000px;}
.y67{bottom:113.436000px;}
.y85{bottom:117.036000px;}
.y38{bottom:118.116000px;}
.y12f{bottom:121.716000px;}
.yba{bottom:126.036000px;}
.y9c{bottom:127.476000px;}
.y10a{bottom:129.636000px;}
.y66{bottom:130.716000px;}
.y37{bottom:133.956000px;}
.y84{bottom:134.316000px;}
.y12e{bottom:137.556000px;}
.yb9{bottom:142.956000px;}
.y9b{bottom:144.756000px;}
.y109{bottom:146.916000px;}
.y65{bottom:147.996000px;}
.y83{bottom:151.590000px;}
.y12d{bottom:154.830000px;}
.y9a{bottom:162.030000px;}
.y108{bottom:163.830000px;}
.y64{bottom:165.270000px;}
.y36{bottom:168.510000px;}
.y82{bottom:168.870000px;}
.y12c{bottom:172.110000px;}
.yb8{bottom:177.510000px;}
.y99{bottom:178.950000px;}
.yf1{bottom:180.390000px;}
.y107{bottom:181.110000px;}
.y63{bottom:182.190000px;}
.y35{bottom:185.790000px;}
.y81{bottom:186.150000px;}
.y12b{bottom:189.390000px;}
.yb7{bottom:194.790000px;}
.y98{bottom:196.230000px;}
.y106{bottom:198.390000px;}
.yf0{bottom:198.750000px;}
.y10f{bottom:199.110000px;}
.y62{bottom:199.470000px;}
.y34{bottom:203.070000px;}
.y80{bottom:203.430000px;}
.y12a{bottom:206.670000px;}
.yb6{bottom:212.070000px;}
.y97{bottom:213.510000px;}
.y105{bottom:215.670000px;}
.y61{bottom:216.750000px;}
.y33{bottom:220.395000px;}
.y7f{bottom:220.755000px;}
.y129{bottom:223.635000px;}
.yb5{bottom:229.395000px;}
.y96{bottom:230.835000px;}
.y104{bottom:232.995000px;}
.y60{bottom:234.075000px;}
.yef{bottom:235.155000px;}
.y32{bottom:237.675000px;}
.y7e{bottom:238.035000px;}
.y128{bottom:240.915000px;}
.yb4{bottom:246.675000px;}
.y95{bottom:248.115000px;}
.y103{bottom:250.275000px;}
.y5f{bottom:251.355000px;}
.yee{bottom:253.515000px;}
.y31{bottom:254.955000px;}
.y7d{bottom:255.315000px;}
.y127{bottom:258.195000px;}
.yb3{bottom:263.955000px;}
.y94{bottom:265.395000px;}
.y102{bottom:267.555000px;}
.y5e{bottom:268.635000px;}
.yed{bottom:270.795000px;}
.y30{bottom:272.235000px;}
.y126{bottom:275.475000px;}
.yb2{bottom:281.235000px;}
.y93{bottom:282.675000px;}
.y101{bottom:284.835000px;}
.y5d{bottom:285.915000px;}
.yec{bottom:288.075000px;}
.y2f{bottom:289.515000px;}
.y125{bottom:292.755000px;}
.yb1{bottom:298.515000px;}
.y92{bottom:299.955000px;}
.y100{bottom:302.115000px;}
.y5c{bottom:303.195000px;}
.y7c{bottom:303.915000px;}
.yeb{bottom:305.355000px;}
.y2e{bottom:306.435000px;}
.ydf{bottom:306.795000px;}
.y124{bottom:310.035000px;}
.yb0{bottom:315.795000px;}
.yff{bottom:319.395000px;}
.y5b{bottom:320.475000px;}
.y91{bottom:320.835000px;}
.y7b{bottom:321.945000px;}
.yea{bottom:322.665000px;}
.y2d{bottom:323.745000px;}
.yde{bottom:324.105000px;}
.y123{bottom:327.345000px;}
.yaf{bottom:333.105000px;}
.yfe{bottom:336.705000px;}
.y5a{bottom:337.785000px;}
.y7a{bottom:339.945000px;}
.y2c{bottom:340.665000px;}
.ydd{bottom:341.385000px;}
.y122{bottom:344.625000px;}
.yae{bottom:350.025000px;}
.yfd{bottom:353.985000px;}
.y59{bottom:355.065000px;}
.ye9{bottom:357.225000px;}
.y79{bottom:357.945000px;}
.y2b{bottom:358.305000px;}
.y121{bottom:361.905000px;}
.yad{bottom:367.305000px;}
.yfc{bottom:370.905000px;}
.y58{bottom:371.985000px;}
.ydc{bottom:373.065000px;}
.ye8{bottom:374.505000px;}
.y2a{bottom:375.225000px;}
.y78{bottom:375.945000px;}
.y120{bottom:379.185000px;}
.yac{bottom:384.585000px;}
.yfb{bottom:388.185000px;}
.y57{bottom:389.265000px;}
.ye7{bottom:391.785000px;}
.y29{bottom:392.865000px;}
.y77{bottom:393.945000px;}
.ydb{bottom:396.105000px;}
.y11f{bottom:396.465000px;}
.yab{bottom:401.865000px;}
.yfa{bottom:405.465000px;}
.y56{bottom:406.545000px;}
.ye6{bottom:408.705000px;}
.y28{bottom:410.145000px;}
.y76{bottom:411.945000px;}
.y11e{bottom:413.385000px;}
.yaa{bottom:419.145000px;}
.yda{bottom:419.505000px;}
.yf9{bottom:422.745000px;}
.y55{bottom:423.825000px;}
.ye5{bottom:425.985000px;}
.y27{bottom:427.470000px;}
.y75{bottom:429.990000px;}
.y11d{bottom:430.710000px;}
.ya9{bottom:436.470000px;}
.yf8{bottom:440.070000px;}
.y54{bottom:441.150000px;}
.yd9{bottom:442.950000px;}
.ye4{bottom:443.310000px;}
.y26{bottom:444.750000px;}
.y74{bottom:447.990000px;}
.ya8{bottom:453.750000px;}
.yf7{bottom:457.350000px;}
.y10e{bottom:458.070000px;}
.y53{bottom:458.430000px;}
.ye3{bottom:460.590000px;}
.y25{bottom:462.030000px;}
.y11c{bottom:465.270000px;}
.y73{bottom:465.990000px;}
.ya7{bottom:471.030000px;}
.yf6{bottom:474.630000px;}
.y10d{bottom:475.350000px;}
.y52{bottom:475.710000px;}
.ye2{bottom:477.870000px;}
.y24{bottom:479.310000px;}
.y11b{bottom:482.190000px;}
.y72{bottom:483.990000px;}
.ya6{bottom:488.310000px;}
.yd8{bottom:489.390000px;}
.yf5{bottom:491.910000px;}
.y51{bottom:492.990000px;}
.ye1{bottom:495.150000px;}
.y23{bottom:496.230000px;}
.y11a{bottom:499.830000px;}
.y71{bottom:501.990000px;}
.ya5{bottom:505.590000px;}
.yf4{bottom:509.190000px;}
.y50{bottom:510.270000px;}
.yd7{bottom:512.430000px;}
.y22{bottom:513.510000px;}
.y119{bottom:517.110000px;}
.y70{bottom:519.990000px;}
.ya4{bottom:522.870000px;}
.ye0{bottom:526.110000px;}
.yf3{bottom:526.470000px;}
.y4f{bottom:527.550000px;}
.y21{bottom:530.790000px;}
.y118{bottom:534.060000px;}
.yd6{bottom:535.860000px;}
.y6f{bottom:538.020000px;}
.ya3{bottom:539.820000px;}
.yf2{bottom:540.180000px;}
.y4e{bottom:544.860000px;}
.y20{bottom:548.100000px;}
.y117{bottom:549.180000px;}
.y6e{bottom:556.020000px;}
.ya2{bottom:557.100000px;}
.yd5{bottom:559.260000px;}
.y4d{bottom:562.140000px;}
.y1f{bottom:565.380000px;}
.y6d{bottom:574.020000px;}
.ya1{bottom:574.380000px;}
.y4c{bottom:579.060000px;}
.yd4{bottom:582.300000px;}
.y1e{bottom:582.660000px;}
.ya0{bottom:591.660000px;}
.y6b{bottom:592.020000px;}
.y4b{bottom:596.340000px;}
.y116{bottom:599.580000px;}
.y1d{bottom:599.940000px;}
.yd3{bottom:605.700000px;}
.y9f{bottom:608.940000px;}
.y6a{bottom:613.260000px;}
.y4a{bottom:613.620000px;}
.y115{bottom:616.860000px;}
.y1c{bottom:617.220000px;}
.y9e{bottom:622.620000px;}
.yd1{bottom:628.740000px;}
.y69{bottom:630.540000px;}
.y49{bottom:630.900000px;}
.y114{bottom:634.140000px;}
.y1b{bottom:634.500000px;}
.y68{bottom:647.850000px;}
.y48{bottom:648.210000px;}
.y1a{bottom:651.810000px;}
.ycf{bottom:652.170000px;}
.y47{bottom:665.490000px;}
.y19{bottom:669.090000px;}
.y46{bottom:682.770000px;}
.y18{bottom:686.370000px;}
.yce{bottom:687.450000px;}
.y45{bottom:700.050000px;}
.y17{bottom:703.290000px;}
.ycd{bottom:710.490000px;}
.y44{bottom:717.330000px;}
.y16{bottom:720.570000px;}
.ycc{bottom:733.890000px;}
.y43{bottom:734.610000px;}
.y15{bottom:737.850000px;}
.y42{bottom:751.935000px;}
.y14{bottom:755.175000px;}
.ycb{bottom:757.335000px;}
.y41{bottom:768.855000px;}
.y13{bottom:772.095000px;}
.y113{bottom:772.455000px;}
.yca{bottom:780.375000px;}
.y90{bottom:780.735000px;}
.y10c{bottom:785.775000px;}
.y40{bottom:786.135000px;}
.y12{bottom:789.735000px;}
.y8f{bottom:798.015000px;}
.y3f{bottom:803.415000px;}
.yc9{bottom:803.775000px;}
.y112{bottom:806.655000px;}
.y11{bottom:807.015000px;}
.y8e{bottom:815.295000px;}
.y3e{bottom:820.695000px;}
.y10{bottom:823.935000px;}
.yc8{bottom:826.815000px;}
.y8d{bottom:833.655000px;}
.y3d{bottom:837.975000px;}
.yf{bottom:839.055000px;}
.yc7{bottom:850.245000px;}
.y8c{bottom:850.965000px;}
.ye{bottom:855.285000px;}
.y8b{bottom:869.325000px;}
.yd{bottom:872.565000px;}
.yc6{bottom:873.285000px;}
.y8a{bottom:886.605000px;}
.y111{bottom:889.485000px;}
.yc{bottom:889.845000px;}
.yc4{bottom:896.685000px;}
.y89{bottom:904.965000px;}
.yb{bottom:907.125000px;}
.yc3{bottom:920.085000px;}
.y88{bottom:922.245000px;}
.ya{bottom:924.045000px;}
.y3c{bottom:924.405000px;}
.y87{bottom:940.605000px;}
.y9{bottom:941.325000px;}
.y3b{bottom:941.685000px;}
.yc1{bottom:943.125000px;}
.y86{bottom:957.930000px;}
.y8{bottom:958.650000px;}
.y3a{bottom:959.010000px;}
.ybf{bottom:966.570000px;}
.y7{bottom:975.930000px;}
.ybe{bottom:992.850000px;}
.y6{bottom:993.210000px;}
.ybd{bottom:1010.130000px;}
.y5{bottom:1010.490000px;}
.ybc{bottom:1027.410000px;}
.y4{bottom:1027.770000px;}
.y3{bottom:1045.050000px;}
.hb{height:17.280000px;}
.hc{height:17.316000px;}
.hd{height:22.320000px;}
.h10{height:22.356000px;}
.hf{height:22.680000px;}
.he{height:22.716000px;}
.h11{height:34.560000px;}
.h6{height:52.299844px;}
.h9{height:53.704687px;}
.h8{height:54.219375px;}
.h7{height:55.147500px;}
.h5{height:59.328281px;}
.h2{height:59.357813px;}
.h4{height:60.952500px;}
.ha{height:62.163910px;}
.h3{height:70.664062px;}
.h1{height:1105.500000px;}
.h0{height:1105.560000px;}
.wd{width:63.000000px;}
.wa{width:63.036000px;}
.wb{width:73.836000px;}
.w6{width:79.236000px;}
.w5{width:84.276000px;}
.w7{width:89.316000px;}
.w4{width:94.752000px;}
.w8{width:95.112000px;}
.wc{width:105.516000px;}
.w3{width:137.592000px;}
.w9{width:283.830000px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x17{left:7.560000px;}
.x13{left:11.520000px;}
.x37{left:15.120000px;}
.x32{left:16.560000px;}
.x35{left:21.600000px;}
.x34{left:22.680000px;}
.x2e{left:26.640000px;}
.x2c{left:27.720000px;}
.x30{left:29.160000px;}
.x1c{left:30.240000px;}
.x15{left:31.320000px;}
.x33{left:32.400000px;}
.x1f{left:34.920000px;}
.x36{left:36.720000px;}
.x1d{left:40.350000px;}
.x1b{left:42.480000px;}
.x1a{left:43.605000px;}
.x11{left:46.476000px;}
.x20{left:47.910000px;}
.xd{left:51.155989px;}
.x21{left:53.685000px;}
.x22{left:55.470000px;}
.x3d{left:61.235989px;}
.x1e{left:68.805000px;}
.x3{left:76.715989px;}
.xe{left:78.155989px;}
.x6{left:79.955989px;}
.xc{left:93.635989px;}
.xf{left:99.035989px;}
.x23{left:105.191989px;}
.x2{left:119.231989px;}
.x24{left:131.831989px;}
.x7{left:141.911989px;}
.x3f{left:170.024989px;}
.x3e{left:187.304989px;}
.x29{left:203.504989px;}
.x3c{left:209.624989px;}
.x12{left:215.385000px;}
.x9{left:220.064989px;}
.xa{left:221.504989px;}
.x4{left:260.429989px;}
.x8{left:267.269989px;}
.x10{left:303.629989px;}
.x14{left:311.220000px;}
.x2b{left:336.060000px;}
.x3a{left:337.859989px;}
.xb{left:341.459989px;}
.x2a{left:349.019989px;}
.x38{left:363.419989px;}
.x1{left:367.019989px;}
.x5{left:374.609989px;}
.x16{left:396.210000px;}
.x2d{left:399.810000px;}
.x2f{left:474.375000px;}
.x18{left:476.175000px;}
.x19{left:566.205000px;}
.x31{left:580.650000px;}
.x28{left:581.729989px;}
.x25{left:586.409989px;}
.x3b{left:608.009989px;}
.x26{left:638.249989px;}
.x39{left:644.729989px;}
.x27{left:672.479989px;}
@media print{
.v2{vertical-align:-62.698667pt;}
.v1{vertical-align:-61.440000pt;}
.v3{vertical-align:-56.320000pt;}
.v0{vertical-align:0.000000pt;}
.ls3f{letter-spacing:-1.776000pt;}
.ls41{letter-spacing:-1.701333pt;}
.ls2e{letter-spacing:-1.280000pt;}
.ls1f{letter-spacing:-1.264000pt;}
.ls45{letter-spacing:-1.114667pt;}
.ls1e{letter-spacing:-0.864000pt;}
.ls1d{letter-spacing:-0.826667pt;}
.ls44{letter-spacing:-0.720000pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.602667pt;}
.ls21{letter-spacing:-0.453333pt;}
.ls2c{letter-spacing:-0.450667pt;}
.ls40{letter-spacing:-0.437867pt;}
.ls43{letter-spacing:-0.422400pt;}
.ls1a{letter-spacing:-0.414933pt;}
.ls3e{letter-spacing:-0.245867pt;}
.ls19{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.010667pt;}
.ls16{letter-spacing:0.017920pt;}
.ls39{letter-spacing:0.083627pt;}
.ls3a{letter-spacing:0.124587pt;}
.ls18{letter-spacing:0.153600pt;}
.ls29{letter-spacing:0.177920pt;}
.ls10{letter-spacing:0.261120pt;}
.ls3d{letter-spacing:0.281600pt;}
.lse{letter-spacing:0.296960pt;}
.ls1c{letter-spacing:0.414933pt;}
.ls3{letter-spacing:0.450560pt;}
.ls30{letter-spacing:0.450667pt;}
.ls2d{letter-spacing:0.530133pt;}
.ls1{letter-spacing:0.558080pt;}
.ls42{letter-spacing:0.560000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls38{letter-spacing:0.746667pt;}
.ls33{letter-spacing:0.800000pt;}
.ls34{letter-spacing:0.864000pt;}
.ls28{letter-spacing:1.297920pt;}
.ls5{letter-spacing:1.920000pt;}
.ls6{letter-spacing:2.026667pt;}
.ls23{letter-spacing:3.200000pt;}
.ls2b{letter-spacing:4.480000pt;}
.ls2{letter-spacing:5.760000pt;}
.ls26{letter-spacing:5.920000pt;}
.lsf{letter-spacing:7.040000pt;}
.ls14{letter-spacing:7.200000pt;}
.lsd{letter-spacing:8.320000pt;}
.ls22{letter-spacing:9.600000pt;}
.ls25{letter-spacing:10.880000pt;}
.ls15{letter-spacing:12.160000pt;}
.ls2a{letter-spacing:13.440000pt;}
.ls36{letter-spacing:14.720000pt;}
.ls11{letter-spacing:16.000000pt;}
.lsa{letter-spacing:17.280000pt;}
.ls7{letter-spacing:17.386667pt;}
.ls9{letter-spacing:18.560000pt;}
.ls3c{letter-spacing:18.570667pt;}
.ls8{letter-spacing:18.666667pt;}
.ls32{letter-spacing:19.840000pt;}
.ls24{letter-spacing:23.680000pt;}
.lsc{letter-spacing:24.960000pt;}
.lsb{letter-spacing:26.240000pt;}
.ls13{letter-spacing:28.800000pt;}
.ls12{letter-spacing:28.906667pt;}
.ls27{letter-spacing:41.502720pt;}
.ls2f{letter-spacing:50.334720pt;}
.ls35{letter-spacing:78.826667pt;}
.ls17{letter-spacing:137.728000pt;}
.ls37{letter-spacing:172.052053pt;}
.ls31{letter-spacing:390.026667pt;}
.ls3b{letter-spacing:1023.978667pt;}
.wsc{word-spacing:-53.760000pt;}
.wsd{word-spacing:-14.304000pt;}
.wsb{word-spacing:-13.970133pt;}
.ws3{word-spacing:-13.854933pt;}
.wsa{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.wsf{word-spacing:-13.194133pt;}
.ws1{word-spacing:-13.025067pt;}
.ws9{word-spacing:-12.989333pt;}
.ws7{word-spacing:-12.986667pt;}
.ws6{word-spacing:-12.837333pt;}
.ws13{word-spacing:-12.720000pt;}
.ws4{word-spacing:-12.613333pt;}
.ws5{word-spacing:-12.576000pt;}
.wse{word-spacing:-12.176000pt;}
.ws2{word-spacing:-12.160000pt;}
.ws14{word-spacing:-11.737600pt;}
.ws11{word-spacing:-11.722133pt;}
.ws15{word-spacing:-11.440000pt;}
.ws16{word-spacing:-11.045333pt;}
.ws10{word-spacing:-10.880000pt;}
.ws12{word-spacing:-10.458667pt;}
.ws8{word-spacing:0.000000pt;}
._27{margin-left:-28.683307pt;}
._26{margin-left:-10.801067pt;}
._2e{margin-left:-8.205227pt;}
._8{margin-left:-7.253120pt;}
._17{margin-left:-6.202880pt;}
._0{margin-left:-4.784640pt;}
._e{margin-left:-3.030400pt;}
._1{margin-left:-2.001920pt;}
._2{margin-left:-1.103787pt;}
._3{width:1.157760pt;}
._4{width:2.065280pt;}
._13{width:3.239253pt;}
._10{width:4.211840pt;}
._7{width:5.888427pt;}
._f{width:7.648213pt;}
._a{width:8.858027pt;}
._9{width:10.388480pt;}
._b{width:11.575893pt;}
._14{width:12.501547pt;}
._11{width:14.465493pt;}
._c{width:15.466880pt;}
._d{width:16.823680pt;}
._12{width:18.575573pt;}
._19{width:19.607040pt;}
._5{width:20.631467pt;}
._6{width:21.962453pt;}
._15{width:22.968107pt;}
._16{width:23.918933pt;}
._1a{width:25.656107pt;}
._1b{width:26.881067pt;}
._1c{width:27.976107pt;}
._28{width:28.916053pt;}
._24{width:30.051840pt;}
._1f{width:30.991147pt;}
._20{width:32.176853pt;}
._25{width:33.077120pt;}
._31{width:34.061867pt;}
._18{width:35.221760pt;}
._22{width:36.193280pt;}
._21{width:37.099520pt;}
._37{width:39.023573pt;}
._36{width:40.212480pt;}
._29{width:41.329067pt;}
._2a{width:42.503040pt;}
._2b{width:43.658240pt;}
._32{width:47.675947pt;}
._1d{width:48.586667pt;}
._1e{width:49.835733pt;}
._2d{width:55.443200pt;}
._2c{width:56.435627pt;}
._30{width:60.856320pt;}
._33{width:77.468160pt;}
._34{width:78.810880pt;}
._35{width:80.073387pt;}
._2f{width:105.588053pt;}
._23{width:1519.863040pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:3.200000pt;}
.yc0{bottom:7.680000pt;}
.yc5{bottom:8.000000pt;}
.yd2{bottom:8.026667pt;}
.yc2{bottom:8.040000pt;}
.yd0{bottom:18.560000pt;}
.y2{bottom:21.760000pt;}
.y1{bottom:58.240000pt;}
.y39{bottom:91.200000pt;}
.y130{bottom:94.400000pt;}
.ybb{bottom:96.640000pt;}
.y9d{bottom:97.920000pt;}
.y10b{bottom:99.872000pt;}
.y110{bottom:100.512000pt;}
.y67{bottom:100.832000pt;}
.y85{bottom:104.032000pt;}
.y38{bottom:104.992000pt;}
.y12f{bottom:108.192000pt;}
.yba{bottom:112.032000pt;}
.y9c{bottom:113.312000pt;}
.y10a{bottom:115.232000pt;}
.y66{bottom:116.192000pt;}
.y37{bottom:119.072000pt;}
.y84{bottom:119.392000pt;}
.y12e{bottom:122.272000pt;}
.yb9{bottom:127.072000pt;}
.y9b{bottom:128.672000pt;}
.y109{bottom:130.592000pt;}
.y65{bottom:131.552000pt;}
.y83{bottom:134.746667pt;}
.y12d{bottom:137.626667pt;}
.y9a{bottom:144.026667pt;}
.y108{bottom:145.626667pt;}
.y64{bottom:146.906667pt;}
.y36{bottom:149.786667pt;}
.y82{bottom:150.106667pt;}
.y12c{bottom:152.986667pt;}
.yb8{bottom:157.786667pt;}
.y99{bottom:159.066667pt;}
.yf1{bottom:160.346667pt;}
.y107{bottom:160.986667pt;}
.y63{bottom:161.946667pt;}
.y35{bottom:165.146667pt;}
.y81{bottom:165.466667pt;}
.y12b{bottom:168.346667pt;}
.yb7{bottom:173.146667pt;}
.y98{bottom:174.426667pt;}
.y106{bottom:176.346667pt;}
.yf0{bottom:176.666667pt;}
.y10f{bottom:176.986667pt;}
.y62{bottom:177.306667pt;}
.y34{bottom:180.506667pt;}
.y80{bottom:180.826667pt;}
.y12a{bottom:183.706667pt;}
.yb6{bottom:188.506667pt;}
.y97{bottom:189.786667pt;}
.y105{bottom:191.706667pt;}
.y61{bottom:192.666667pt;}
.y33{bottom:195.906667pt;}
.y7f{bottom:196.226667pt;}
.y129{bottom:198.786667pt;}
.yb5{bottom:203.906667pt;}
.y96{bottom:205.186667pt;}
.y104{bottom:207.106667pt;}
.y60{bottom:208.066667pt;}
.yef{bottom:209.026667pt;}
.y32{bottom:211.266667pt;}
.y7e{bottom:211.586667pt;}
.y128{bottom:214.146667pt;}
.yb4{bottom:219.266667pt;}
.y95{bottom:220.546667pt;}
.y103{bottom:222.466667pt;}
.y5f{bottom:223.426667pt;}
.yee{bottom:225.346667pt;}
.y31{bottom:226.626667pt;}
.y7d{bottom:226.946667pt;}
.y127{bottom:229.506667pt;}
.yb3{bottom:234.626667pt;}
.y94{bottom:235.906667pt;}
.y102{bottom:237.826667pt;}
.y5e{bottom:238.786667pt;}
.yed{bottom:240.706667pt;}
.y30{bottom:241.986667pt;}
.y126{bottom:244.866667pt;}
.yb2{bottom:249.986667pt;}
.y93{bottom:251.266667pt;}
.y101{bottom:253.186667pt;}
.y5d{bottom:254.146667pt;}
.yec{bottom:256.066667pt;}
.y2f{bottom:257.346667pt;}
.y125{bottom:260.226667pt;}
.yb1{bottom:265.346667pt;}
.y92{bottom:266.626667pt;}
.y100{bottom:268.546667pt;}
.y5c{bottom:269.506667pt;}
.y7c{bottom:270.146667pt;}
.yeb{bottom:271.426667pt;}
.y2e{bottom:272.386667pt;}
.ydf{bottom:272.706667pt;}
.y124{bottom:275.586667pt;}
.yb0{bottom:280.706667pt;}
.yff{bottom:283.906667pt;}
.y5b{bottom:284.866667pt;}
.y91{bottom:285.186667pt;}
.y7b{bottom:286.173333pt;}
.yea{bottom:286.813333pt;}
.y2d{bottom:287.773333pt;}
.yde{bottom:288.093333pt;}
.y123{bottom:290.973333pt;}
.yaf{bottom:296.093333pt;}
.yfe{bottom:299.293333pt;}
.y5a{bottom:300.253333pt;}
.y7a{bottom:302.173333pt;}
.y2c{bottom:302.813333pt;}
.ydd{bottom:303.453333pt;}
.y122{bottom:306.333333pt;}
.yae{bottom:311.133333pt;}
.yfd{bottom:314.653333pt;}
.y59{bottom:315.613333pt;}
.ye9{bottom:317.533333pt;}
.y79{bottom:318.173333pt;}
.y2b{bottom:318.493333pt;}
.y121{bottom:321.693333pt;}
.yad{bottom:326.493333pt;}
.yfc{bottom:329.693333pt;}
.y58{bottom:330.653333pt;}
.ydc{bottom:331.613333pt;}
.ye8{bottom:332.893333pt;}
.y2a{bottom:333.533333pt;}
.y78{bottom:334.173333pt;}
.y120{bottom:337.053333pt;}
.yac{bottom:341.853333pt;}
.yfb{bottom:345.053333pt;}
.y57{bottom:346.013333pt;}
.ye7{bottom:348.253333pt;}
.y29{bottom:349.213333pt;}
.y77{bottom:350.173333pt;}
.ydb{bottom:352.093333pt;}
.y11f{bottom:352.413333pt;}
.yab{bottom:357.213333pt;}
.yfa{bottom:360.413333pt;}
.y56{bottom:361.373333pt;}
.ye6{bottom:363.293333pt;}
.y28{bottom:364.573333pt;}
.y76{bottom:366.173333pt;}
.y11e{bottom:367.453333pt;}
.yaa{bottom:372.573333pt;}
.yda{bottom:372.893333pt;}
.yf9{bottom:375.773333pt;}
.y55{bottom:376.733333pt;}
.ye5{bottom:378.653333pt;}
.y27{bottom:379.973333pt;}
.y75{bottom:382.213333pt;}
.y11d{bottom:382.853333pt;}
.ya9{bottom:387.973333pt;}
.yf8{bottom:391.173333pt;}
.y54{bottom:392.133333pt;}
.yd9{bottom:393.733333pt;}
.ye4{bottom:394.053333pt;}
.y26{bottom:395.333333pt;}
.y74{bottom:398.213333pt;}
.ya8{bottom:403.333333pt;}
.yf7{bottom:406.533333pt;}
.y10e{bottom:407.173333pt;}
.y53{bottom:407.493333pt;}
.ye3{bottom:409.413333pt;}
.y25{bottom:410.693333pt;}
.y11c{bottom:413.573333pt;}
.y73{bottom:414.213333pt;}
.ya7{bottom:418.693333pt;}
.yf6{bottom:421.893333pt;}
.y10d{bottom:422.533333pt;}
.y52{bottom:422.853333pt;}
.ye2{bottom:424.773333pt;}
.y24{bottom:426.053333pt;}
.y11b{bottom:428.613333pt;}
.y72{bottom:430.213333pt;}
.ya6{bottom:434.053333pt;}
.yd8{bottom:435.013333pt;}
.yf5{bottom:437.253333pt;}
.y51{bottom:438.213333pt;}
.ye1{bottom:440.133333pt;}
.y23{bottom:441.093333pt;}
.y11a{bottom:444.293333pt;}
.y71{bottom:446.213333pt;}
.ya5{bottom:449.413333pt;}
.yf4{bottom:452.613333pt;}
.y50{bottom:453.573333pt;}
.yd7{bottom:455.493333pt;}
.y22{bottom:456.453333pt;}
.y119{bottom:459.653333pt;}
.y70{bottom:462.213333pt;}
.ya4{bottom:464.773333pt;}
.ye0{bottom:467.653333pt;}
.yf3{bottom:467.973333pt;}
.y4f{bottom:468.933333pt;}
.y21{bottom:471.813333pt;}
.y118{bottom:474.720000pt;}
.yd6{bottom:476.320000pt;}
.y6f{bottom:478.240000pt;}
.ya3{bottom:479.840000pt;}
.yf2{bottom:480.160000pt;}
.y4e{bottom:484.320000pt;}
.y20{bottom:487.200000pt;}
.y117{bottom:488.160000pt;}
.y6e{bottom:494.240000pt;}
.ya2{bottom:495.200000pt;}
.yd5{bottom:497.120000pt;}
.y4d{bottom:499.680000pt;}
.y1f{bottom:502.560000pt;}
.y6d{bottom:510.240000pt;}
.ya1{bottom:510.560000pt;}
.y4c{bottom:514.720000pt;}
.yd4{bottom:517.600000pt;}
.y1e{bottom:517.920000pt;}
.ya0{bottom:525.920000pt;}
.y6b{bottom:526.240000pt;}
.y4b{bottom:530.080000pt;}
.y116{bottom:532.960000pt;}
.y1d{bottom:533.280000pt;}
.yd3{bottom:538.400000pt;}
.y9f{bottom:541.280000pt;}
.y6a{bottom:545.120000pt;}
.y4a{bottom:545.440000pt;}
.y115{bottom:548.320000pt;}
.y1c{bottom:548.640000pt;}
.y9e{bottom:553.440000pt;}
.yd1{bottom:558.880000pt;}
.y69{bottom:560.480000pt;}
.y49{bottom:560.800000pt;}
.y114{bottom:563.680000pt;}
.y1b{bottom:564.000000pt;}
.y68{bottom:575.866667pt;}
.y48{bottom:576.186667pt;}
.y1a{bottom:579.386667pt;}
.ycf{bottom:579.706667pt;}
.y47{bottom:591.546667pt;}
.y19{bottom:594.746667pt;}
.y46{bottom:606.906667pt;}
.y18{bottom:610.106667pt;}
.yce{bottom:611.066667pt;}
.y45{bottom:622.266667pt;}
.y17{bottom:625.146667pt;}
.ycd{bottom:631.546667pt;}
.y44{bottom:637.626667pt;}
.y16{bottom:640.506667pt;}
.ycc{bottom:652.346667pt;}
.y43{bottom:652.986667pt;}
.y15{bottom:655.866667pt;}
.y42{bottom:668.386667pt;}
.y14{bottom:671.266667pt;}
.ycb{bottom:673.186667pt;}
.y41{bottom:683.426667pt;}
.y13{bottom:686.306667pt;}
.y113{bottom:686.626667pt;}
.yca{bottom:693.666667pt;}
.y90{bottom:693.986667pt;}
.y10c{bottom:698.466667pt;}
.y40{bottom:698.786667pt;}
.y12{bottom:701.986667pt;}
.y8f{bottom:709.346667pt;}
.y3f{bottom:714.146667pt;}
.yc9{bottom:714.466667pt;}
.y112{bottom:717.026667pt;}
.y11{bottom:717.346667pt;}
.y8e{bottom:724.706667pt;}
.y3e{bottom:729.506667pt;}
.y10{bottom:732.386667pt;}
.yc8{bottom:734.946667pt;}
.y8d{bottom:741.026667pt;}
.y3d{bottom:744.866667pt;}
.yf{bottom:745.826667pt;}
.yc7{bottom:755.773333pt;}
.y8c{bottom:756.413333pt;}
.ye{bottom:760.253333pt;}
.y8b{bottom:772.733333pt;}
.yd{bottom:775.613333pt;}
.yc6{bottom:776.253333pt;}
.y8a{bottom:788.093333pt;}
.y111{bottom:790.653333pt;}
.yc{bottom:790.973333pt;}
.yc4{bottom:797.053333pt;}
.y89{bottom:804.413333pt;}
.yb{bottom:806.333333pt;}
.yc3{bottom:817.853333pt;}
.y88{bottom:819.773333pt;}
.ya{bottom:821.373333pt;}
.y3c{bottom:821.693333pt;}
.y87{bottom:836.093333pt;}
.y9{bottom:836.733333pt;}
.y3b{bottom:837.053333pt;}
.yc1{bottom:838.333333pt;}
.y86{bottom:851.493333pt;}
.y8{bottom:852.133333pt;}
.y3a{bottom:852.453333pt;}
.ybf{bottom:859.173333pt;}
.y7{bottom:867.493333pt;}
.ybe{bottom:882.533333pt;}
.y6{bottom:882.853333pt;}
.ybd{bottom:897.893333pt;}
.y5{bottom:898.213333pt;}
.ybc{bottom:913.253333pt;}
.y4{bottom:913.573333pt;}
.y3{bottom:928.933333pt;}
.hb{height:15.360000pt;}
.hc{height:15.392000pt;}
.hd{height:19.840000pt;}
.h10{height:19.872000pt;}
.hf{height:20.160000pt;}
.he{height:20.192000pt;}
.h11{height:30.720000pt;}
.h6{height:46.488750pt;}
.h9{height:47.737500pt;}
.h8{height:48.195000pt;}
.h7{height:49.020000pt;}
.h5{height:52.736250pt;}
.h2{height:52.762500pt;}
.h4{height:54.180000pt;}
.ha{height:55.256809pt;}
.h3{height:62.812500pt;}
.h1{height:982.666667pt;}
.h0{height:982.720000pt;}
.wd{width:56.000000pt;}
.wa{width:56.032000pt;}
.wb{width:65.632000pt;}
.w6{width:70.432000pt;}
.w5{width:74.912000pt;}
.w7{width:79.392000pt;}
.w4{width:84.224000pt;}
.w8{width:84.544000pt;}
.wc{width:93.792000pt;}
.w3{width:122.304000pt;}
.w9{width:252.293333pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x17{left:6.720000pt;}
.x13{left:10.240000pt;}
.x37{left:13.440000pt;}
.x32{left:14.720000pt;}
.x35{left:19.200000pt;}
.x34{left:20.160000pt;}
.x2e{left:23.680000pt;}
.x2c{left:24.640000pt;}
.x30{left:25.920000pt;}
.x1c{left:26.880000pt;}
.x15{left:27.840000pt;}
.x33{left:28.800000pt;}
.x1f{left:31.040000pt;}
.x36{left:32.640000pt;}
.x1d{left:35.866667pt;}
.x1b{left:37.760000pt;}
.x1a{left:38.760000pt;}
.x11{left:41.312000pt;}
.x20{left:42.586667pt;}
.xd{left:45.471990pt;}
.x21{left:47.720000pt;}
.x22{left:49.306667pt;}
.x3d{left:54.431990pt;}
.x1e{left:61.160000pt;}
.x3{left:68.191990pt;}
.xe{left:69.471990pt;}
.x6{left:71.071990pt;}
.xc{left:83.231990pt;}
.xf{left:88.031990pt;}
.x23{left:93.503990pt;}
.x2{left:105.983990pt;}
.x24{left:117.183990pt;}
.x7{left:126.143990pt;}
.x3f{left:151.133324pt;}
.x3e{left:166.493324pt;}
.x29{left:180.893324pt;}
.x3c{left:186.333324pt;}
.x12{left:191.453333pt;}
.x9{left:195.613324pt;}
.xa{left:196.893324pt;}
.x4{left:231.493324pt;}
.x8{left:237.573324pt;}
.x10{left:269.893324pt;}
.x14{left:276.640000pt;}
.x2b{left:298.720000pt;}
.x3a{left:300.319990pt;}
.xb{left:303.519990pt;}
.x2a{left:310.239990pt;}
.x38{left:323.039990pt;}
.x1{left:326.239990pt;}
.x5{left:332.986657pt;}
.x16{left:352.186667pt;}
.x2d{left:355.386667pt;}
.x2f{left:421.666667pt;}
.x18{left:423.266667pt;}
.x19{left:503.293333pt;}
.x31{left:516.133333pt;}
.x28{left:517.093324pt;}
.x25{left:521.253324pt;}
.x3b{left:540.453324pt;}
.x26{left:567.333324pt;}
.x39{left:573.093324pt;}
.x27{left:597.759990pt;}
}




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