
    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_7d2d916a2e262329fb93ffcc.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_7d9b5c267ef0523d0b3a7b6d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.916016;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_452464b3403e80c5db321ea9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7cecce19b4b556bf1445cc09.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9e9ce357437e7e493693c761.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.853027;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_bcd3e97458f638e1d0f26313.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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);}
.v7{vertical-align:-32.400054px;}
.v3{vertical-align:-26.639919px;}
.v4{vertical-align:-9.360076px;}
.v5{vertical-align:-1.440036px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:26.639924px;}
.v2{vertical-align:29.519986px;}
.v1{vertical-align:32.399987px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.015057px;}
.ls7{letter-spacing:0.282231px;}
.ls10{letter-spacing:0.440964px;}
.lse{letter-spacing:0.440969px;}
.ls5{letter-spacing:0.517653px;}
.ls3{letter-spacing:0.556087px;}
.lsf{letter-spacing:0.577733px;}
.lsb{letter-spacing:1.002384px;}
.ls11{letter-spacing:1.199381px;}
.ls9{letter-spacing:1.919399px;}
.ls8{letter-spacing:3.359291px;}
.ls12{letter-spacing:4.040914px;}
.lsd{letter-spacing:4.799462px;}
.lsa{letter-spacing:6.959511px;}
.lsc{letter-spacing:7.717648px;}
.ls6{letter-spacing:9.157644px;}
.ls2{letter-spacing:10.520924px;}
.ls1{letter-spacing:11.802362px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-26.281014px;}
.ws1{word-spacing:-23.302464px;}
.ws2{word-spacing:-20.499188px;}
.ws3{word-spacing:-17.520638px;}
.ws5{word-spacing:-16.119000px;}
.ws6{word-spacing:-14.542200px;}
.ws8{word-spacing:-11.738813px;}
.ws7{word-spacing:-10.161990px;}
.ws9{word-spacing:-9.461171px;}
.wsa{word-spacing:-0.123637px;}
.ws4{word-spacing:0.000000px;}
._17{margin-left:-3.576089px;}
._2{margin-left:-2.126471px;}
._1{margin-left:-1.033583px;}
._0{width:1.051241px;}
._9{width:2.524665px;}
._8{width:3.854966px;}
._b{width:4.898114px;}
._a{width:5.984393px;}
._e{width:7.013458px;}
._7{width:8.351045px;}
._5{width:9.895292px;}
._6{width:11.174917px;}
._f{width:12.720860px;}
._4{width:14.167529px;}
._3{width:16.172692px;}
._19{width:17.180733px;}
._13{width:18.712041px;}
._14{width:19.739736px;}
._12{width:21.793931px;}
._10{width:22.952854px;}
._11{width:24.099264px;}
._c{width:26.039226px;}
._d{width:27.622649px;}
._3b{width:28.680079px;}
._1a{width:30.475780px;}
._20{width:31.477742px;}
._21{width:32.484631px;}
._22{width:33.606499px;}
._23{width:35.531853px;}
._1c{width:37.661155px;}
._1b{width:38.815056px;}
._1d{width:40.237913px;}
._18{width:43.359745px;}
._16{width:47.014714px;}
._15{width:49.275016px;}
._25{width:51.426215px;}
._24{width:52.533033px;}
._43{width:56.436284px;}
._31{width:58.943405px;}
._1f{width:64.513451px;}
._1e{width:66.113030px;}
._3f{width:70.588585px;}
._3d{width:83.308437px;}
._3c{width:84.334608px;}
._40{width:110.328440px;}
._30{width:145.493011px;}
._41{width:156.047256px;}
._42{width:157.101102px;}
._3a{width:189.222885px;}
._2a{width:267.160183px;}
._26{width:367.219708px;}
._2f{width:374.020615px;}
._37{width:407.835973px;}
._2e{width:445.073123px;}
._28{width:454.298328px;}
._2d{width:476.692429px;}
._2b{width:483.382728px;}
._34{width:600.739679px;}
._32{width:609.197640px;}
._38{width:618.497150px;}
._29{width:624.903671px;}
._2c{width:631.260262px;}
._33{width:663.834757px;}
._35{width:708.098573px;}
._36{width:710.586768px;}
._27{width:732.617858px;}
._39{width:737.711606px;}
._3e{width:2252.791440px;}
.fc6{color:rgb(5,99,193);}
.fc5{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(31,73,125);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:37.844685px;}
.fs6{font-size:40.647960px;}
.fs5{font-size:46.955250px;}
.fs8{font-size:58.168800px;}
.fs2{font-size:64.476000px;}
.fs4{font-size:70.082550px;}
.fs3{font-size:81.996750px;}
.fs1{font-size:93.209855px;}
.fs0{font-size:105.124055px;}
.y0{bottom:0.000000px;}
.yb4{bottom:3.060035px;}
.y64{bottom:160.200096px;}
.y56{bottom:160.740074px;}
.y16a{bottom:163.080093px;}
.y147{bottom:164.700096px;}
.y9a{bottom:166.860077px;}
.y20{bottom:170.640060px;}
.y63{bottom:176.940033px;}
.y166{bottom:177.300041px;}
.yc2{bottom:180.900055px;}
.y3f{bottom:183.240074px;}
.yaf{bottom:183.600083px;}
.y137{bottom:185.580093px;}
.ya7{bottom:188.280052px;}
.y55{bottom:190.800041px;}
.y146{bottom:192.420043px;}
.y6e{bottom:192.960091px;}
.y74{bottom:193.500068px;}
.yae{bottom:193.860077px;}
.y136{bottom:197.100083px;}
.y62{bottom:200.520058px;}
.y1f{bottom:200.700096px;}
.y165{bottom:205.020058px;}
.yc1{bottom:207.180039px;}
.y61{bottom:210.600083px;}
.y3e{bottom:213.660049px;}
.y11e{bottom:218.340088px;}
.ya6{bottom:218.520058px;}
.y145{bottom:220.140060px;}
.y135{bottom:220.500068px;}
.y54{bottom:221.040047px;}
.y73{bottom:222.660049px;}
.y6d{bottom:223.200096px;}
.y169{bottom:223.560036px;}
.y130{bottom:225.000068px;}
.yad{bottom:227.340088px;}
.y99{bottom:230.220085px;}
.y1e{bottom:230.760064px;}
.y164{bottom:232.740074px;}
.yc0{bottom:233.460091px;}
.y60{bottom:234.000068px;}
.y3d{bottom:243.720085px;}
.y5f{bottom:244.260064px;}
.yff{bottom:246.060036px;}
.y144{bottom:247.680039px;}
.y11d{bottom:248.400055px;}
.y88{bottom:248.760064px;}
.y72{bottom:250.380066px;}
.yac{bottom:250.740074px;}
.y53{bottom:251.280052px;}
.yed{bottom:251.640060px;}
.y6c{bottom:253.260064px;}
.y168{bottom:253.620072px;}
.y12f{bottom:255.240074px;}
.y98{bottom:257.940033px;}
.ybf{bottom:259.740074px;}
.y163{bottom:260.280052px;}
.yab{bottom:261.000068px;}
.y1d{bottom:261.180039px;}
.ydb{bottom:267.840088px;}
.y3c{bottom:273.780052px;}
.y143{bottom:275.400055px;}
.yfe{bottom:276.120072px;}
.y71{bottom:278.100083px;}
.y112{bottom:278.640060px;}
.yec{bottom:278.820099px;}
.y87{bottom:279.000068px;}
.y1c{bottom:280.980079px;}
.y52{bottom:281.520058px;}
.y6b{bottom:283.680039px;}
.y12e{bottom:285.480079px;}
.y5e{bottom:285.660049px;}
.ybe{bottom:286.020058px;}
.y97{bottom:286.380066px;}
.y162{bottom:288.000068px;}
.yda{bottom:295.560036px;}
.y142{bottom:303.300041px;}
.y3b{bottom:304.200096px;}
.y70{bottom:305.640060px;}
.yeb{bottom:306.360077px;}
.y134{bottom:307.620072px;}
.y111{bottom:308.700096px;}
.y11c{bottom:308.880066px;}
.y86{bottom:309.240074px;}
.y1b{bottom:310.320099px;}
.y51{bottom:311.760064px;}
.ybd{bottom:312.300041px;}
.y5d{bottom:313.200096px;}
.y6a{bottom:313.740074px;}
.y167{bottom:314.100083px;}
.y12d{bottom:315.720085px;}
.y96{bottom:316.800041px;}
.yd9{bottom:322.740074px;}
.y141{bottom:331.020058px;}
.y3a{bottom:334.260064px;}
.y133{bottom:335.880066px;}
.yfd{bottom:336.600083px;}
.ybc{bottom:338.580093px;}
.y110{bottom:338.940033px;}
.y11b{bottom:339.120072px;}
.y85{bottom:339.300041px;}
.y1a{bottom:340.380066px;}
.y5c{bottom:340.920043px;}
.y50{bottom:342.000068px;}
.y69{bottom:343.080093px;}
.y161{bottom:343.620072px;}
.y12c{bottom:345.780052px;}
.y95{bottom:346.860077px;}
.yd8{bottom:350.460091px;}
.y140{bottom:358.560036px;}
.yea{bottom:361.980079px;}
.y39{bottom:364.680039px;}
.ybb{bottom:364.860077px;}
.yfc{bottom:366.840088px;}
.y5b{bottom:368.640060px;}
.y10f{bottom:369.180039px;}
.y11a{bottom:369.360077px;}
.y68{bottom:369.720085px;}
.y19{bottom:370.800041px;}
.y160{bottom:371.340088px;}
.y4f{bottom:372.060036px;}
.y12b{bottom:376.200096px;}
.y94{bottom:377.280052px;}
.yd7{bottom:378.000068px;}
.y13f{bottom:386.280052px;}
.ye9{bottom:389.700096px;}
.yba{bottom:391.140060px;}
.y67{bottom:391.860077px;}
.y38{bottom:394.740074px;}
.y5a{bottom:396.360077px;}
.yfb{bottom:397.080093px;}
.y15f{bottom:398.880066px;}
.y10e{bottom:399.420043px;}
.y119{bottom:399.600083px;}
.y84{bottom:399.780052px;}
.y18{bottom:400.860077px;}
.y4e{bottom:402.480079px;}
.yd6{bottom:405.720085px;}
.y12a{bottom:406.260064px;}
.y93{bottom:407.340088px;}
.y13e{bottom:414.000068px;}
.yb9{bottom:417.420043px;}
.y37{bottom:424.980079px;}
.y15e{bottom:426.600083px;}
.yfa{bottom:427.320099px;}
.y10d{bottom:429.660049px;}
.y118{bottom:429.840088px;}
.y83{bottom:430.200096px;}
.y17{bottom:431.100083px;}
.y4d{bottom:432.540047px;}
.yd5{bottom:433.440033px;}
.y129{bottom:436.680039px;}
.y92{bottom:437.580093px;}
.y13d{bottom:441.720085px;}
.yb8{bottom:443.700096px;}
.ye8{bottom:444.960091px;}
.yaa{bottom:452.880066px;}
.y15d{bottom:454.320099px;}
.y36{bottom:455.220085px;}
.yf9{bottom:457.380066px;}
.y10c{bottom:459.900055px;}
.y117{bottom:460.080093px;}
.y82{bottom:460.260064px;}
.y16{bottom:461.340088px;}
.y4c{bottom:462.960091px;}
.y128{bottom:466.740074px;}
.y91{bottom:467.820099px;}
.y13c{bottom:469.440033px;}
.yb7{bottom:469.980079px;}
.ye7{bottom:474.120072px;}
.y15c{bottom:482.040047px;}
.y35{bottom:485.460091px;}
.yf8{bottom:487.800041px;}
.y116{bottom:488.880066px;}
.yd4{bottom:489.060036px;}
.y10b{bottom:489.960091px;}
.y81{bottom:490.500068px;}
.y15{bottom:491.580093px;}
.y4b{bottom:493.020058px;}
.yb6{bottom:496.260064px;}
.y127{bottom:496.980079px;}
.y90{bottom:498.060036px;}
.ye6{bottom:504.360077px;}
.y15b{bottom:509.580093px;}
.y34{bottom:515.700096px;}
.y115{bottom:515.880066px;}
.yd3{bottom:516.600083px;}
.yf7{bottom:517.860077px;}
.yb3{bottom:518.940033px;}
.ya5{bottom:520.380066px;}
.y80{bottom:520.740074px;}
.y14{bottom:521.820099px;}
.yb5{bottom:522.000068px;}
.yb2{bottom:522.360077px;}
.y4a{bottom:523.080093px;}
.y13b{bottom:524.700096px;}
.y126{bottom:527.220085px;}
.y8f{bottom:528.300041px;}
.ye5{bottom:534.600083px;}
.y15a{bottom:537.300041px;}
.y114{bottom:538.200096px;}
.yd2{bottom:544.320099px;}
.y16b{bottom:545.220085px;}
.y33{bottom:545.940033px;}
.yf6{bottom:548.100083px;}
.yb1{bottom:549.900055px;}
.y10a{bottom:550.440033px;}
.y7f{bottom:550.980079px;}
.y13{bottom:552.060036px;}
.y13a{bottom:552.600083px;}
.y49{bottom:553.500068px;}
.y125{bottom:557.460091px;}
.y8e{bottom:558.540047px;}
.ye4{bottom:564.840088px;}
.y159{bottom:565.020058px;}
.yd1{bottom:572.040047px;}
.y32{bottom:576.000068px;}
.yb0{bottom:577.080093px;}
.yf5{bottom:578.340088px;}
.y139{bottom:579.780052px;}
.y109{bottom:580.860077px;}
.y7e{bottom:581.220085px;}
.y12{bottom:582.120072px;}
.y48{bottom:583.560036px;}
.y124{bottom:587.700096px;}
.y8d{bottom:588.600083px;}
.y158{bottom:592.920043px;}
.ye3{bottom:594.180039px;}
.yd0{bottom:601.200096px;}
.y31{bottom:606.420043px;}
.y138{bottom:607.860077px;}
.yf4{bottom:608.400055px;}
.y108{bottom:610.920043px;}
.y7d{bottom:611.460091px;}
.y11{bottom:612.540047px;}
.y47{bottom:613.980079px;}
.y123{bottom:617.940033px;}
.y8c{bottom:619.020058px;}
.y157{bottom:620.640060px;}
.ye2{bottom:620.820099px;}
.ycf{bottom:631.440033px;}
.y6f{bottom:636.120072px;}
.y30{bottom:636.480079px;}
.yf3{bottom:638.820099px;}
.y107{bottom:641.160049px;}
.y7c{bottom:641.520058px;}
.ye1{bottom:642.960091px;}
.y46{bottom:644.040047px;}
.y122{bottom:648.000068px;}
.y156{bottom:648.180039px;}
.y8b{bottom:649.080093px;}
.yce{bottom:661.500068px;}
.y10{bottom:662.760064px;}
.y2f{bottom:666.900055px;}
.yf2{bottom:668.880066px;}
.y106{bottom:671.400055px;}
.y7b{bottom:671.940033px;}
.y45{bottom:674.280052px;}
.y155{bottom:675.900055px;}
.y8a{bottom:678.420043px;}
.ycd{bottom:691.920078px;}
.y2e{bottom:696.960056px;}
.yf1{bottom:699.300076px;}
.y105{bottom:701.640060px;}
.y7a{bottom:702.000068px;}
.y154{bottom:703.620072px;}
.y44{bottom:704.520058px;}
.yf{bottom:704.700061px;}
.y89{bottom:706.140060px;}
.y121{bottom:706.500068px;}
.ycc{bottom:721.980079px;}
.y2d{bottom:727.200061px;}
.ye{bottom:728.100083px;}
.yf0{bottom:728.460056px;}
.y104{bottom:730.440067px;}
.y153{bottom:731.340054px;}
.y120{bottom:731.700061px;}
.y79{bottom:732.420078px;}
.y43{bottom:733.860077px;}
.yd{bottom:751.680073px;}
.ycb{bottom:752.400055px;}
.y11f{bottom:753.840054px;}
.yef{bottom:755.100083px;}
.y2c{bottom:757.080059px;}
.y59{bottom:757.440067px;}
.y103{bottom:757.620072px;}
.y152{bottom:759.060070px;}
.y42{bottom:761.580059px;}
.y78{bottom:762.480079px;}
.y113{bottom:764.100083px;}
.yc{bottom:775.080059px;}
.yee{bottom:777.600083px;}
.y102{bottom:779.760064px;}
.yca{bottom:782.460056px;}
.y151{bottom:786.600083px;}
.y2b{bottom:787.320065px;}
.y58{bottom:787.680073px;}
.y41{bottom:789.300076px;}
.y66{bottom:791.820065px;}
.y77{bottom:792.540081px;}
.yb{bottom:798.480079px;}
.yc9{bottom:812.700061px;}
.y150{bottom:814.320065px;}
.y2a{bottom:817.920078px;}
.y65{bottom:818.820065px;}
.y76{bottom:822.060070px;}
.ya{bottom:822.240074px;}
.ya4{bottom:822.960056px;}
.y14f{bottom:842.220051px;}
.yc8{bottom:842.940067px;}
.y9{bottom:845.640060px;}
.y29{bottom:847.800076px;}
.y40{bottom:848.160049px;}
.y75{bottom:849.780052px;}
.ya3{bottom:853.020058px;}
.y8{bottom:867.780052px;}
.y14e{bottom:869.940067px;}
.yc7{bottom:873.180073px;}
.y28{bottom:878.220051px;}
.ya2{bottom:883.440067px;}
.y7{bottom:886.680073px;}
.y14d{bottom:897.480079px;}
.yc6{bottom:903.420078px;}
.y6{bottom:905.400055px;}
.y57{bottom:908.280052px;}
.y27{bottom:908.640060px;}
.ya1{bottom:913.500068px;}
.y14c{bottom:925.200061px;}
.y5{bottom:926.100083px;}
.yc5{bottom:932.580059px;}
.ya9{bottom:938.340054px;}
.y26{bottom:938.700061px;}
.ya0{bottom:943.740074px;}
.y14b{bottom:952.920078px;}
.y4{bottom:953.100083px;}
.yc4{bottom:959.220051px;}
.ya8{bottom:968.760064px;}
.y25{bottom:969.120072px;}
.y9f{bottom:973.980079px;}
.y14a{bottom:980.640060px;}
.ye0{bottom:986.580059px;}
.y24{bottom:999.180073px;}
.y3{bottom:1000.620072px;}
.y101{bottom:1003.320065px;}
.y9e{bottom:1004.220068px;}
.y149{bottom:1008.360060px;}
.ydf{bottom:1012.860060px;}
.y23{bottom:1029.420061px;}
.y100{bottom:1030.500068px;}
.y9d{bottom:1034.460074px;}
.y148{bottom:1035.900072px;}
.yde{bottom:1039.140060px;}
.y2{bottom:1051.200061px;}
.y132{bottom:1059.300058px;}
.y22{bottom:1059.660067px;}
.y9c{bottom:1063.620072px;}
.ydd{bottom:1065.420061px;}
.y1{bottom:1081.440067px;}
.y131{bottom:1089.540064px;}
.y21{bottom:1089.900072px;}
.y9b{bottom:1091.520058px;}
.ydc{bottom:1091.700061px;}
.yc3{bottom:1092.960074px;}
.h15{height:16.200027px;}
.hd{height:33.927169px;}
.h16{height:40.729521px;}
.h12{height:42.094648px;}
.h14{height:51.664574px;}
.he{height:52.147420px;}
.ha{height:53.142328px;}
.h4{height:54.338660px;}
.hf{height:57.266525px;}
.h8{height:57.801727px;}
.h17{height:57.832222px;}
.h1b{height:57.832362px;}
.hc{height:59.063712px;}
.h18{height:60.567092px;}
.h6{height:62.246171px;}
.h7{height:62.827911px;}
.h10{height:63.022802px;}
.hb{height:65.960248px;}
.h9{height:71.101384px;}
.h19{height:71.101456px;}
.h5{height:73.508805px;}
.h1a{height:73.774549px;}
.h11{height:74.494427px;}
.h13{height:74.494702px;}
.h3{height:83.561178px;}
.h2{height:93.369461px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2{width:48.780018px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:124.200002px;}
.x1{left:127.260003px;}
.xa{left:154.259994px;}
.x4{left:158.939999px;}
.x13{left:167.759994px;}
.x10{left:169.020006px;}
.x7{left:175.860008px;}
.x15{left:187.020006px;}
.xb{left:196.919992px;}
.xc{left:198.360008px;}
.x1a{left:219.060001px;}
.x2{left:263.159998px;}
.x12{left:273.240006px;}
.x19{left:277.379998px;}
.x8{left:281.159998px;}
.x1c{left:294.839985px;}
.x17{left:300.959988px;}
.x5{left:308.160015px;}
.xf{left:366.660015px;}
.x3{left:446.759994px;}
.xd{left:550.800007px;}
.x16{left:597.779983px;}
.xe{left:599.580025px;}
.x11{left:631.259994px;}
.x1b{left:675.539978px;}
.x14{left:679.320030px;}
.x9{left:708.659981px;}
.x18{left:731.519989px;}
@media print{
.v7{vertical-align:-28.800048pt;}
.v3{vertical-align:-23.679928pt;}
.v4{vertical-align:-8.320068pt;}
.v5{vertical-align:-1.280032pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:23.679932pt;}
.v2{vertical-align:26.239988pt;}
.v1{vertical-align:28.799988pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.013384pt;}
.ls7{letter-spacing:0.250872pt;}
.ls10{letter-spacing:0.391968pt;}
.lse{letter-spacing:0.391972pt;}
.ls5{letter-spacing:0.460136pt;}
.ls3{letter-spacing:0.494300pt;}
.lsf{letter-spacing:0.513540pt;}
.lsb{letter-spacing:0.891008pt;}
.ls11{letter-spacing:1.066116pt;}
.ls9{letter-spacing:1.706132pt;}
.ls8{letter-spacing:2.986036pt;}
.ls12{letter-spacing:3.591924pt;}
.lsd{letter-spacing:4.266188pt;}
.lsa{letter-spacing:6.186232pt;}
.lsc{letter-spacing:6.860132pt;}
.ls6{letter-spacing:8.140128pt;}
.ls2{letter-spacing:9.351932pt;}
.ls1{letter-spacing:10.490988pt;}
.ws0{word-spacing:-23.360901pt;}
.ws1{word-spacing:-20.713301pt;}
.ws2{word-spacing:-18.221500pt;}
.ws3{word-spacing:-15.573900pt;}
.ws5{word-spacing:-14.328000pt;}
.ws6{word-spacing:-12.926400pt;}
.ws8{word-spacing:-10.434500pt;}
.ws7{word-spacing:-9.032880pt;}
.ws9{word-spacing:-8.409930pt;}
.wsa{word-spacing:-0.109900pt;}
.ws4{word-spacing:0.000000pt;}
._17{margin-left:-3.178746pt;}
._2{margin-left:-1.890196pt;}
._1{margin-left:-0.918740pt;}
._0{width:0.934436pt;}
._9{width:2.244146pt;}
._8{width:3.426636pt;}
._b{width:4.353879pt;}
._a{width:5.319460pt;}
._e{width:6.234184pt;}
._7{width:7.423151pt;}
._5{width:8.795815pt;}
._6{width:9.933260pt;}
._f{width:11.307431pt;}
._4{width:12.593359pt;}
._3{width:14.375726pt;}
._19{width:15.271762pt;}
._13{width:16.632925pt;}
._14{width:17.546432pt;}
._12{width:19.372383pt;}
._10{width:20.402537pt;}
._11{width:21.421568pt;}
._c{width:23.145979pt;}
._d{width:24.553466pt;}
._3b{width:25.493403pt;}
._1a{width:27.089582pt;}
._20{width:27.980215pt;}
._21{width:28.875227pt;}
._22{width:29.872444pt;}
._23{width:31.583869pt;}
._1c{width:33.476583pt;}
._1b{width:34.502272pt;}
._1d{width:35.767034pt;}
._18{width:38.541996pt;}
._16{width:41.790857pt;}
._15{width:43.800014pt;}
._25{width:45.712191pt;}
._24{width:46.696029pt;}
._43{width:50.165585pt;}
._31{width:52.394138pt;}
._1f{width:57.345290pt;}
._1e{width:58.767138pt;}
._3f{width:62.745409pt;}
._3d{width:74.051944pt;}
._3c{width:74.964096pt;}
._40{width:98.069724pt;}
._30{width:129.327121pt;}
._41{width:138.708672pt;}
._42{width:139.645424pt;}
._3a{width:168.198120pt;}
._2a{width:237.475718pt;}
._26{width:326.417518pt;}
._2f{width:332.462769pt;}
._37{width:362.520865pt;}
._2e{width:395.620554pt;}
._28{width:403.820736pt;}
._2d{width:423.726604pt;}
._2b{width:429.673536pt;}
._34{width:533.990826pt;}
._32{width:541.509014pt;}
._38{width:549.775244pt;}
._29{width:555.469930pt;}
._2c{width:561.120233pt;}
._33{width:590.075340pt;}
._35{width:629.420954pt;}
._36{width:631.632682pt;}
._27{width:651.215874pt;}
._39{width:655.743650pt;}
._3e{width:2002.481280pt;}
.fs7{font-size:33.639720pt;}
.fs6{font-size:36.131520pt;}
.fs5{font-size:41.738000pt;}
.fs8{font-size:51.705600pt;}
.fs2{font-size:57.312000pt;}
.fs4{font-size:62.295600pt;}
.fs3{font-size:72.886000pt;}
.fs1{font-size:82.853204pt;}
.fs0{font-size:93.443604pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:2.720031pt;}
.y64{bottom:142.400086pt;}
.y56{bottom:142.880066pt;}
.y16a{bottom:144.960083pt;}
.y147{bottom:146.400086pt;}
.y9a{bottom:148.320069pt;}
.y20{bottom:151.680054pt;}
.y63{bottom:157.280030pt;}
.y166{bottom:157.600037pt;}
.yc2{bottom:160.800049pt;}
.y3f{bottom:162.880066pt;}
.yaf{bottom:163.200074pt;}
.y137{bottom:164.960083pt;}
.ya7{bottom:167.360047pt;}
.y55{bottom:169.600037pt;}
.y146{bottom:171.040039pt;}
.y6e{bottom:171.520081pt;}
.y74{bottom:172.000061pt;}
.yae{bottom:172.320069pt;}
.y136{bottom:175.200074pt;}
.y62{bottom:178.240052pt;}
.y1f{bottom:178.400086pt;}
.y165{bottom:182.240052pt;}
.yc1{bottom:184.160035pt;}
.y61{bottom:187.200074pt;}
.y3e{bottom:189.920044pt;}
.y11e{bottom:194.080079pt;}
.ya6{bottom:194.240052pt;}
.y145{bottom:195.680054pt;}
.y135{bottom:196.000061pt;}
.y54{bottom:196.480042pt;}
.y73{bottom:197.920044pt;}
.y6d{bottom:198.400086pt;}
.y169{bottom:198.720032pt;}
.y130{bottom:200.000061pt;}
.yad{bottom:202.080079pt;}
.y99{bottom:204.640076pt;}
.y1e{bottom:205.120057pt;}
.y164{bottom:206.880066pt;}
.yc0{bottom:207.520081pt;}
.y60{bottom:208.000061pt;}
.y3d{bottom:216.640076pt;}
.y5f{bottom:217.120057pt;}
.yff{bottom:218.720032pt;}
.y144{bottom:220.160035pt;}
.y11d{bottom:220.800049pt;}
.y88{bottom:221.120057pt;}
.y72{bottom:222.560059pt;}
.yac{bottom:222.880066pt;}
.y53{bottom:223.360047pt;}
.yed{bottom:223.680054pt;}
.y6c{bottom:225.120057pt;}
.y168{bottom:225.440064pt;}
.y12f{bottom:226.880066pt;}
.y98{bottom:229.280030pt;}
.ybf{bottom:230.880066pt;}
.y163{bottom:231.360047pt;}
.yab{bottom:232.000061pt;}
.y1d{bottom:232.160035pt;}
.ydb{bottom:238.080079pt;}
.y3c{bottom:243.360047pt;}
.y143{bottom:244.800049pt;}
.yfe{bottom:245.440064pt;}
.y71{bottom:247.200074pt;}
.y112{bottom:247.680054pt;}
.yec{bottom:247.840088pt;}
.y87{bottom:248.000061pt;}
.y1c{bottom:249.760071pt;}
.y52{bottom:250.240052pt;}
.y6b{bottom:252.160035pt;}
.y12e{bottom:253.760071pt;}
.y5e{bottom:253.920044pt;}
.ybe{bottom:254.240052pt;}
.y97{bottom:254.560059pt;}
.y162{bottom:256.000061pt;}
.yda{bottom:262.720032pt;}
.y142{bottom:269.600037pt;}
.y3b{bottom:270.400086pt;}
.y70{bottom:271.680054pt;}
.yeb{bottom:272.320069pt;}
.y134{bottom:273.440064pt;}
.y111{bottom:274.400086pt;}
.y11c{bottom:274.560059pt;}
.y86{bottom:274.880066pt;}
.y1b{bottom:275.840088pt;}
.y51{bottom:277.120057pt;}
.ybd{bottom:277.600037pt;}
.y5d{bottom:278.400086pt;}
.y6a{bottom:278.880066pt;}
.y167{bottom:279.200074pt;}
.y12d{bottom:280.640076pt;}
.y96{bottom:281.600037pt;}
.yd9{bottom:286.880066pt;}
.y141{bottom:294.240052pt;}
.y3a{bottom:297.120057pt;}
.y133{bottom:298.560059pt;}
.yfd{bottom:299.200074pt;}
.ybc{bottom:300.960083pt;}
.y110{bottom:301.280030pt;}
.y11b{bottom:301.440064pt;}
.y85{bottom:301.600037pt;}
.y1a{bottom:302.560059pt;}
.y5c{bottom:303.040039pt;}
.y50{bottom:304.000061pt;}
.y69{bottom:304.960083pt;}
.y161{bottom:305.440064pt;}
.y12c{bottom:307.360047pt;}
.y95{bottom:308.320069pt;}
.yd8{bottom:311.520081pt;}
.y140{bottom:318.720032pt;}
.yea{bottom:321.760071pt;}
.y39{bottom:324.160035pt;}
.ybb{bottom:324.320069pt;}
.yfc{bottom:326.080079pt;}
.y5b{bottom:327.680054pt;}
.y10f{bottom:328.160035pt;}
.y11a{bottom:328.320069pt;}
.y68{bottom:328.640076pt;}
.y19{bottom:329.600037pt;}
.y160{bottom:330.080079pt;}
.y4f{bottom:330.720032pt;}
.y12b{bottom:334.400086pt;}
.y94{bottom:335.360047pt;}
.yd7{bottom:336.000061pt;}
.y13f{bottom:343.360047pt;}
.ye9{bottom:346.400086pt;}
.yba{bottom:347.680054pt;}
.y67{bottom:348.320069pt;}
.y38{bottom:350.880066pt;}
.y5a{bottom:352.320069pt;}
.yfb{bottom:352.960083pt;}
.y15f{bottom:354.560059pt;}
.y10e{bottom:355.040039pt;}
.y119{bottom:355.200074pt;}
.y84{bottom:355.360047pt;}
.y18{bottom:356.320069pt;}
.y4e{bottom:357.760071pt;}
.yd6{bottom:360.640076pt;}
.y12a{bottom:361.120057pt;}
.y93{bottom:362.080079pt;}
.y13e{bottom:368.000061pt;}
.yb9{bottom:371.040039pt;}
.y37{bottom:377.760071pt;}
.y15e{bottom:379.200074pt;}
.yfa{bottom:379.840088pt;}
.y10d{bottom:381.920044pt;}
.y118{bottom:382.080079pt;}
.y83{bottom:382.400086pt;}
.y17{bottom:383.200074pt;}
.y4d{bottom:384.480042pt;}
.yd5{bottom:385.280030pt;}
.y129{bottom:388.160035pt;}
.y92{bottom:388.960083pt;}
.y13d{bottom:392.640076pt;}
.yb8{bottom:394.400086pt;}
.ye8{bottom:395.520081pt;}
.yaa{bottom:402.560059pt;}
.y15d{bottom:403.840088pt;}
.y36{bottom:404.640076pt;}
.yf9{bottom:406.560059pt;}
.y10c{bottom:408.800049pt;}
.y117{bottom:408.960083pt;}
.y82{bottom:409.120057pt;}
.y16{bottom:410.080079pt;}
.y4c{bottom:411.520081pt;}
.y128{bottom:414.880066pt;}
.y91{bottom:415.840088pt;}
.y13c{bottom:417.280030pt;}
.yb7{bottom:417.760071pt;}
.ye7{bottom:421.440064pt;}
.y15c{bottom:428.480042pt;}
.y35{bottom:431.520081pt;}
.yf8{bottom:433.600037pt;}
.y116{bottom:434.560059pt;}
.yd4{bottom:434.720032pt;}
.y10b{bottom:435.520081pt;}
.y81{bottom:436.000061pt;}
.y15{bottom:436.960083pt;}
.y4b{bottom:438.240052pt;}
.yb6{bottom:441.120057pt;}
.y127{bottom:441.760071pt;}
.y90{bottom:442.720032pt;}
.ye6{bottom:448.320069pt;}
.y15b{bottom:452.960083pt;}
.y34{bottom:458.400086pt;}
.y115{bottom:458.560059pt;}
.yd3{bottom:459.200074pt;}
.yf7{bottom:460.320069pt;}
.yb3{bottom:461.280030pt;}
.ya5{bottom:462.560059pt;}
.y80{bottom:462.880066pt;}
.y14{bottom:463.840088pt;}
.yb5{bottom:464.000061pt;}
.yb2{bottom:464.320069pt;}
.y4a{bottom:464.960083pt;}
.y13b{bottom:466.400086pt;}
.y126{bottom:468.640076pt;}
.y8f{bottom:469.600037pt;}
.ye5{bottom:475.200074pt;}
.y15a{bottom:477.600037pt;}
.y114{bottom:478.400086pt;}
.yd2{bottom:483.840088pt;}
.y16b{bottom:484.640076pt;}
.y33{bottom:485.280030pt;}
.yf6{bottom:487.200074pt;}
.yb1{bottom:488.800049pt;}
.y10a{bottom:489.280030pt;}
.y7f{bottom:489.760071pt;}
.y13{bottom:490.720032pt;}
.y13a{bottom:491.200074pt;}
.y49{bottom:492.000061pt;}
.y125{bottom:495.520081pt;}
.y8e{bottom:496.480042pt;}
.ye4{bottom:502.080079pt;}
.y159{bottom:502.240052pt;}
.yd1{bottom:508.480042pt;}
.y32{bottom:512.000061pt;}
.yb0{bottom:512.960083pt;}
.yf5{bottom:514.080079pt;}
.y139{bottom:515.360047pt;}
.y109{bottom:516.320069pt;}
.y7e{bottom:516.640076pt;}
.y12{bottom:517.440064pt;}
.y48{bottom:518.720032pt;}
.y124{bottom:522.400086pt;}
.y8d{bottom:523.200074pt;}
.y158{bottom:527.040039pt;}
.ye3{bottom:528.160035pt;}
.yd0{bottom:534.400086pt;}
.y31{bottom:539.040039pt;}
.y138{bottom:540.320069pt;}
.yf4{bottom:540.800049pt;}
.y108{bottom:543.040039pt;}
.y7d{bottom:543.520081pt;}
.y11{bottom:544.480042pt;}
.y47{bottom:545.760071pt;}
.y123{bottom:549.280030pt;}
.y8c{bottom:550.240052pt;}
.y157{bottom:551.680054pt;}
.ye2{bottom:551.840088pt;}
.ycf{bottom:561.280030pt;}
.y6f{bottom:565.440064pt;}
.y30{bottom:565.760071pt;}
.yf3{bottom:567.840088pt;}
.y107{bottom:569.920044pt;}
.y7c{bottom:570.240052pt;}
.ye1{bottom:571.520081pt;}
.y46{bottom:572.480042pt;}
.y122{bottom:576.000061pt;}
.y156{bottom:576.160035pt;}
.y8b{bottom:576.960083pt;}
.yce{bottom:588.000061pt;}
.y10{bottom:589.120057pt;}
.y2f{bottom:592.800049pt;}
.yf2{bottom:594.560059pt;}
.y106{bottom:596.800049pt;}
.y7b{bottom:597.280030pt;}
.y45{bottom:599.360047pt;}
.y155{bottom:600.800049pt;}
.y8a{bottom:603.040039pt;}
.ycd{bottom:615.040070pt;}
.y2e{bottom:619.520050pt;}
.yf1{bottom:621.600068pt;}
.y105{bottom:623.680054pt;}
.y7a{bottom:624.000061pt;}
.y154{bottom:625.440064pt;}
.y44{bottom:626.240052pt;}
.yf{bottom:626.400055pt;}
.y89{bottom:627.680054pt;}
.y121{bottom:628.000061pt;}
.ycc{bottom:641.760071pt;}
.y2d{bottom:646.400055pt;}
.ye{bottom:647.200074pt;}
.yf0{bottom:647.520050pt;}
.y104{bottom:649.280060pt;}
.y153{bottom:650.080048pt;}
.y120{bottom:650.400055pt;}
.y79{bottom:651.040070pt;}
.y43{bottom:652.320069pt;}
.yd{bottom:668.160065pt;}
.ycb{bottom:668.800049pt;}
.y11f{bottom:670.080048pt;}
.yef{bottom:671.200074pt;}
.y2c{bottom:672.960053pt;}
.y59{bottom:673.280060pt;}
.y103{bottom:673.440064pt;}
.y152{bottom:674.720063pt;}
.y42{bottom:676.960053pt;}
.y78{bottom:677.760071pt;}
.y113{bottom:679.200074pt;}
.yc{bottom:688.960053pt;}
.yee{bottom:691.200074pt;}
.y102{bottom:693.120057pt;}
.yca{bottom:695.520050pt;}
.y151{bottom:699.200074pt;}
.y2b{bottom:699.840058pt;}
.y58{bottom:700.160065pt;}
.y41{bottom:701.600068pt;}
.y66{bottom:703.840058pt;}
.y77{bottom:704.480072pt;}
.yb{bottom:709.760071pt;}
.yc9{bottom:722.400055pt;}
.y150{bottom:723.840058pt;}
.y2a{bottom:727.040070pt;}
.y65{bottom:727.840058pt;}
.y76{bottom:730.720063pt;}
.ya{bottom:730.880066pt;}
.ya4{bottom:731.520050pt;}
.y14f{bottom:748.640046pt;}
.yc8{bottom:749.280060pt;}
.y9{bottom:751.680054pt;}
.y29{bottom:753.600068pt;}
.y40{bottom:753.920044pt;}
.y75{bottom:755.360047pt;}
.ya3{bottom:758.240052pt;}
.y8{bottom:771.360047pt;}
.y14e{bottom:773.280060pt;}
.yc7{bottom:776.160065pt;}
.y28{bottom:780.640046pt;}
.ya2{bottom:785.280060pt;}
.y7{bottom:788.160065pt;}
.y14d{bottom:797.760071pt;}
.yc6{bottom:803.040070pt;}
.y6{bottom:804.800049pt;}
.y57{bottom:807.360047pt;}
.y27{bottom:807.680054pt;}
.ya1{bottom:812.000061pt;}
.y14c{bottom:822.400055pt;}
.y5{bottom:823.200074pt;}
.yc5{bottom:828.960053pt;}
.ya9{bottom:834.080048pt;}
.y26{bottom:834.400055pt;}
.ya0{bottom:838.880066pt;}
.y14b{bottom:847.040070pt;}
.y4{bottom:847.200074pt;}
.yc4{bottom:852.640046pt;}
.ya8{bottom:861.120057pt;}
.y25{bottom:861.440064pt;}
.y9f{bottom:865.760071pt;}
.y14a{bottom:871.680054pt;}
.ye0{bottom:876.960053pt;}
.y24{bottom:888.160065pt;}
.y3{bottom:889.440064pt;}
.y101{bottom:891.840058pt;}
.y9e{bottom:892.640061pt;}
.y149{bottom:896.320054pt;}
.ydf{bottom:900.320054pt;}
.y23{bottom:915.040055pt;}
.y100{bottom:916.000061pt;}
.y9d{bottom:919.520066pt;}
.y148{bottom:920.800064pt;}
.yde{bottom:923.680054pt;}
.y2{bottom:934.400055pt;}
.y132{bottom:941.600052pt;}
.y22{bottom:941.920060pt;}
.y9c{bottom:945.440064pt;}
.ydd{bottom:947.040055pt;}
.y1{bottom:961.280060pt;}
.y131{bottom:968.480057pt;}
.y21{bottom:968.800064pt;}
.y9b{bottom:970.240052pt;}
.ydc{bottom:970.400055pt;}
.yc3{bottom:971.520066pt;}
.h15{height:14.400024pt;}
.hd{height:30.157483pt;}
.h16{height:36.204019pt;}
.h12{height:37.417465pt;}
.h14{height:45.924066pt;}
.he{height:46.353263pt;}
.ha{height:47.237625pt;}
.h4{height:48.301031pt;}
.hf{height:50.903578pt;}
.h8{height:51.379313pt;}
.h17{height:51.406420pt;}
.h1b{height:51.406544pt;}
.hc{height:52.501077pt;}
.h18{height:53.837415pt;}
.h6{height:55.329930pt;}
.h7{height:55.847032pt;}
.h10{height:56.020268pt;}
.hb{height:58.631331pt;}
.h9{height:63.201230pt;}
.h19{height:63.201294pt;}
.h5{height:65.341160pt;}
.h1a{height:65.577377pt;}
.h11{height:66.217269pt;}
.h13{height:66.217513pt;}
.h3{height:74.276603pt;}
.h2{height:82.995076pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2{width:43.360016pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:110.400002pt;}
.x1{left:113.120003pt;}
.xa{left:137.119995pt;}
.x4{left:141.279999pt;}
.x13{left:149.119995pt;}
.x10{left:150.240005pt;}
.x7{left:156.320007pt;}
.x15{left:166.240005pt;}
.xb{left:175.039993pt;}
.xc{left:176.320007pt;}
.x1a{left:194.720001pt;}
.x2{left:233.919998pt;}
.x12{left:242.880005pt;}
.x19{left:246.559998pt;}
.x8{left:249.919998pt;}
.x1c{left:262.079987pt;}
.x17{left:267.519989pt;}
.x5{left:273.920013pt;}
.xf{left:325.920013pt;}
.x3{left:397.119995pt;}
.xd{left:489.600006pt;}
.x16{left:531.359985pt;}
.xe{left:532.960022pt;}
.x11{left:561.119995pt;}
.x1b{left:600.479980pt;}
.x14{left:603.840027pt;}
.x9{left:629.919983pt;}
.x18{left:650.239990pt;}
}




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