
    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_c1e5684bacd7be09c9434959.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0b66126e9f78a7de9303cdf0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.930664;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_4b6e626835324c242b2e7be1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_265839ac1280d02e45b51c9f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.117188;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_47c5cb2f2c1e7b0895b6901e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_423a0bb30d07ccf9a8ace449.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.767578;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);}
.v2{vertical-align:-27.359802px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:30.240009px;}
.v1{vertical-align:33.120072px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.004916px;}
.ls9{letter-spacing:0.179375px;}
.ls2{letter-spacing:0.359109px;}
.ls1{letter-spacing:0.359114px;}
.ls6{letter-spacing:1.619438px;}
.ls7{letter-spacing:4.499469px;}
.lsa{letter-spacing:16.559292px;}
.ls5{letter-spacing:33.335269px;}
.ls0{letter-spacing:34.055251px;}
.ls8{letter-spacing:194.399310px;}
.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;}
}
.ws1{word-spacing:-18.000676px;}
.ws0{word-spacing:-14.940563px;}
.ws4{word-spacing:-12.060450px;}
.ws5{word-spacing:-10.440405px;}
.ws2{word-spacing:-9.720371px;}
.ws3{word-spacing:0.000000px;}
._17{margin-left:-11.990752px;}
._9{margin-left:-2.390414px;}
._0{margin-left:-1.362699px;}
._1{width:1.232714px;}
._2{width:2.398204px;}
._3{width:4.064246px;}
._6{width:5.838657px;}
._c{width:6.969449px;}
._7{width:7.981331px;}
._8{width:9.086685px;}
._d{width:10.217966px;}
._10{width:11.641937px;}
._11{width:12.876390px;}
._14{width:13.889262px;}
._15{width:14.955800px;}
._16{width:15.961537px;}
._1b{width:16.997649px;}
._37{width:18.171411px;}
._13{width:19.478700px;}
._12{width:20.726372px;}
._4{width:22.104830px;}
._5{width:23.445650px;}
._f{width:25.106443px;}
._e{width:26.557466px;}
._1a{width:27.629401px;}
._1c{width:29.114969px;}
._1d{width:30.739412px;}
._1f{width:32.668977px;}
._20{width:33.963901px;}
._1e{width:35.413236px;}
._19{width:37.502440px;}
._18{width:38.547323px;}
._a{width:44.175628px;}
._b{width:45.616909px;}
._38{width:194.407302px;}
._21{width:234.875681px;}
._25{width:236.841414px;}
._22{width:266.073792px;}
._2e{width:282.040351px;}
._24{width:293.733208px;}
._26{width:296.980913px;}
._23{width:299.641034px;}
._33{width:311.921476px;}
._35{width:317.300078px;}
._32{width:320.288191px;}
._29{width:343.595468px;}
._30{width:382.478400px;}
._2f{width:389.649870px;}
._34{width:397.418963px;}
._36{width:402.020656px;}
._2d{width:403.395188px;}
._2b{width:404.590433px;}
._27{width:420.128618px;}
._31{width:458.338988px;}
._2a{width:481.683735px;}
._28{width:496.624298px;}
._2c{width:511.527391px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.881485px;}
.fs7{font-size:41.761620px;}
.fs4{font-size:48.241800px;}
.fs2{font-size:59.762250px;}
.fs5{font-size:66.242700px;}
.fs3{font-size:72.002705px;}
.fs1{font-size:77.763154px;}
.fs0{font-size:84.243145px;}
.y0{bottom:0.000000px;}
.y31{bottom:88.740005px;}
.y163{bottom:89.820099px;}
.ycd{bottom:95.580093px;}
.y64{bottom:106.020127px;}
.y162{bottom:110.520127px;}
.y30{bottom:112.860077px;}
.y2f{bottom:123.300041px;}
.y96{bottom:130.140060px;}
.y106{bottom:132.300041px;}
.y161{bottom:140.220085px;}
.y63{bottom:140.580093px;}
.y95{bottom:141.480079px;}
.y2e{bottom:147.420043px;}
.y105{bottom:149.580093px;}
.y62{bottom:157.860077px;}
.y2d{bottom:158.760064px;}
.y160{bottom:160.920043px;}
.y94{bottom:161.820099px;}
.ycc{bottom:164.700096px;}
.y104{bottom:166.860077px;}
.y61{bottom:175.140060px;}
.y151{bottom:176.040047px;}
.yc5{bottom:179.460091px;}
.y9c{bottom:181.980079px;}
.y93{bottom:182.520058px;}
.y103{bottom:184.140060px;}
.y15f{bottom:190.620072px;}
.y2c{bottom:190.980079px;}
.y60{bottom:192.240074px;}
.yac{bottom:193.320099px;}
.yd8{bottom:199.080093px;}
.yc4{bottom:200.160049px;}
.y102{bottom:202.320099px;}
.y92{bottom:203.220085px;}
.yd7{bottom:209.520058px;}
.y15e{bottom:211.320099px;}
.y2b{bottom:211.680039px;}
.y150{bottom:214.920043px;}
.y5f{bottom:216.360077px;}
.yc3{bottom:220.860077px;}
.yab{bottom:221.040047px;}
.y9b{bottom:226.800041px;}
.y142{bottom:227.700096px;}
.y2a{bottom:232.380066px;}
.y91{bottom:232.920043px;}
.y5e{bottom:233.640060px;}
.y14f{bottom:235.620072px;}
.y15d{bottom:241.020058px;}
.yaa{bottom:241.740074px;}
.y9a{bottom:244.080093px;}
.y5d{bottom:244.980079px;}
.yc2{bottom:250.560036px;}
.y143{bottom:250.920043px;}
.y101{bottom:251.460091px;}
.y29{bottom:253.080093px;}
.y90{bottom:253.620072px;}
.y14e{bottom:256.320099px;}
.ycb{bottom:261.360077px;}
.y15c{bottom:261.720085px;}
.ya9{bottom:262.440033px;}
.y5c{bottom:264.960091px;}
.y99{bottom:268.200096px;}
.yc1{bottom:271.260064px;}
.y100{bottom:272.160049px;}
.y28{bottom:273.780052px;}
.y8f{bottom:274.320099px;}
.y14d{bottom:277.020058px;}
.yd6{bottom:278.640060px;}
.y98{bottom:279.540047px;}
.y141{bottom:282.240074px;}
.ya8{bottom:283.140060px;}
.yca{bottom:285.480079px;}
.y15b{bottom:291.420043px;}
.yc0{bottom:291.960091px;}
.yff{bottom:292.860077px;}
.y27{bottom:294.480079px;}
.y5b{bottom:294.660049px;}
.y8e{bottom:295.020058px;}
.yc9{bottom:295.740074px;}
.y14c{bottom:297.720085px;}
.yd5{bottom:302.580093px;}
.y140{bottom:302.940033px;}
.ya7{bottom:303.840088px;}
.y15a{bottom:312.120072px;}
.ybf{bottom:312.660049px;}
.yfe{bottom:313.560036px;}
.yd4{bottom:313.920043px;}
.y26{bottom:315.180039px;}
.y8d{bottom:315.720085px;}
.y14b{bottom:318.420043px;}
.yc8{bottom:319.860077px;}
.y13f{bottom:323.640060px;}
.y5a{bottom:324.360077px;}
.ya6{bottom:324.540047px;}
.yc7{bottom:331.200096px;}
.ybe{bottom:333.360077px;}
.yfd{bottom:334.260064px;}
.y25{bottom:335.880066px;}
.y8c{bottom:336.420043px;}
.y117{bottom:336.600083px;}
.y14a{bottom:339.120072px;}
.y159{bottom:341.820099px;}
.y13e{bottom:344.340088px;}
.ya5{bottom:345.240074px;}
.yd3{bottom:345.420043px;}
.ybd{bottom:354.060036px;}
.y59{bottom:354.420043px;}
.yfc{bottom:354.960091px;}
.y116{bottom:355.500068px;}
.y17e{bottom:356.400055px;}
.y24{bottom:356.580093px;}
.y8b{bottom:357.120072px;}
.y149{bottom:359.820099px;}
.y158{bottom:362.520058px;}
.y13d{bottom:365.040047px;}
.ya4{bottom:365.940033px;}
.yd2{bottom:366.120072px;}
.y115{bottom:374.400055px;}
.ybc{bottom:374.760064px;}
.y58{bottom:375.120072px;}
.yfb{bottom:375.660049px;}
.y23{bottom:377.280052px;}
.y8a{bottom:377.820099px;}
.y148{bottom:380.520058px;}
.y13c{bottom:385.740074px;}
.y17d{bottom:386.100083px;}
.ya3{bottom:386.640060px;}
.yd1{bottom:386.820099px;}
.y157{bottom:392.220085px;}
.y114{bottom:393.480079px;}
.ybb{bottom:395.460091px;}
.y57{bottom:395.820099px;}
.yfa{bottom:396.360077px;}
.y22{bottom:397.980079px;}
.y89{bottom:398.520058px;}
.y147{bottom:401.220085px;}
.y13b{bottom:406.440033px;}
.y17c{bottom:406.800041px;}
.yd0{bottom:407.520058px;}
.y113{bottom:412.920043px;}
.yba{bottom:416.160049px;}
.ya2{bottom:416.340088px;}
.y56{bottom:416.520058px;}
.yf9{bottom:417.060036px;}
.y88{bottom:419.220085px;}
.y146{bottom:421.920043px;}
.y13a{bottom:427.140060px;}
.y21{bottom:427.680039px;}
.ycf{bottom:428.220085px;}
.y156{bottom:433.620072px;}
.y17b{bottom:436.500068px;}
.yb9{bottom:436.860077px;}
.y55{bottom:437.220085px;}
.yf8{bottom:437.760064px;}
.y87{bottom:439.920043px;}
.y112{bottom:442.620072px;}
.ya1{bottom:445.320099px;}
.y139{bottom:447.840088px;}
.y20{bottom:448.380066px;}
.yce{bottom:448.920043px;}
.y155{bottom:454.320099px;}
.y17a{bottom:457.200096px;}
.yb8{bottom:457.560036px;}
.y54{bottom:457.920043px;}
.yf7{bottom:458.460091px;}
.y86{bottom:460.620072px;}
.ya0{bottom:462.600083px;}
.y111{bottom:463.320099px;}
.y138{bottom:468.540047px;}
.y1f{bottom:469.080093px;}
.yc6{bottom:469.620072px;}
.y145{bottom:471.960091px;}
.yb7{bottom:478.260064px;}
.y53{bottom:478.620072px;}
.yf6{bottom:479.160049px;}
.y9f{bottom:479.880066px;}
.y85{bottom:481.320099px;}
.y110{bottom:484.020058px;}
.y179{bottom:486.900055px;}
.y1e{bottom:489.780052px;}
.y97{bottom:490.320099px;}
.y137{bottom:498.240074px;}
.yb6{bottom:498.960091px;}
.y52{bottom:499.320099px;}
.yf5{bottom:499.860077px;}
.y144{bottom:501.660049px;}
.y9e{bottom:503.100083px;}
.y10f{bottom:504.720085px;}
.y178{bottom:507.600083px;}
.y1d{bottom:510.480079px;}
.y84{bottom:511.020058px;}
.y136{bottom:518.940033px;}
.yb5{bottom:519.660049px;}
.y51{bottom:520.020058px;}
.yf4{bottom:520.560036px;}
.y10e{bottom:525.420043px;}
.y1c{bottom:531.180039px;}
.y83{bottom:531.720085px;}
.y177{bottom:537.300041px;}
.y135{bottom:539.640060px;}
.yb4{bottom:540.360077px;}
.y50{bottom:540.720085px;}
.yf3{bottom:541.260064px;}
.y10d{bottom:546.120072px;}
.y1b{bottom:551.880066px;}
.y82{bottom:552.420043px;}
.y154{bottom:554.760064px;}
.y176{bottom:558.000068px;}
.y134{bottom:560.340088px;}
.yb3{bottom:561.060036px;}
.y4f{bottom:561.420043px;}
.yf2{bottom:561.960091px;}
.y10c{bottom:566.820099px;}
.y1a{bottom:572.580093px;}
.y81{bottom:573.120072px;}
.y133{bottom:581.040047px;}
.yb2{bottom:581.760064px;}
.y4e{bottom:582.120072px;}
.y153{bottom:584.820099px;}
.y10b{bottom:587.520058px;}
.y175{bottom:587.700096px;}
.yf1{bottom:591.660049px;}
.y19{bottom:593.280052px;}
.y80{bottom:593.820099px;}
.y132{bottom:601.740074px;}
.yb1{bottom:602.460091px;}
.y4d{bottom:602.820099px;}
.y10a{bottom:608.220085px;}
.y174{bottom:608.400055px;}
.yf0{bottom:612.360077px;}
.y18{bottom:613.980079px;}
.y152{bottom:614.160049px;}
.y7f{bottom:614.520058px;}
.y131{bottom:622.260064px;}
.yb0{bottom:622.980079px;}
.y4c{bottom:623.520058px;}
.y173{bottom:629.100083px;}
.yef{bottom:633.060036px;}
.y17{bottom:634.680039px;}
.y7e{bottom:635.220085px;}
.y109{bottom:637.560036px;}
.y130{bottom:642.960091px;}
.yaf{bottom:643.680039px;}
.y4b{bottom:644.220085px;}
.yee{bottom:653.760064px;}
.y16{bottom:655.380066px;}
.y7d{bottom:655.920043px;}
.y108{bottom:658.260064px;}
.y12f{bottom:663.660049px;}
.y4a{bottom:664.920043px;}
.y172{bottom:667.800041px;}
.yae{bottom:673.020058px;}
.yed{bottom:674.460091px;}
.y15{bottom:676.080093px;}
.y7c{bottom:676.620072px;}
.y12e{bottom:684.360077px;}
.y49{bottom:685.620072px;}
.y107{bottom:688.320065px;}
.y171{bottom:691.560070px;}
.yad{bottom:693.720051px;}
.yec{bottom:695.160049px;}
.y14{bottom:696.780052px;}
.y7b{bottom:697.320065px;}
.y12d{bottom:705.060070px;}
.y48{bottom:706.320065px;}
.y170{bottom:715.320065px;}
.y13{bottom:717.480079px;}
.y7a{bottom:718.020058px;}
.yeb{bottom:724.860077px;}
.y12c{bottom:725.760064px;}
.y47{bottom:727.020058px;}
.y12{bottom:738.180073px;}
.y79{bottom:738.720051px;}
.y16f{bottom:739.080059px;}
.yea{bottom:744.840054px;}
.y12b{bottom:746.460056px;}
.y46{bottom:747.720051px;}
.y11{bottom:758.880066px;}
.y78{bottom:759.420078px;}
.ye9{bottom:762.120072px;}
.y12a{bottom:767.160049px;}
.y45{bottom:768.420078px;}
.y16e{bottom:777.960056px;}
.ye8{bottom:779.400055px;}
.y10{bottom:779.580059px;}
.y77{bottom:780.120072px;}
.y129{bottom:787.860077px;}
.y44{bottom:789.120072px;}
.ye7{bottom:796.500068px;}
.yf{bottom:800.280052px;}
.y76{bottom:800.820065px;}
.y16d{bottom:801.720051px;}
.y128{bottom:808.560070px;}
.y43{bottom:809.820065px;}
.ye6{bottom:813.780052px;}
.y9d{bottom:815.220051px;}
.ye{bottom:820.980079px;}
.y75{bottom:821.520058px;}
.y127{bottom:829.260064px;}
.y42{bottom:830.520058px;}
.ye5{bottom:831.060070px;}
.y16c{bottom:840.600083px;}
.y74{bottom:842.220051px;}
.ye4{bottom:848.340054px;}
.yd{bottom:850.320065px;}
.y41{bottom:851.220051px;}
.y126{bottom:858.960056px;}
.y73{bottom:862.920078px;}
.y16b{bottom:864.360077px;}
.ye3{bottom:865.620072px;}
.yc{bottom:871.380066px;}
.y40{bottom:871.920078px;}
.y125{bottom:879.660049px;}
.y72{bottom:883.620072px;}
.yb{bottom:892.080059px;}
.y3f{bottom:892.620072px;}
.y124{bottom:900.360077px;}
.ye2{bottom:901.620072px;}
.y16a{bottom:903.240074px;}
.y71{bottom:904.320065px;}
.ya{bottom:912.060070px;}
.y3e{bottom:913.320065px;}
.ye1{bottom:919.620072px;}
.y123{bottom:921.060070px;}
.y70{bottom:925.020058px;}
.y169{bottom:927.000068px;}
.y9{bottom:929.160049px;}
.y3d{bottom:934.020058px;}
.ye0{bottom:937.620072px;}
.y122{bottom:941.760064px;}
.y6f{bottom:945.720051px;}
.y8{bottom:946.080059px;}
.y3c{bottom:954.720051px;}
.ydf{bottom:955.620072px;}
.y121{bottom:962.460056px;}
.y168{bottom:965.700061px;}
.y6e{bottom:966.420078px;}
.yde{bottom:973.620072px;}
.y7{bottom:973.980079px;}
.y3b{bottom:975.420061px;}
.y120{bottom:983.160067px;}
.y6d{bottom:987.120072px;}
.y167{bottom:989.640060px;}
.ydd{bottom:991.620072px;}
.y3a{bottom:996.120072px;}
.y11f{bottom:1003.860060px;}
.y6{bottom:1006.380066px;}
.y6c{bottom:1007.820065px;}
.ydc{bottom:1009.620072px;}
.y39{bottom:1016.820065px;}
.y166{bottom:1019.520058px;}
.y11e{bottom:1024.560070px;}
.ydb{bottom:1027.620072px;}
.y6b{bottom:1028.520058px;}
.y5{bottom:1028.700061px;}
.y38{bottom:1037.520058px;}
.y165{bottom:1040.220068px;}
.y11d{bottom:1045.260064px;}
.yda{bottom:1045.620072px;}
.y6a{bottom:1049.220068px;}
.y37{bottom:1058.220068px;}
.y4{bottom:1060.200061px;}
.y164{bottom:1060.920061px;}
.yd9{bottom:1063.620072px;}
.y11c{bottom:1065.960074px;}
.y69{bottom:1069.920061px;}
.y36{bottom:1078.920061px;}
.y68{bottom:1090.620072px;}
.y3{bottom:1092.060070px;}
.y11b{bottom:1095.300058px;}
.y35{bottom:1099.620072px;}
.y67{bottom:1111.320065px;}
.y34{bottom:1120.320065px;}
.y11a{bottom:1125.000068px;}
.y2{bottom:1125.180064px;}
.y66{bottom:1132.020066px;}
.y33{bottom:1141.020066px;}
.y119{bottom:1143.900064px;}
.y1{bottom:1158.480063px;}
.y65{bottom:1161.360068px;}
.y32{bottom:1161.720068px;}
.y118{bottom:1162.980063px;}
.hd{height:34.856644px;}
.hc{height:50.231891px;}
.h5{height:53.079850px;}
.h6{height:53.575923px;}
.h7{height:53.867731px;}
.h3{height:55.588505px;}
.h15{height:59.385546px;}
.h9{height:63.951621px;}
.h8{height:64.549300px;}
.hf{height:64.900875px;}
.h16{height:67.678649px;}
.h2{height:74.823380px;}
.h4{height:75.522664px;}
.h11{height:76.367952px;}
.hb{height:76.367957px;}
.h10{height:76.368020px;}
.h13{height:76.368024px;}
.h14{height:76.368087px;}
.ha{height:76.368092px;}
.h17{height:76.368227px;}
.h12{height:76.368231px;}
.he{height:76.603576px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.379998px;}
.xc{left:124.200002px;}
.xb{left:126.360000px;}
.x5{left:133.379998px;}
.x9{left:160.379998px;}
.xd{left:212.219999px;}
.xa{left:237.960005px;}
.x8{left:289.800007px;}
.x6{left:325.800007px;}
.x7{left:561.240006px;}
.x4{left:591.659981px;}
.x2{left:624.059967px;}
.x3{left:629.460023px;}
@media print{
.v2{vertical-align:-24.319824pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:26.880008pt;}
.v1{vertical-align:29.440064pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.004370pt;}
.ls9{letter-spacing:0.159444pt;}
.ls2{letter-spacing:0.319208pt;}
.ls1{letter-spacing:0.319212pt;}
.ls6{letter-spacing:1.439500pt;}
.ls7{letter-spacing:3.999528pt;}
.lsa{letter-spacing:14.719371pt;}
.ls5{letter-spacing:29.631350pt;}
.ls0{letter-spacing:30.271334pt;}
.ls8{letter-spacing:172.799387pt;}
.ws1{word-spacing:-16.000601pt;}
.ws0{word-spacing:-13.280500pt;}
.ws4{word-spacing:-10.720400pt;}
.ws5{word-spacing:-9.280360pt;}
.ws2{word-spacing:-8.640330pt;}
.ws3{word-spacing:0.000000pt;}
._17{margin-left:-10.658446pt;}
._9{margin-left:-2.124812pt;}
._0{margin-left:-1.211288pt;}
._1{width:1.095746pt;}
._2{width:2.131736pt;}
._3{width:3.612663pt;}
._6{width:5.189917pt;}
._c{width:6.195066pt;}
._7{width:7.094516pt;}
._8{width:8.077053pt;}
._d{width:9.082636pt;}
._10{width:10.348389pt;}
._11{width:11.445680pt;}
._14{width:12.346010pt;}
._15{width:13.294045pt;}
._16{width:14.188033pt;}
._1b{width:15.109021pt;}
._37{width:16.152366pt;}
._13{width:17.314400pt;}
._12{width:18.423442pt;}
._4{width:19.648738pt;}
._5{width:20.840578pt;}
._f{width:22.316838pt;}
._e{width:23.606637pt;}
._1a{width:24.559468pt;}
._1c{width:25.879972pt;}
._1d{width:27.323922pt;}
._1f{width:29.039091pt;}
._20{width:30.190134pt;}
._1e{width:31.478432pt;}
._19{width:33.335502pt;}
._18{width:34.264287pt;}
._a{width:39.267225pt;}
._b{width:40.548363pt;}
._38{width:172.806491pt;}
._21{width:208.778383pt;}
._25{width:210.525701pt;}
._22{width:236.510037pt;}
._2e{width:250.702534pt;}
._24{width:261.096185pt;}
._26{width:263.983034pt;}
._23{width:266.347586pt;}
._33{width:277.263534pt;}
._35{width:282.044514pt;}
._32{width:284.700614pt;}
._29{width:305.418194pt;}
._30{width:339.980800pt;}
._2f{width:346.355440pt;}
._34{width:353.261300pt;}
._36{width:357.351694pt;}
._2d{width:358.573500pt;}
._2b{width:359.635940pt;}
._27{width:373.447660pt;}
._31{width:407.412434pt;}
._2a{width:428.163320pt;}
._28{width:441.443820pt;}
._2c{width:454.691014pt;}
.fs6{font-size:34.561320pt;}
.fs7{font-size:37.121440pt;}
.fs4{font-size:42.881600pt;}
.fs2{font-size:53.122000pt;}
.fs5{font-size:58.882400pt;}
.fs3{font-size:64.002404pt;}
.fs1{font-size:69.122804pt;}
.fs0{font-size:74.882796pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:78.880005pt;}
.y163{bottom:79.840088pt;}
.ycd{bottom:84.960083pt;}
.y64{bottom:94.240113pt;}
.y162{bottom:98.240113pt;}
.y30{bottom:100.320069pt;}
.y2f{bottom:109.600037pt;}
.y96{bottom:115.680054pt;}
.y106{bottom:117.600037pt;}
.y161{bottom:124.640076pt;}
.y63{bottom:124.960083pt;}
.y95{bottom:125.760071pt;}
.y2e{bottom:131.040039pt;}
.y105{bottom:132.960083pt;}
.y62{bottom:140.320069pt;}
.y2d{bottom:141.120057pt;}
.y160{bottom:143.040039pt;}
.y94{bottom:143.840088pt;}
.ycc{bottom:146.400086pt;}
.y104{bottom:148.320069pt;}
.y61{bottom:155.680054pt;}
.y151{bottom:156.480042pt;}
.yc5{bottom:159.520081pt;}
.y9c{bottom:161.760071pt;}
.y93{bottom:162.240052pt;}
.y103{bottom:163.680054pt;}
.y15f{bottom:169.440064pt;}
.y2c{bottom:169.760071pt;}
.y60{bottom:170.880066pt;}
.yac{bottom:171.840088pt;}
.yd8{bottom:176.960083pt;}
.yc4{bottom:177.920044pt;}
.y102{bottom:179.840088pt;}
.y92{bottom:180.640076pt;}
.yd7{bottom:186.240052pt;}
.y15e{bottom:187.840088pt;}
.y2b{bottom:188.160035pt;}
.y150{bottom:191.040039pt;}
.y5f{bottom:192.320069pt;}
.yc3{bottom:196.320069pt;}
.yab{bottom:196.480042pt;}
.y9b{bottom:201.600037pt;}
.y142{bottom:202.400086pt;}
.y2a{bottom:206.560059pt;}
.y91{bottom:207.040039pt;}
.y5e{bottom:207.680054pt;}
.y14f{bottom:209.440064pt;}
.y15d{bottom:214.240052pt;}
.yaa{bottom:214.880066pt;}
.y9a{bottom:216.960083pt;}
.y5d{bottom:217.760071pt;}
.yc2{bottom:222.720032pt;}
.y143{bottom:223.040039pt;}
.y101{bottom:223.520081pt;}
.y29{bottom:224.960083pt;}
.y90{bottom:225.440064pt;}
.y14e{bottom:227.840088pt;}
.ycb{bottom:232.320069pt;}
.y15c{bottom:232.640076pt;}
.ya9{bottom:233.280030pt;}
.y5c{bottom:235.520081pt;}
.y99{bottom:238.400086pt;}
.yc1{bottom:241.120057pt;}
.y100{bottom:241.920044pt;}
.y28{bottom:243.360047pt;}
.y8f{bottom:243.840088pt;}
.y14d{bottom:246.240052pt;}
.yd6{bottom:247.680054pt;}
.y98{bottom:248.480042pt;}
.y141{bottom:250.880066pt;}
.ya8{bottom:251.680054pt;}
.yca{bottom:253.760071pt;}
.y15b{bottom:259.040039pt;}
.yc0{bottom:259.520081pt;}
.yff{bottom:260.320069pt;}
.y27{bottom:261.760071pt;}
.y5b{bottom:261.920044pt;}
.y8e{bottom:262.240052pt;}
.yc9{bottom:262.880066pt;}
.y14c{bottom:264.640076pt;}
.yd5{bottom:268.960083pt;}
.y140{bottom:269.280030pt;}
.ya7{bottom:270.080079pt;}
.y15a{bottom:277.440064pt;}
.ybf{bottom:277.920044pt;}
.yfe{bottom:278.720032pt;}
.yd4{bottom:279.040039pt;}
.y26{bottom:280.160035pt;}
.y8d{bottom:280.640076pt;}
.y14b{bottom:283.040039pt;}
.yc8{bottom:284.320069pt;}
.y13f{bottom:287.680054pt;}
.y5a{bottom:288.320069pt;}
.ya6{bottom:288.480042pt;}
.yc7{bottom:294.400086pt;}
.ybe{bottom:296.320069pt;}
.yfd{bottom:297.120057pt;}
.y25{bottom:298.560059pt;}
.y8c{bottom:299.040039pt;}
.y117{bottom:299.200074pt;}
.y14a{bottom:301.440064pt;}
.y159{bottom:303.840088pt;}
.y13e{bottom:306.080079pt;}
.ya5{bottom:306.880066pt;}
.yd3{bottom:307.040039pt;}
.ybd{bottom:314.720032pt;}
.y59{bottom:315.040039pt;}
.yfc{bottom:315.520081pt;}
.y116{bottom:316.000061pt;}
.y17e{bottom:316.800049pt;}
.y24{bottom:316.960083pt;}
.y8b{bottom:317.440064pt;}
.y149{bottom:319.840088pt;}
.y158{bottom:322.240052pt;}
.y13d{bottom:324.480042pt;}
.ya4{bottom:325.280030pt;}
.yd2{bottom:325.440064pt;}
.y115{bottom:332.800049pt;}
.ybc{bottom:333.120057pt;}
.y58{bottom:333.440064pt;}
.yfb{bottom:333.920044pt;}
.y23{bottom:335.360047pt;}
.y8a{bottom:335.840088pt;}
.y148{bottom:338.240052pt;}
.y13c{bottom:342.880066pt;}
.y17d{bottom:343.200074pt;}
.ya3{bottom:343.680054pt;}
.yd1{bottom:343.840088pt;}
.y157{bottom:348.640076pt;}
.y114{bottom:349.760071pt;}
.ybb{bottom:351.520081pt;}
.y57{bottom:351.840088pt;}
.yfa{bottom:352.320069pt;}
.y22{bottom:353.760071pt;}
.y89{bottom:354.240052pt;}
.y147{bottom:356.640076pt;}
.y13b{bottom:361.280030pt;}
.y17c{bottom:361.600037pt;}
.yd0{bottom:362.240052pt;}
.y113{bottom:367.040039pt;}
.yba{bottom:369.920044pt;}
.ya2{bottom:370.080079pt;}
.y56{bottom:370.240052pt;}
.yf9{bottom:370.720032pt;}
.y88{bottom:372.640076pt;}
.y146{bottom:375.040039pt;}
.y13a{bottom:379.680054pt;}
.y21{bottom:380.160035pt;}
.ycf{bottom:380.640076pt;}
.y156{bottom:385.440064pt;}
.y17b{bottom:388.000061pt;}
.yb9{bottom:388.320069pt;}
.y55{bottom:388.640076pt;}
.yf8{bottom:389.120057pt;}
.y87{bottom:391.040039pt;}
.y112{bottom:393.440064pt;}
.ya1{bottom:395.840088pt;}
.y139{bottom:398.080079pt;}
.y20{bottom:398.560059pt;}
.yce{bottom:399.040039pt;}
.y155{bottom:403.840088pt;}
.y17a{bottom:406.400086pt;}
.yb8{bottom:406.720032pt;}
.y54{bottom:407.040039pt;}
.yf7{bottom:407.520081pt;}
.y86{bottom:409.440064pt;}
.ya0{bottom:411.200074pt;}
.y111{bottom:411.840088pt;}
.y138{bottom:416.480042pt;}
.y1f{bottom:416.960083pt;}
.yc6{bottom:417.440064pt;}
.y145{bottom:419.520081pt;}
.yb7{bottom:425.120057pt;}
.y53{bottom:425.440064pt;}
.yf6{bottom:425.920044pt;}
.y9f{bottom:426.560059pt;}
.y85{bottom:427.840088pt;}
.y110{bottom:430.240052pt;}
.y179{bottom:432.800049pt;}
.y1e{bottom:435.360047pt;}
.y97{bottom:435.840088pt;}
.y137{bottom:442.880066pt;}
.yb6{bottom:443.520081pt;}
.y52{bottom:443.840088pt;}
.yf5{bottom:444.320069pt;}
.y144{bottom:445.920044pt;}
.y9e{bottom:447.200074pt;}
.y10f{bottom:448.640076pt;}
.y178{bottom:451.200074pt;}
.y1d{bottom:453.760071pt;}
.y84{bottom:454.240052pt;}
.y136{bottom:461.280030pt;}
.yb5{bottom:461.920044pt;}
.y51{bottom:462.240052pt;}
.yf4{bottom:462.720032pt;}
.y10e{bottom:467.040039pt;}
.y1c{bottom:472.160035pt;}
.y83{bottom:472.640076pt;}
.y177{bottom:477.600037pt;}
.y135{bottom:479.680054pt;}
.yb4{bottom:480.320069pt;}
.y50{bottom:480.640076pt;}
.yf3{bottom:481.120057pt;}
.y10d{bottom:485.440064pt;}
.y1b{bottom:490.560059pt;}
.y82{bottom:491.040039pt;}
.y154{bottom:493.120057pt;}
.y176{bottom:496.000061pt;}
.y134{bottom:498.080079pt;}
.yb3{bottom:498.720032pt;}
.y4f{bottom:499.040039pt;}
.yf2{bottom:499.520081pt;}
.y10c{bottom:503.840088pt;}
.y1a{bottom:508.960083pt;}
.y81{bottom:509.440064pt;}
.y133{bottom:516.480042pt;}
.yb2{bottom:517.120057pt;}
.y4e{bottom:517.440064pt;}
.y153{bottom:519.840088pt;}
.y10b{bottom:522.240052pt;}
.y175{bottom:522.400086pt;}
.yf1{bottom:525.920044pt;}
.y19{bottom:527.360047pt;}
.y80{bottom:527.840088pt;}
.y132{bottom:534.880066pt;}
.yb1{bottom:535.520081pt;}
.y4d{bottom:535.840088pt;}
.y10a{bottom:540.640076pt;}
.y174{bottom:540.800049pt;}
.yf0{bottom:544.320069pt;}
.y18{bottom:545.760071pt;}
.y152{bottom:545.920044pt;}
.y7f{bottom:546.240052pt;}
.y131{bottom:553.120057pt;}
.yb0{bottom:553.760071pt;}
.y4c{bottom:554.240052pt;}
.y173{bottom:559.200074pt;}
.yef{bottom:562.720032pt;}
.y17{bottom:564.160035pt;}
.y7e{bottom:564.640076pt;}
.y109{bottom:566.720032pt;}
.y130{bottom:571.520081pt;}
.yaf{bottom:572.160035pt;}
.y4b{bottom:572.640076pt;}
.yee{bottom:581.120057pt;}
.y16{bottom:582.560059pt;}
.y7d{bottom:583.040039pt;}
.y108{bottom:585.120057pt;}
.y12f{bottom:589.920044pt;}
.y4a{bottom:591.040039pt;}
.y172{bottom:593.600037pt;}
.yae{bottom:598.240052pt;}
.yed{bottom:599.520081pt;}
.y15{bottom:600.960083pt;}
.y7c{bottom:601.440064pt;}
.y12e{bottom:608.320069pt;}
.y49{bottom:609.440064pt;}
.y107{bottom:611.840058pt;}
.y171{bottom:614.720063pt;}
.yad{bottom:616.640046pt;}
.yec{bottom:617.920044pt;}
.y14{bottom:619.360047pt;}
.y7b{bottom:619.840058pt;}
.y12d{bottom:626.720063pt;}
.y48{bottom:627.840058pt;}
.y170{bottom:635.840058pt;}
.y13{bottom:637.760071pt;}
.y7a{bottom:638.240052pt;}
.yeb{bottom:644.320069pt;}
.y12c{bottom:645.120057pt;}
.y47{bottom:646.240052pt;}
.y12{bottom:656.160065pt;}
.y79{bottom:656.640046pt;}
.y16f{bottom:656.960053pt;}
.yea{bottom:662.080048pt;}
.y12b{bottom:663.520050pt;}
.y46{bottom:664.640046pt;}
.y11{bottom:674.560059pt;}
.y78{bottom:675.040070pt;}
.ye9{bottom:677.440064pt;}
.y12a{bottom:681.920044pt;}
.y45{bottom:683.040070pt;}
.y16e{bottom:691.520050pt;}
.ye8{bottom:692.800049pt;}
.y10{bottom:692.960053pt;}
.y77{bottom:693.440064pt;}
.y129{bottom:700.320069pt;}
.y44{bottom:701.440064pt;}
.ye7{bottom:708.000061pt;}
.yf{bottom:711.360047pt;}
.y76{bottom:711.840058pt;}
.y16d{bottom:712.640046pt;}
.y128{bottom:718.720063pt;}
.y43{bottom:719.840058pt;}
.ye6{bottom:723.360047pt;}
.y9d{bottom:724.640046pt;}
.ye{bottom:729.760071pt;}
.y75{bottom:730.240052pt;}
.y127{bottom:737.120057pt;}
.y42{bottom:738.240052pt;}
.ye5{bottom:738.720063pt;}
.y16c{bottom:747.200074pt;}
.y74{bottom:748.640046pt;}
.ye4{bottom:754.080048pt;}
.yd{bottom:755.840058pt;}
.y41{bottom:756.640046pt;}
.y126{bottom:763.520050pt;}
.y73{bottom:767.040070pt;}
.y16b{bottom:768.320069pt;}
.ye3{bottom:769.440064pt;}
.yc{bottom:774.560059pt;}
.y40{bottom:775.040070pt;}
.y125{bottom:781.920044pt;}
.y72{bottom:785.440064pt;}
.yb{bottom:792.960053pt;}
.y3f{bottom:793.440064pt;}
.y124{bottom:800.320069pt;}
.ye2{bottom:801.440064pt;}
.y16a{bottom:802.880066pt;}
.y71{bottom:803.840058pt;}
.ya{bottom:810.720063pt;}
.y3e{bottom:811.840058pt;}
.ye1{bottom:817.440064pt;}
.y123{bottom:818.720063pt;}
.y70{bottom:822.240052pt;}
.y169{bottom:824.000061pt;}
.y9{bottom:825.920044pt;}
.y3d{bottom:830.240052pt;}
.ye0{bottom:833.440064pt;}
.y122{bottom:837.120057pt;}
.y6f{bottom:840.640046pt;}
.y8{bottom:840.960053pt;}
.y3c{bottom:848.640046pt;}
.ydf{bottom:849.440064pt;}
.y121{bottom:855.520050pt;}
.y168{bottom:858.400055pt;}
.y6e{bottom:859.040070pt;}
.yde{bottom:865.440064pt;}
.y7{bottom:865.760071pt;}
.y3b{bottom:867.040055pt;}
.y120{bottom:873.920060pt;}
.y6d{bottom:877.440064pt;}
.y167{bottom:879.680054pt;}
.ydd{bottom:881.440064pt;}
.y3a{bottom:885.440064pt;}
.y11f{bottom:892.320054pt;}
.y6{bottom:894.560059pt;}
.y6c{bottom:895.840058pt;}
.ydc{bottom:897.440064pt;}
.y39{bottom:903.840058pt;}
.y166{bottom:906.240052pt;}
.y11e{bottom:910.720063pt;}
.ydb{bottom:913.440064pt;}
.y6b{bottom:914.240052pt;}
.y5{bottom:914.400055pt;}
.y38{bottom:922.240052pt;}
.y165{bottom:924.640061pt;}
.y11d{bottom:929.120057pt;}
.yda{bottom:929.440064pt;}
.y6a{bottom:932.640061pt;}
.y37{bottom:940.640061pt;}
.y4{bottom:942.400055pt;}
.y164{bottom:943.040055pt;}
.yd9{bottom:945.440064pt;}
.y11c{bottom:947.520066pt;}
.y69{bottom:951.040055pt;}
.y36{bottom:959.040055pt;}
.y68{bottom:969.440064pt;}
.y3{bottom:970.720063pt;}
.y11b{bottom:973.600052pt;}
.y35{bottom:977.440064pt;}
.y67{bottom:987.840058pt;}
.y34{bottom:995.840058pt;}
.y11a{bottom:1000.000061pt;}
.y2{bottom:1000.160057pt;}
.y66{bottom:1006.240059pt;}
.y33{bottom:1014.240059pt;}
.y119{bottom:1016.800057pt;}
.y1{bottom:1029.760056pt;}
.y65{bottom:1032.320061pt;}
.y32{bottom:1032.640061pt;}
.y118{bottom:1033.760056pt;}
.hd{height:30.983683pt;}
.hc{height:44.650570pt;}
.h5{height:47.182089pt;}
.h6{height:47.623043pt;}
.h7{height:47.882428pt;}
.h3{height:49.412004pt;}
.h15{height:52.787152pt;}
.h9{height:56.845885pt;}
.h8{height:57.377155pt;}
.hf{height:57.689667pt;}
.h16{height:60.158799pt;}
.h2{height:66.509671pt;}
.h4{height:67.131257pt;}
.h11{height:67.882624pt;}
.hb{height:67.882628pt;}
.h10{height:67.882684pt;}
.h13{height:67.882688pt;}
.h14{height:67.882744pt;}
.ha{height:67.882748pt;}
.h17{height:67.882868pt;}
.h12{height:67.882872pt;}
.he{height:68.092067pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.559998pt;}
.xc{left:110.400002pt;}
.xb{left:112.320000pt;}
.x5{left:118.559998pt;}
.x9{left:142.559998pt;}
.xd{left:188.639999pt;}
.xa{left:211.520004pt;}
.x8{left:257.600006pt;}
.x6{left:289.600006pt;}
.x7{left:498.880005pt;}
.x4{left:525.919983pt;}
.x2{left:554.719971pt;}
.x3{left:559.520020pt;}
}




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