
    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_3fbc582d8e5461c1499eb090.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_64bd5f39ef021967472397c3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.163086;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_fe7796bff5d18ee0e51f33f2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cd7040a6f6702331d6116642.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_87e80db6a79d4c35f3108465.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0c648180459fbe419e4c3627.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.vc{vertical-align:-75.607526px;}
.v7{vertical-align:-28.080229px;}
.v5{vertical-align:-15.120072px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.439762px;}
.v3{vertical-align:4.319825px;}
.v4{vertical-align:15.120000px;}
.v1{vertical-align:23.759991px;}
.v2{vertical-align:29.519986px;}
.va{vertical-align:60.465384px;}
.v8{vertical-align:72.720018px;}
.v9{vertical-align:78.486627px;}
.vb{vertical-align:82.805529px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.179690px;}
.ls2{letter-spacing:32.615251px;}
.ls3{letter-spacing:37.810786px;}
.ls4{letter-spacing:845.999288px;}
.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;}
}
.ws3{word-spacing:-21.060034px;}
.ws1{word-spacing:-18.000676px;}
.ws9{word-spacing:-14.970850px;}
.ws0{word-spacing:-10.902647px;}
.ws2{word-spacing:0.000000px;}
.ws8{word-spacing:182.807003px;}
.ws7{word-spacing:199.515810px;}
.ws5{word-spacing:200.955486px;}
.ws6{word-spacing:201.537611px;}
.ws4{word-spacing:220.143156px;}
._1d{margin-left:-4.874089px;}
._b{margin-left:-3.519570px;}
._12{margin-left:-2.389569px;}
._1{margin-left:-1.291778px;}
._0{width:1.295997px;}
._18{width:2.390996px;}
._c{width:3.606042px;}
._48{width:5.040752px;}
._d{width:6.161856px;}
._2{width:7.206177px;}
._3{width:8.449963px;}
._1b{width:10.271917px;}
._20{width:11.303456px;}
._1f{width:12.450843px;}
._8{width:13.508664px;}
._9{width:14.602486px;}
._6{width:15.852970px;}
._7{width:16.860060px;}
._4{width:19.563641px;}
._11{width:20.897941px;}
._e{width:22.445208px;}
._f{width:23.782164px;}
._1e{width:24.944770px;}
._15{width:26.325426px;}
._17{width:27.787117px;}
._16{width:28.844729px;}
._5{width:32.401217px;}
._10{width:33.889981px;}
._3f{width:35.190197px;}
._21{width:36.810258px;}
._22{width:37.925841px;}
._a{width:39.088187px;}
._24{width:53.477196px;}
._23{width:54.970971px;}
._3d{width:62.076655px;}
._14{width:63.928078px;}
._13{width:65.625965px;}
._68{width:67.676655px;}
._1a{width:70.331819px;}
._19{width:72.222931px;}
._1c{width:74.186724px;}
._33{width:75.677030px;}
._3a{width:81.356421px;}
._2f{width:83.584171px;}
._34{width:84.963191px;}
._3e{width:87.116638px;}
._36{width:89.269222px;}
._35{width:90.723408px;}
._3b{width:92.896758px;}
._32{width:95.043570px;}
._25{width:100.950042px;}
._39{width:102.374694px;}
._31{width:106.625036px;}
._37{width:108.716502px;}
._30{width:112.897991px;}
._38{width:120.235948px;}
._2c{width:123.068574px;}
._5d{width:128.884841px;}
._82{width:130.686621px;}
._83{width:142.487632px;}
._61{width:146.885517px;}
._84{width:156.879174px;}
._85{width:159.556742px;}
._5f{width:164.886193px;}
._28{width:174.246545px;}
._5b{width:176.467660px;}
._27{width:182.684049px;}
._2e{width:191.527194px;}
._52{width:198.020978px;}
._2d{width:199.433951px;}
._55{width:207.367789px;}
._56{width:208.807843px;}
._7f{width:212.407978px;}
._4e{width:216.728141px;}
._80{width:218.168195px;}
._3c{width:221.169541px;}
._76{width:225.368465px;}
._73{width:227.407308px;}
._2b{width:231.128681px;}
._29{width:234.008790px;}
._4a{width:236.070711px;}
._81{width:237.608925px;}
._79{width:239.340032px;}
._7d{width:243.369141px;}
._7a{width:245.529222px;}
._74{width:246.969276px;}
._75{width:248.409331px;}
._6f{width:250.630445px;}
._54{width:255.447958px;}
._2a{width:257.769682px;}
._7b{width:264.969953px;}
._7c{width:266.410007px;}
._70{width:275.993035px;}
._71{width:277.930439px;}
._51{width:281.513901px;}
._7e{width:288.280560px;}
._4d{width:299.513901px;}
._4f{width:303.851413px;}
._57{width:312.491738px;}
._4b{width:321.997272px;}
._49{width:343.919793px;}
._72{width:353.394618px;}
._26{width:358.561707px;}
._50{width:379.454253px;}
._58{width:388.814604px;}
._78{width:394.854112px;}
._53{width:396.603260px;}
._4c{width:398.163987px;}
._6d{width:408.591821px;}
._77{width:430.855465px;}
._6e{width:435.842777px;}
._45{width:439.047908px;}
._43{width:465.113852px;}
._69{width:474.137580px;}
._40{width:483.113852px;}
._46{width:581.781852px;}
._44{width:599.782528px;}
._47{width:612.022988px;}
._41{width:617.783205px;}
._42{width:630.023664px;}
._65{width:749.810193px;}
._5c{width:785.396456px;}
._62{width:840.570810px;}
._60{width:852.642763px;}
._59{width:879.216587px;}
._6c{width:901.637637px;}
._5a{width:929.040260px;}
._66{width:946.839687px;}
._64{width:1019.412507px;}
._63{width:1391.083155px;}
._6a{width:1394.952323px;}
._6b{width:1422.197784px;}
._5e{width:1558.671981px;}
._67{width:1576.751972px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.241800px;}
.fs3{font-size:59.762250px;}
.fs6{font-size:66.242700px;}
.fs2{font-size:71.999814px;}
.fs0{font-size:72.002705px;}
.fs4{font-size:84.240136px;}
.fs5{font-size:95.759399px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.900055px;}
.y5{bottom:3.240005px;}
.y70{bottom:3.959953px;}
.y96{bottom:3.959988px;}
.y8e{bottom:4.139991px;}
.y7d{bottom:4.139992px;}
.y76{bottom:4.140000px;}
.y81{bottom:4.140009px;}
.y92{bottom:4.140026px;}
.y9f{bottom:4.140027px;}
.yb8{bottom:4.319962px;}
.ya2{bottom:4.319996px;}
.y8{bottom:24.120072px;}
.y7{bottom:39.240005px;}
.y6{bottom:53.820099px;}
.y3{bottom:57.780121px;}
.y4{bottom:65.340088px;}
.y2{bottom:78.480011px;}
.yfd{bottom:108.900055px;}
.y3d{bottom:109.440033px;}
.yd0{bottom:110.880066px;}
.y73{bottom:127.620072px;}
.yfc{bottom:129.420043px;}
.y3c{bottom:130.140060px;}
.ycf{bottom:131.580093px;}
.y6f{bottom:143.460091px;}
.y6e{bottom:147.420043px;}
.y11e{bottom:148.500068px;}
.yfb{bottom:150.120072px;}
.y3b{bottom:150.840088px;}
.yce{bottom:152.280052px;}
.y72{bottom:156.600083px;}
.y6d{bottom:168.120072px;}
.y11d{bottom:169.200096px;}
.yfa{bottom:171.360077px;}
.y3a{bottom:171.540047px;}
.ycd{bottom:172.980079px;}
.y71{bottom:180.360077px;}
.y11c{bottom:189.540047px;}
.y39{bottom:192.240074px;}
.ycc{bottom:193.680039px;}
.yf9{bottom:200.160049px;}
.y6c{bottom:209.160049px;}
.y11b{bottom:210.240074px;}
.y38{bottom:212.940033px;}
.ycb{bottom:214.380066px;}
.yf8{bottom:228.960091px;}
.y6b{bottom:229.860077px;}
.y11a{bottom:231.300041px;}
.y37{bottom:233.640060px;}
.yca{bottom:235.080093px;}
.y6a{bottom:250.920043px;}
.y119{bottom:252.000068px;}
.y36{bottom:254.340088px;}
.yc9{bottom:255.780052px;}
.yf7{bottom:265.320099px;}
.y69{bottom:271.620072px;}
.y118{bottom:272.700096px;}
.y35{bottom:275.040047px;}
.yc8{bottom:276.840088px;}
.yf6{bottom:286.740074px;}
.y68{bottom:292.320099px;}
.y117{bottom:293.400055px;}
.y34{bottom:295.740074px;}
.yc7{bottom:300.060036px;}
.y67{bottom:313.020058px;}
.y116{bottom:314.100083px;}
.yf5{bottom:315.720085px;}
.y33{bottom:316.440033px;}
.yc6{bottom:323.280052px;}
.y66{bottom:333.720085px;}
.y115{bottom:334.800041px;}
.y32{bottom:337.140060px;}
.yf4{bottom:344.520058px;}
.yc5{bottom:346.500068px;}
.y65{bottom:354.420043px;}
.y114{bottom:355.500068px;}
.y31{bottom:357.840088px;}
.yc4{bottom:369.720085px;}
.yf3{bottom:373.500068px;}
.y64{bottom:375.120072px;}
.y113{bottom:376.200096px;}
.y30{bottom:378.540047px;}
.yc3{bottom:393.120072px;}
.y63{bottom:395.820099px;}
.y112{bottom:396.900055px;}
.y2f{bottom:399.240074px;}
.yf2{bottom:402.300041px;}
.yc2{bottom:416.340088px;}
.y62{bottom:416.520058px;}
.y111{bottom:417.240074px;}
.y2e{bottom:419.940033px;}
.yf1{bottom:431.100083px;}
.y110{bottom:433.800041px;}
.yc1{bottom:437.040047px;}
.y61{bottom:437.220085px;}
.y2d{bottom:440.640060px;}
.y129{bottom:445.499346px;}
.y60{bottom:457.920043px;}
.yc0{bottom:458.460091px;}
.yf0{bottom:460.080093px;}
.y2c{bottom:461.340088px;}
.y5f{bottom:478.620072px;}
.ybf{bottom:479.160049px;}
.y2b{bottom:482.040047px;}
.yef{bottom:488.880066px;}
.y122{bottom:489.774732px;}
.y120{bottom:492.654021px;}
.y5e{bottom:499.320099px;}
.ybe{bottom:499.860077px;}
.y126{bottom:500.398572px;}
.y2a{bottom:502.740074px;}
.y124{bottom:507.063396px;}
.yee{bottom:517.860077px;}
.y5d{bottom:520.020058px;}
.ybd{bottom:520.920043px;}
.y121{bottom:523.073059px;}
.y29{bottom:523.440033px;}
.y5c{bottom:540.720085px;}
.ybc{bottom:541.620072px;}
.y28{bottom:544.140060px;}
.yed{bottom:546.660049px;}
.y11f{bottom:552.598780px;}
.y127{bottom:555.838019px;}
.y5b{bottom:561.420043px;}
.ybb{bottom:562.320099px;}
.y27{bottom:564.840088px;}
.yec{bottom:575.460091px;}
.y5a{bottom:582.120072px;}
.yba{bottom:583.020058px;}
.y26{bottom:585.540047px;}
.y128{bottom:585.897106px;}
.y125{bottom:590.036127px;}
.yeb{bottom:596.160049px;}
.yb7{bottom:600.120072px;}
.y59{bottom:602.820099px;}
.yb6{bottom:604.080093px;}
.yb9{bottom:604.440033px;}
.y25{bottom:606.240074px;}
.yea{bottom:617.220085px;}
.y58{bottom:623.520058px;}
.y24{bottom:626.940033px;}
.yb4{bottom:630.000068px;}
.yb3{bottom:634.140060px;}
.yb5{bottom:634.500068px;}
.ye9{bottom:637.920043px;}
.y57{bottom:644.220085px;}
.y12a{bottom:644.406628px;}
.y23{bottom:647.640060px;}
.ye8{bottom:658.620072px;}
.yb1{bottom:658.800041px;}
.yb0{bottom:662.940033px;}
.yb2{bottom:663.300041px;}
.y123{bottom:664.201278px;}
.y56{bottom:664.920043px;}
.y22{bottom:668.340088px;}
.ye7{bottom:679.320099px;}
.y55{bottom:685.620072px;}
.yae{bottom:687.780052px;}
.y21{bottom:689.040081px;}
.yad{bottom:691.920078px;}
.yaf{bottom:692.280052px;}
.ye6{bottom:700.020058px;}
.y12b{bottom:705.960056px;}
.y54{bottom:706.320065px;}
.y20{bottom:709.020058px;}
.yab{bottom:716.580059px;}
.yaa{bottom:720.720051px;}
.yac{bottom:721.080059px;}
.y1f{bottom:726.300076px;}
.y53{bottom:727.020058px;}
.y10f{bottom:728.100083px;}
.ye5{bottom:741.420078px;}
.y1e{bottom:743.580059px;}
.ya8{bottom:745.380066px;}
.y52{bottom:747.720051px;}
.y10e{bottom:749.160049px;}
.ya7{bottom:749.520058px;}
.ya9{bottom:749.880066px;}
.y1d{bottom:761.580059px;}
.ye4{bottom:762.120072px;}
.y51{bottom:768.420078px;}
.y10d{bottom:769.860077px;}
.ya5{bottom:774.360077px;}
.ya4{bottom:778.500068px;}
.y1c{bottom:782.280052px;}
.ya6{bottom:782.460056px;}
.ye3{bottom:782.820065px;}
.y50{bottom:789.120072px;}
.y10c{bottom:790.560070px;}
.y1b{bottom:802.980079px;}
.y9e{bottom:803.160049px;}
.ya1{bottom:803.340054px;}
.ye2{bottom:803.520058px;}
.y9d{bottom:807.300076px;}
.ya0{bottom:807.660049px;}
.y4f{bottom:809.820065px;}
.y10b{bottom:811.260064px;}
.ya3{bottom:811.440067px;}
.y1a{bottom:823.680073px;}
.ye1{bottom:824.220051px;}
.y4e{bottom:830.520058px;}
.y10a{bottom:831.960056px;}
.y9b{bottom:832.140060px;}
.y9a{bottom:836.280052px;}
.y9c{bottom:836.640060px;}
.y19{bottom:844.020058px;}
.ye0{bottom:844.920078px;}
.y4d{bottom:851.220051px;}
.y109{bottom:852.660049px;}
.y98{bottom:860.940067px;}
.y18{bottom:865.080059px;}
.y99{bottom:865.440067px;}
.ydf{bottom:866.160049px;}
.y4c{bottom:871.920078px;}
.y108{bottom:873.360077px;}
.y17{bottom:885.420078px;}
.y95{bottom:889.920078px;}
.y4b{bottom:892.620072px;}
.y94{bottom:893.880066px;}
.y107{bottom:894.060070px;}
.y97{bottom:894.240074px;}
.yde{bottom:894.960056px;}
.y16{bottom:906.480079px;}
.y4a{bottom:913.320065px;}
.y106{bottom:915.120072px;}
.y91{bottom:918.720051px;}
.y90{bottom:922.860077px;}
.y93{bottom:923.220051px;}
.ydd{bottom:923.760064px;}
.y15{bottom:926.820065px;}
.y49{bottom:934.020058px;}
.y105{bottom:944.460056px;}
.y8d{bottom:947.520058px;}
.y14{bottom:947.880066px;}
.y8c{bottom:951.660049px;}
.y8f{bottom:952.020058px;}
.ydc{bottom:952.740074px;}
.y48{bottom:954.720051px;}
.y13{bottom:968.220051px;}
.y104{bottom:973.260064px;}
.y47{bottom:975.420061px;}
.y8a{bottom:976.500068px;}
.y89{bottom:980.640060px;}
.y8b{bottom:981.000068px;}
.ydb{bottom:981.540064px;}
.y12{bottom:988.920061px;}
.y46{bottom:996.120072px;}
.y103{bottom:1002.240074px;}
.y87{bottom:1005.300058px;}
.y86{bottom:1009.440067px;}
.y11{bottom:1009.620072px;}
.y88{bottom:1009.800058px;}
.yda{bottom:1010.520058px;}
.y45{bottom:1016.820065px;}
.y10{bottom:1030.320065px;}
.y102{bottom:1031.040064px;}
.y84{bottom:1034.280069px;}
.y44{bottom:1037.520058px;}
.y83{bottom:1038.420061px;}
.y85{bottom:1038.780069px;}
.yd9{bottom:1039.680073px;}
.yf{bottom:1051.020058px;}
.y43{bottom:1058.220068px;}
.y101{bottom:1060.020058px;}
.yd8{bottom:1062.540064px;}
.y80{bottom:1063.080059px;}
.y7f{bottom:1067.220068px;}
.y82{bottom:1067.580059px;}
.yd4{bottom:1068.840070px;}
.ye{bottom:1071.720068px;}
.y42{bottom:1078.920061px;}
.yd6{bottom:1080.540064px;}
.y100{bottom:1088.460074px;}
.yd3{bottom:1089.540064px;}
.y7c{bottom:1091.880066px;}
.yd{bottom:1092.240074px;}
.yff{bottom:1093.500068px;}
.y7b{bottom:1096.020058px;}
.y7e{bottom:1096.380066px;}
.y41{bottom:1099.620072px;}
.yd5{bottom:1101.240074px;}
.yd7{bottom:1105.200061px;}
.yc{bottom:1112.940067px;}
.yfe{bottom:1114.200061px;}
.y40{bottom:1120.320065px;}
.y79{bottom:1120.860068px;}
.y78{bottom:1125.000068px;}
.y7a{bottom:1125.360068px;}
.yb{bottom:1136.159694px;}
.yd2{bottom:1140.660067px;}
.y3f{bottom:1141.020066px;}
.y75{bottom:1149.660067px;}
.y74{bottom:1153.800067px;}
.y77{bottom:1154.160067px;}
.ya{bottom:1160.461384px;}
.yd1{bottom:1161.360068px;}
.y3e{bottom:1161.720068px;}
.y1{bottom:1193.580068px;}
.h5{height:11.700027px;}
.h3{height:14.579955px;}
.h1b{height:20.159981px;}
.h20{height:20.339984px;}
.h1d{height:20.339985px;}
.h12{height:20.339993px;}
.h10{height:20.340001px;}
.h14{height:20.340002px;}
.h18{height:20.340019px;}
.h23{height:20.340020px;}
.hd{height:20.519989px;}
.h1f{height:20.520024px;}
.h6{height:33.825793px;}
.hc{height:41.903609px;}
.h4{height:47.982689px;}
.h2{height:50.486271px;}
.h26{height:52.419938px;}
.h9{height:58.431882px;}
.ha{height:59.345979px;}
.h7{height:62.261558px;}
.h8{height:62.264057px;}
.hb{height:62.909342px;}
.h13{height:64.886258px;}
.h1e{height:64.886325px;}
.h24{height:64.886330px;}
.h21{height:65.606204px;}
.h1c{height:65.606208px;}
.h11{height:65.606271px;}
.h15{height:65.606276px;}
.h1a{height:65.606339px;}
.h19{height:65.606343px;}
.h22{height:65.606478px;}
.h2a{height:65.886904px;}
.hf{height:70.903981px;}
.h27{height:72.846329px;}
.h16{height:80.006262px;}
.h17{height:80.006330px;}
.h29{height:82.807566px;}
.he{height:91.784044px;}
.h25{height:134.984075px;}
.h28{height:216.117241px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:5.399987px;}
.w3{width:7.019989px;}
.wb{width:7.559967px;}
.w7{width:7.560001px;}
.w9{width:7.560036px;}
.wa{width:7.740005px;}
.w8{width:7.740006px;}
.w5{width:8.819995px;}
.w6{width:9.000000px;}
.w2{width:53.100015px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.x1b{left:90.000000px;}
.x8{left:98.463614px;}
.x36{left:105.480002px;}
.x50{left:111.780001px;}
.xb{left:117.540003px;}
.xe{left:119.159998px;}
.x37{left:129.780001px;}
.x46{left:130.860000px;}
.x41{left:133.379998px;}
.x4b{left:135.719999px;}
.x18{left:138.060001px;}
.x3f{left:140.579999px;}
.x48{left:145.439999px;}
.x3e{left:147.060001px;}
.x4a{left:150.120002px;}
.x59{left:156.603108px;}
.x2d{left:159.120002px;}
.x40{left:161.639992px;}
.x22{left:167.219999px;}
.x23{left:169.919992px;}
.x20{left:171.719999px;}
.x4c{left:175.139992px;}
.x35{left:177.300007px;}
.x29{left:180.719999px;}
.x26{left:184.500000px;}
.x17{left:186.659998px;}
.x2e{left:189.180005px;}
.x2f{left:190.979994px;}
.x2a{left:192.960005px;}
.x49{left:198.000000px;}
.x24{left:200.879998px;}
.x28{left:203.039996px;}
.x27{left:208.080008px;}
.x1a{left:212.400003px;}
.x25{left:213.479994px;}
.x1c{left:221.580008px;}
.xf{left:222.840002px;}
.x4e{left:231.479994px;}
.x1f{left:241.199993px;}
.x9{left:242.463242px;}
.x21{left:245.159998px;}
.x42{left:246.240006px;}
.xc{left:248.219999px;}
.x51{left:251.095658px;}
.x1e{left:260.099997px;}
.x39{left:269.460005px;}
.x54{left:270.541231px;}
.x38{left:277.740006px;}
.x43{left:285.120002px;}
.x1d{left:301.860008px;}
.x2b{left:317.339985px;}
.x47{left:329.939999px;}
.x52{left:332.456490px;}
.x2c{left:339.660015px;}
.x55{left:357.300753px;}
.x4f{left:364.500000px;}
.x45{left:419.939999px;}
.x53{left:424.799824px;}
.x2{left:437.399987px;}
.xd{left:446.399987px;}
.x56{left:449.458966px;}
.x3a{left:451.800007px;}
.xa{left:467.639992px;}
.x3b{left:484.920010px;}
.x44{left:501.839985px;}
.x12{left:522.360008px;}
.x57{left:530.819829px;}
.x16{left:575.279983px;}
.x14{left:611.460023px;}
.x30{left:617.399987px;}
.x15{left:623.700027px;}
.x31{left:635.580025px;}
.x3c{left:647.279983px;}
.x11{left:652.320030px;}
.x13{left:663.120002px;}
.x3d{left:672.480011px;}
.x58{left:704.522708px;}
.x32{left:707.759994px;}
.x19{left:724.500000px;}
.x6{left:746.279983px;}
.x5{left:751.139992px;}
.x3{left:759.779983px;}
.x4d{left:762.480011px;}
.x33{left:776.340019px;}
.x7{left:786.240006px;}
.x34{left:803.340019px;}
.x10{left:807.840019px;}
.x4{left:812.879998px;}
@media print{
.vc{vertical-align:-67.206690pt;}
.v7{vertical-align:-24.960204pt;}
.v5{vertical-align:-13.440064pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.279788pt;}
.v3{vertical-align:3.839844pt;}
.v4{vertical-align:13.440000pt;}
.v1{vertical-align:21.119992pt;}
.v2{vertical-align:26.239988pt;}
.va{vertical-align:53.747008pt;}
.v8{vertical-align:64.640016pt;}
.v9{vertical-align:69.765890pt;}
.vb{vertical-align:73.604914pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.159724pt;}
.ls2{letter-spacing:28.991334pt;}
.ls3{letter-spacing:33.609587pt;}
.ls4{letter-spacing:751.999367pt;}
.ws3{word-spacing:-18.720030pt;}
.ws1{word-spacing:-16.000601pt;}
.ws9{word-spacing:-13.307422pt;}
.ws0{word-spacing:-9.691242pt;}
.ws2{word-spacing:0.000000pt;}
.ws8{word-spacing:162.495114pt;}
.ws7{word-spacing:177.347387pt;}
.ws5{word-spacing:178.627099pt;}
.ws6{word-spacing:179.144543pt;}
.ws4{word-spacing:195.682805pt;}
._1d{margin-left:-4.332523pt;}
._b{margin-left:-3.128507pt;}
._12{margin-left:-2.124061pt;}
._1{margin-left:-1.148247pt;}
._0{width:1.151997pt;}
._18{width:2.125330pt;}
._c{width:3.205370pt;}
._48{width:4.480668pt;}
._d{width:5.477206pt;}
._2{width:6.405491pt;}
._3{width:7.511079pt;}
._1b{width:9.130593pt;}
._20{width:10.047516pt;}
._1f{width:11.067416pt;}
._8{width:12.007701pt;}
._9{width:12.979988pt;}
._6{width:14.091529pt;}
._7{width:14.986720pt;}
._4{width:17.389903pt;}
._11{width:18.575948pt;}
._e{width:19.951296pt;}
._f{width:21.139701pt;}
._1e{width:22.173129pt;}
._15{width:23.400379pt;}
._17{width:24.699659pt;}
._16{width:25.639759pt;}
._5{width:28.801082pt;}
._10{width:30.124428pt;}
._3f{width:31.280175pt;}
._21{width:32.720229pt;}
._22{width:33.711858pt;}
._a{width:34.745055pt;}
._24{width:47.535285pt;}
._23{width:48.863085pt;}
._3d{width:55.179248pt;}
._14{width:56.824959pt;}
._13{width:58.334191pt;}
._68{width:60.157027pt;}
._1a{width:62.517172pt;}
._19{width:64.198161pt;}
._1c{width:65.943755pt;}
._33{width:67.268471pt;}
._3a{width:72.316819pt;}
._2f{width:74.297041pt;}
._34{width:75.522837pt;}
._3e{width:77.437011pt;}
._36{width:79.350420pt;}
._35{width:80.643029pt;}
._3b{width:82.574896pt;}
._32{width:84.483173pt;}
._25{width:89.733370pt;}
._39{width:90.999728pt;}
._31{width:94.777810pt;}
._37{width:96.636891pt;}
._30{width:100.353769pt;}
._38{width:106.876398pt;}
._2c{width:109.394288pt;}
._5d{width:114.564303pt;}
._82{width:116.165885pt;}
._83{width:126.655673pt;}
._61{width:130.564904pt;}
._84{width:139.448155pt;}
._85{width:141.828215pt;}
._5f{width:146.565505pt;}
._28{width:154.885818pt;}
._5b{width:156.860142pt;}
._27{width:162.385822pt;}
._2e{width:170.246395pt;}
._52{width:176.018647pt;}
._2d{width:177.274623pt;}
._55{width:184.326924pt;}
._56{width:185.606972pt;}
._7f{width:188.807092pt;}
._4e{width:192.647236pt;}
._80{width:193.927284pt;}
._3c{width:196.595147pt;}
._76{width:200.327525pt;}
._73{width:202.139830pt;}
._2b{width:205.447717pt;}
._29{width:208.007813pt;}
._4a{width:209.840632pt;}
._81{width:211.207933pt;}
._79{width:212.746695pt;}
._7d{width:216.328126pt;}
._7a{width:218.248198pt;}
._74{width:219.528246pt;}
._75{width:220.808294pt;}
._6f{width:222.782618pt;}
._54{width:227.064851pt;}
._2a{width:229.128606pt;}
._7b{width:235.528847pt;}
._7c{width:236.808895pt;}
._70{width:245.327142pt;}
._71{width:247.049279pt;}
._51{width:250.234579pt;}
._7e{width:256.249387pt;}
._4d{width:266.234579pt;}
._4f{width:270.090145pt;}
._57{width:277.770433pt;}
._4b{width:286.219797pt;}
._49{width:305.706483pt;}
._72{width:314.128549pt;}
._26{width:318.721518pt;}
._50{width:337.292669pt;}
._58{width:345.612982pt;}
._78{width:350.981433pt;}
._53{width:352.536231pt;}
._4c{width:353.923544pt;}
._6d{width:363.192730pt;}
._77{width:382.982635pt;}
._6e{width:387.415802pt;}
._45{width:390.264807pt;}
._43{width:413.434535pt;}
._69{width:421.455627pt;}
._40{width:429.434535pt;}
._46{width:517.139424pt;}
._44{width:533.140025pt;}
._47{width:544.020434pt;}
._41{width:549.140626pt;}
._42{width:560.021035pt;}
._65{width:666.497949pt;}
._5c{width:698.130183pt;}
._62{width:747.174053pt;}
._60{width:757.904678pt;}
._59{width:781.525855pt;}
._6c{width:801.455677pt;}
._5a{width:825.813565pt;}
._66{width:841.635277pt;}
._64{width:906.144451pt;}
._63{width:1236.518360pt;}
._6a{width:1239.957620pt;}
._6b{width:1264.175808pt;}
._5e{width:1385.486205pt;}
._67{width:1401.557309pt;}
.fs1{font-size:42.881600pt;}
.fs3{font-size:53.122000pt;}
.fs6{font-size:58.882400pt;}
.fs2{font-size:63.999835pt;}
.fs0{font-size:64.002404pt;}
.fs4{font-size:74.880121pt;}
.fs5{font-size:85.119466pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.800049pt;}
.y5{bottom:2.880004pt;}
.y70{bottom:3.519958pt;}
.y96{bottom:3.519989pt;}
.y8e{bottom:3.679992pt;}
.y7d{bottom:3.679993pt;}
.y76{bottom:3.680000pt;}
.y81{bottom:3.680008pt;}
.y92{bottom:3.680023pt;}
.y9f{bottom:3.680024pt;}
.yb8{bottom:3.839966pt;}
.ya2{bottom:3.839996pt;}
.y8{bottom:21.440064pt;}
.y7{bottom:34.880005pt;}
.y6{bottom:47.840088pt;}
.y3{bottom:51.360108pt;}
.y4{bottom:58.080079pt;}
.y2{bottom:69.760010pt;}
.yfd{bottom:96.800049pt;}
.y3d{bottom:97.280030pt;}
.yd0{bottom:98.560059pt;}
.y73{bottom:113.440064pt;}
.yfc{bottom:115.040039pt;}
.y3c{bottom:115.680054pt;}
.ycf{bottom:116.960083pt;}
.y6f{bottom:127.520081pt;}
.y6e{bottom:131.040039pt;}
.y11e{bottom:132.000061pt;}
.yfb{bottom:133.440064pt;}
.y3b{bottom:134.080079pt;}
.yce{bottom:135.360047pt;}
.y72{bottom:139.200074pt;}
.y6d{bottom:149.440064pt;}
.y11d{bottom:150.400086pt;}
.yfa{bottom:152.320069pt;}
.y3a{bottom:152.480042pt;}
.ycd{bottom:153.760071pt;}
.y71{bottom:160.320069pt;}
.y11c{bottom:168.480042pt;}
.y39{bottom:170.880066pt;}
.ycc{bottom:172.160035pt;}
.yf9{bottom:177.920044pt;}
.y6c{bottom:185.920044pt;}
.y11b{bottom:186.880066pt;}
.y38{bottom:189.280030pt;}
.ycb{bottom:190.560059pt;}
.yf8{bottom:203.520081pt;}
.y6b{bottom:204.320069pt;}
.y11a{bottom:205.600037pt;}
.y37{bottom:207.680054pt;}
.yca{bottom:208.960083pt;}
.y6a{bottom:223.040039pt;}
.y119{bottom:224.000061pt;}
.y36{bottom:226.080079pt;}
.yc9{bottom:227.360047pt;}
.yf7{bottom:235.840088pt;}
.y69{bottom:241.440064pt;}
.y118{bottom:242.400086pt;}
.y35{bottom:244.480042pt;}
.yc8{bottom:246.080079pt;}
.yf6{bottom:254.880066pt;}
.y68{bottom:259.840088pt;}
.y117{bottom:260.800049pt;}
.y34{bottom:262.880066pt;}
.yc7{bottom:266.720032pt;}
.y67{bottom:278.240052pt;}
.y116{bottom:279.200074pt;}
.yf5{bottom:280.640076pt;}
.y33{bottom:281.280030pt;}
.yc6{bottom:287.360047pt;}
.y66{bottom:296.640076pt;}
.y115{bottom:297.600037pt;}
.y32{bottom:299.680054pt;}
.yf4{bottom:306.240052pt;}
.yc5{bottom:308.000061pt;}
.y65{bottom:315.040039pt;}
.y114{bottom:316.000061pt;}
.y31{bottom:318.080079pt;}
.yc4{bottom:328.640076pt;}
.yf3{bottom:332.000061pt;}
.y64{bottom:333.440064pt;}
.y113{bottom:334.400086pt;}
.y30{bottom:336.480042pt;}
.yc3{bottom:349.440064pt;}
.y63{bottom:351.840088pt;}
.y112{bottom:352.800049pt;}
.y2f{bottom:354.880066pt;}
.yf2{bottom:357.600037pt;}
.yc2{bottom:370.080079pt;}
.y62{bottom:370.240052pt;}
.y111{bottom:370.880066pt;}
.y2e{bottom:373.280030pt;}
.yf1{bottom:383.200074pt;}
.y110{bottom:385.600037pt;}
.yc1{bottom:388.480042pt;}
.y61{bottom:388.640076pt;}
.y2d{bottom:391.680054pt;}
.y129{bottom:395.999419pt;}
.y60{bottom:407.040039pt;}
.yc0{bottom:407.520081pt;}
.yf0{bottom:408.960083pt;}
.y2c{bottom:410.080079pt;}
.y5f{bottom:425.440064pt;}
.ybf{bottom:425.920044pt;}
.y2b{bottom:428.480042pt;}
.yef{bottom:434.560059pt;}
.y122{bottom:435.355318pt;}
.y120{bottom:437.914686pt;}
.y5e{bottom:443.840088pt;}
.ybe{bottom:444.320069pt;}
.y126{bottom:444.798730pt;}
.y2a{bottom:446.880066pt;}
.y124{bottom:450.723019pt;}
.yee{bottom:460.320069pt;}
.y5d{bottom:462.240052pt;}
.ybd{bottom:463.040039pt;}
.y121{bottom:464.953830pt;}
.y29{bottom:465.280030pt;}
.y5c{bottom:480.640076pt;}
.ybc{bottom:481.440064pt;}
.y28{bottom:483.680054pt;}
.yed{bottom:485.920044pt;}
.y11f{bottom:491.198915pt;}
.y127{bottom:494.078239pt;}
.y5b{bottom:499.040039pt;}
.ybb{bottom:499.840088pt;}
.y27{bottom:502.080079pt;}
.yec{bottom:511.520081pt;}
.y5a{bottom:517.440064pt;}
.yba{bottom:518.240052pt;}
.y26{bottom:520.480042pt;}
.y128{bottom:520.797428pt;}
.y125{bottom:524.476558pt;}
.yeb{bottom:529.920044pt;}
.yb7{bottom:533.440064pt;}
.y59{bottom:535.840088pt;}
.yb6{bottom:536.960083pt;}
.yb9{bottom:537.280030pt;}
.y25{bottom:538.880066pt;}
.yea{bottom:548.640076pt;}
.y58{bottom:554.240052pt;}
.y24{bottom:557.280030pt;}
.yb4{bottom:560.000061pt;}
.yb3{bottom:563.680054pt;}
.yb5{bottom:564.000061pt;}
.ye9{bottom:567.040039pt;}
.y57{bottom:572.640076pt;}
.y12a{bottom:572.805892pt;}
.y23{bottom:575.680054pt;}
.ye8{bottom:585.440064pt;}
.yb1{bottom:585.600037pt;}
.yb0{bottom:589.280030pt;}
.yb2{bottom:589.600037pt;}
.y123{bottom:590.401136pt;}
.y56{bottom:591.040039pt;}
.y22{bottom:594.080079pt;}
.ye7{bottom:603.840088pt;}
.y55{bottom:609.440064pt;}
.yae{bottom:611.360047pt;}
.y21{bottom:612.480072pt;}
.yad{bottom:615.040070pt;}
.yaf{bottom:615.360047pt;}
.ye6{bottom:622.240052pt;}
.y12b{bottom:627.520050pt;}
.y54{bottom:627.840058pt;}
.y20{bottom:630.240052pt;}
.yab{bottom:636.960053pt;}
.yaa{bottom:640.640046pt;}
.yac{bottom:640.960053pt;}
.y1f{bottom:645.600068pt;}
.y53{bottom:646.240052pt;}
.y10f{bottom:647.200074pt;}
.ye5{bottom:659.040070pt;}
.y1e{bottom:660.960053pt;}
.ya8{bottom:662.560059pt;}
.y52{bottom:664.640046pt;}
.y10e{bottom:665.920044pt;}
.ya7{bottom:666.240052pt;}
.ya9{bottom:666.560059pt;}
.y1d{bottom:676.960053pt;}
.ye4{bottom:677.440064pt;}
.y51{bottom:683.040070pt;}
.y10d{bottom:684.320069pt;}
.ya5{bottom:688.320069pt;}
.ya4{bottom:692.000061pt;}
.y1c{bottom:695.360047pt;}
.ya6{bottom:695.520050pt;}
.ye3{bottom:695.840058pt;}
.y50{bottom:701.440064pt;}
.y10c{bottom:702.720063pt;}
.y1b{bottom:713.760071pt;}
.y9e{bottom:713.920044pt;}
.ya1{bottom:714.080048pt;}
.ye2{bottom:714.240052pt;}
.y9d{bottom:717.600068pt;}
.ya0{bottom:717.920044pt;}
.y4f{bottom:719.840058pt;}
.y10b{bottom:721.120057pt;}
.ya3{bottom:721.280060pt;}
.y1a{bottom:732.160065pt;}
.ye1{bottom:732.640046pt;}
.y4e{bottom:738.240052pt;}
.y10a{bottom:739.520050pt;}
.y9b{bottom:739.680054pt;}
.y9a{bottom:743.360047pt;}
.y9c{bottom:743.680054pt;}
.y19{bottom:750.240052pt;}
.ye0{bottom:751.040070pt;}
.y4d{bottom:756.640046pt;}
.y109{bottom:757.920044pt;}
.y98{bottom:765.280060pt;}
.y18{bottom:768.960053pt;}
.y99{bottom:769.280060pt;}
.ydf{bottom:769.920044pt;}
.y4c{bottom:775.040070pt;}
.y108{bottom:776.320069pt;}
.y17{bottom:787.040070pt;}
.y95{bottom:791.040070pt;}
.y4b{bottom:793.440064pt;}
.y94{bottom:794.560059pt;}
.y107{bottom:794.720063pt;}
.y97{bottom:794.880066pt;}
.yde{bottom:795.520050pt;}
.y16{bottom:805.760071pt;}
.y4a{bottom:811.840058pt;}
.y106{bottom:813.440064pt;}
.y91{bottom:816.640046pt;}
.y90{bottom:820.320069pt;}
.y93{bottom:820.640046pt;}
.ydd{bottom:821.120057pt;}
.y15{bottom:823.840058pt;}
.y49{bottom:830.240052pt;}
.y105{bottom:839.520050pt;}
.y8d{bottom:842.240052pt;}
.y14{bottom:842.560059pt;}
.y8c{bottom:845.920044pt;}
.y8f{bottom:846.240052pt;}
.ydc{bottom:846.880066pt;}
.y48{bottom:848.640046pt;}
.y13{bottom:860.640046pt;}
.y104{bottom:865.120057pt;}
.y47{bottom:867.040055pt;}
.y8a{bottom:868.000061pt;}
.y89{bottom:871.680054pt;}
.y8b{bottom:872.000061pt;}
.ydb{bottom:872.480057pt;}
.y12{bottom:879.040055pt;}
.y46{bottom:885.440064pt;}
.y103{bottom:890.880066pt;}
.y87{bottom:893.600052pt;}
.y86{bottom:897.280060pt;}
.y11{bottom:897.440064pt;}
.y88{bottom:897.600052pt;}
.yda{bottom:898.240052pt;}
.y45{bottom:903.840058pt;}
.y10{bottom:915.840058pt;}
.y102{bottom:916.480057pt;}
.y84{bottom:919.360062pt;}
.y44{bottom:922.240052pt;}
.y83{bottom:923.040055pt;}
.y85{bottom:923.360062pt;}
.yd9{bottom:924.160065pt;}
.yf{bottom:934.240052pt;}
.y43{bottom:940.640061pt;}
.y101{bottom:942.240052pt;}
.yd8{bottom:944.480057pt;}
.y80{bottom:944.960053pt;}
.y7f{bottom:948.640061pt;}
.y82{bottom:948.960053pt;}
.yd4{bottom:950.080063pt;}
.ye{bottom:952.640061pt;}
.y42{bottom:959.040055pt;}
.yd6{bottom:960.480057pt;}
.y100{bottom:967.520066pt;}
.yd3{bottom:968.480057pt;}
.y7c{bottom:970.560059pt;}
.yd{bottom:970.880066pt;}
.yff{bottom:972.000061pt;}
.y7b{bottom:974.240052pt;}
.y7e{bottom:974.560059pt;}
.y41{bottom:977.440064pt;}
.yd5{bottom:978.880066pt;}
.yd7{bottom:982.400055pt;}
.yc{bottom:989.280060pt;}
.yfe{bottom:990.400055pt;}
.y40{bottom:995.840058pt;}
.y79{bottom:996.320061pt;}
.y78{bottom:1000.000061pt;}
.y7a{bottom:1000.320061pt;}
.yb{bottom:1009.919728pt;}
.yd2{bottom:1013.920060pt;}
.y3f{bottom:1014.240059pt;}
.y75{bottom:1021.920060pt;}
.y74{bottom:1025.600060pt;}
.y77{bottom:1025.920060pt;}
.ya{bottom:1031.521230pt;}
.yd1{bottom:1032.320061pt;}
.y3e{bottom:1032.640061pt;}
.y1{bottom:1060.960061pt;}
.h5{height:10.400024pt;}
.h3{height:12.959960pt;}
.h1b{height:17.919983pt;}
.h20{height:18.079986pt;}
.h1d{height:18.079987pt;}
.h12{height:18.079994pt;}
.h10{height:18.080001pt;}
.h14{height:18.080002pt;}
.h18{height:18.080017pt;}
.h23{height:18.080018pt;}
.hd{height:18.239990pt;}
.h1f{height:18.240021pt;}
.h6{height:30.067372pt;}
.hc{height:37.247652pt;}
.h4{height:42.651279pt;}
.h2{height:44.876686pt;}
.h26{height:46.595500pt;}
.h9{height:51.939451pt;}
.ha{height:52.751981pt;}
.h7{height:55.343607pt;}
.h8{height:55.345829pt;}
.hb{height:55.919415pt;}
.h13{height:57.676674pt;}
.h1e{height:57.676734pt;}
.h24{height:57.676738pt;}
.h21{height:58.316626pt;}
.h1c{height:58.316630pt;}
.h11{height:58.316686pt;}
.h15{height:58.316690pt;}
.h1a{height:58.316746pt;}
.h19{height:58.316750pt;}
.h22{height:58.316870pt;}
.h2a{height:58.566137pt;}
.hf{height:63.025761pt;}
.h27{height:64.752292pt;}
.h16{height:71.116678pt;}
.h17{height:71.116738pt;}
.h29{height:73.606725pt;}
.he{height:81.585817pt;}
.h25{height:119.985845pt;}
.h28{height:192.104215pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:4.799988pt;}
.w3{width:6.239990pt;}
.wb{width:6.719971pt;}
.w7{width:6.720001pt;}
.w9{width:6.720032pt;}
.wa{width:6.880004pt;}
.w8{width:6.880005pt;}
.w5{width:7.839996pt;}
.w6{width:8.000000pt;}
.w2{width:47.200013pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.x1b{left:80.000000pt;}
.x8{left:87.523212pt;}
.x36{left:93.760002pt;}
.x50{left:99.360001pt;}
.xb{left:104.480003pt;}
.xe{left:105.919998pt;}
.x37{left:115.360001pt;}
.x46{left:116.320000pt;}
.x41{left:118.559998pt;}
.x4b{left:120.639999pt;}
.x18{left:122.720001pt;}
.x3f{left:124.959999pt;}
.x48{left:129.279999pt;}
.x3e{left:130.720001pt;}
.x4a{left:133.440002pt;}
.x59{left:139.202763pt;}
.x2d{left:141.440002pt;}
.x40{left:143.679993pt;}
.x22{left:148.639999pt;}
.x23{left:151.039993pt;}
.x20{left:152.639999pt;}
.x4c{left:155.679993pt;}
.x35{left:157.600006pt;}
.x29{left:160.639999pt;}
.x26{left:164.000000pt;}
.x17{left:165.919998pt;}
.x2e{left:168.160004pt;}
.x2f{left:169.759995pt;}
.x2a{left:171.520004pt;}
.x49{left:176.000000pt;}
.x24{left:178.559998pt;}
.x28{left:180.479996pt;}
.x27{left:184.960007pt;}
.x1a{left:188.800003pt;}
.x25{left:189.759995pt;}
.x1c{left:196.960007pt;}
.xf{left:198.080002pt;}
.x4e{left:205.759995pt;}
.x1f{left:214.399994pt;}
.x9{left:215.522882pt;}
.x21{left:217.919998pt;}
.x42{left:218.880005pt;}
.xc{left:220.639999pt;}
.x51{left:223.196141pt;}
.x1e{left:231.199997pt;}
.x39{left:239.520004pt;}
.x54{left:240.481094pt;}
.x38{left:246.880005pt;}
.x43{left:253.440002pt;}
.x1d{left:268.320007pt;}
.x2b{left:282.079987pt;}
.x47{left:293.279999pt;}
.x52{left:295.516880pt;}
.x2c{left:301.920013pt;}
.x55{left:317.600670pt;}
.x4f{left:324.000000pt;}
.x45{left:373.279999pt;}
.x53{left:377.599844pt;}
.x2{left:388.799988pt;}
.xd{left:396.799988pt;}
.x56{left:399.519081pt;}
.x3a{left:401.600006pt;}
.xa{left:415.679993pt;}
.x3b{left:431.040009pt;}
.x44{left:446.079987pt;}
.x12{left:464.320007pt;}
.x57{left:471.839848pt;}
.x16{left:511.359985pt;}
.x14{left:543.520020pt;}
.x30{left:548.799988pt;}
.x15{left:554.400024pt;}
.x31{left:564.960022pt;}
.x3c{left:575.359985pt;}
.x11{left:579.840027pt;}
.x13{left:589.440002pt;}
.x3d{left:597.760010pt;}
.x58{left:626.242407pt;}
.x32{left:629.119995pt;}
.x19{left:644.000000pt;}
.x6{left:663.359985pt;}
.x5{left:667.679993pt;}
.x3{left:675.359985pt;}
.x4d{left:677.760010pt;}
.x33{left:690.080017pt;}
.x7{left:698.880005pt;}
.x34{left:714.080017pt;}
.x10{left:718.080017pt;}
.x4{left:722.559998pt;}
}




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