
    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_08d5e7aa6dbcc408634154e3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_54d5cfc6b749ca073e93cc67.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.102051;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_848ef9c47f3df53284efcb92.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3aef6e771612947549794a55.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_06f22d77a1eca0c1a3674394.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.095703;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);}
.v4{vertical-align:-27.360076px;}
.v5{vertical-align:-23.760135px;}
.v3{vertical-align:-20.880068px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.759996px;}
.v2{vertical-align:27.359937px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.359046px;}
.ls2{letter-spacing:0.359109px;}
.ls1{letter-spacing:0.359113px;}
.ls3{letter-spacing:0.359176px;}
.lsa{letter-spacing:0.502788px;}
.ls7{letter-spacing:7.919369px;}
.lsb{letter-spacing:8.639315px;}
.ls9{letter-spacing:11.519310px;}
.ls4{letter-spacing:11.519315px;}
.ls6{letter-spacing:12.959346px;}
.ls8{letter-spacing:16.019460px;}
.lsc{letter-spacing:845.999324px;}
.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:-18.000676px;}
.ws6{word-spacing:-16.560675px;}
.ws2{word-spacing:-14.940563px;}
.ws4{word-spacing:-12.060450px;}
.ws5{word-spacing:-10.440405px;}
.ws1{word-spacing:-9.720371px;}
.ws0{word-spacing:0.000000px;}
._6{margin-left:-16.224234px;}
._2{margin-left:-14.218003px;}
._4{margin-left:-12.465851px;}
._3{margin-left:-10.457209px;}
._5{margin-left:-5.795124px;}
._17{margin-left:-4.485274px;}
._9{margin-left:-3.378151px;}
._1{margin-left:-1.480063px;}
._0{width:1.101045px;}
._a{width:2.135540px;}
._10{width:3.170722px;}
._8{width:4.191626px;}
._12{width:5.405988px;}
._7{width:6.540714px;}
._d{width:8.113242px;}
._e{width:9.134590px;}
._11{width:10.200758px;}
._13{width:11.581466px;}
._14{width:12.769230px;}
._16{width:14.460449px;}
._c{width:15.548787px;}
._b{width:16.681564px;}
._26{width:17.926448px;}
._f{width:19.621581px;}
._15{width:21.135888px;}
._19{width:22.632272px;}
._18{width:23.955558px;}
._1a{width:25.211916px;}
._1e{width:26.223891px;}
._1f{width:27.295897px;}
._20{width:28.382885px;}
._1d{width:29.517963px;}
._25{width:30.690362px;}
._24{width:31.692722px;}
._21{width:32.900494px;}
._22{width:34.488170px;}
._1b{width:36.315239px;}
._1c{width:37.348961px;}
._28{width:39.384706px;}
._29{width:40.392955px;}
._23{width:41.479183px;}
._30{width:78.905120px;}
._2f{width:79.946628px;}
._2b{width:82.106709px;}
._2c{width:83.793402px;}
._2e{width:85.003200px;}
._2d{width:86.201135px;}
._33{width:119.656288px;}
._32{width:120.951887px;}
._2a{width:193.404066px;}
._27{width:194.407302px;}
._31{width:1425.653549px;}
.fc8{color:transparent;}
.fc6{color:rgb(78,167,46);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(15,71,97);}
.fc5{color:rgb(58,124,34);}
.fc4{color:rgb(255,0,0);}
.fc1{color:rgb(46,116,181);}
.fc7{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.881485px;}
.fsa{font-size:41.761620px;}
.fs7{font-size:48.241800px;}
.fs9{font-size:59.762250px;}
.fs6{font-size:66.242700px;}
.fs0{font-size:72.002705px;}
.fsb{font-size:84.243145px;}
.fs5{font-size:95.763600px;}
.fs4{font-size:120.244505px;}
.fs3{font-size:131.764946px;}
.fs1{font-size:144.005409px;}
.fs2{font-size:156.245841px;}
.y0{bottom:0.000000px;}
.y17a{bottom:4.319961px;}
.y178{bottom:4.320030px;}
.y1f{bottom:57.600083px;}
.y1e{bottom:78.300110px;}
.y6c{bottom:109.980011px;}
.y8f{bottom:115.200096px;}
.y17c{bottom:115.740074px;}
.y1d{bottom:117.360077px;}
.y6b{bottom:127.260064px;}
.y175{bottom:130.320099px;}
.y73{bottom:132.480079px;}
.y1c{bottom:144.540047px;}
.y72{bottom:145.260064px;}
.y17b{bottom:146.700096px;}
.y8e{bottom:149.760064px;}
.y56{bottom:157.140060px;}
.y174{bottom:161.460091px;}
.y8d{bottom:161.820099px;}
.y10b{bottom:162.540047px;}
.y6a{bottom:167.040047px;}
.y1b{bottom:171.720085px;}
.y71{bottom:177.840088px;}
.y91{bottom:179.100083px;}
.y10d{bottom:179.820099px;}
.y69{bottom:184.320099px;}
.y55{bottom:188.100083px;}
.y173{bottom:192.420043px;}
.y68{bottom:196.380066px;}
.y11f{bottom:196.740074px;}
.yf6{bottom:197.100083px;}
.y1a{bottom:199.080093px;}
.y8c{bottom:201.600083px;}
.y17e{bottom:208.440033px;}
.y70{bottom:208.800041px;}
.y90{bottom:213.480079px;}
.y35{bottom:213.840088px;}
.y8b{bottom:214.380066px;}
.y67{bottom:218.700096px;}
.y54{bottom:218.880066px;}
.y172{bottom:223.560036px;}
.y19{bottom:226.260064px;}
.y11e{bottom:227.880066px;}
.y66{bottom:230.760064px;}
.y93{bottom:231.480079px;}
.y94{bottom:235.980079px;}
.y6f{bottom:239.940033px;}
.y153{bottom:243.900055px;}
.y34{bottom:244.800041px;}
.yf0{bottom:248.760064px;}
.yca{bottom:249.120072px;}
.y53{bottom:250.200096px;}
.y135{bottom:252.720085px;}
.y65{bottom:253.260064px;}
.y18{bottom:253.440033px;}
.y171{bottom:254.520058px;}
.yfb{bottom:257.220085px;}
.yf2{bottom:258.840088px;}
.y150{bottom:263.160049px;}
.y64{bottom:266.040047px;}
.ye4{bottom:270.180039px;}
.y6e{bottom:270.900055px;}
.y8a{bottom:274.860077px;}
.yc9{bottom:280.080093px;}
.y17{bottom:280.620072px;}
.y52{bottom:281.160049px;}
.y134{bottom:283.860077px;}
.y170{bottom:285.660049px;}
.y33{bottom:286.380066px;}
.yfa{bottom:288.360077px;}
.yef{bottom:289.980079px;}
.y129{bottom:292.680039px;}
.y14f{bottom:294.300041px;}
.ye3{bottom:301.320099px;}
.y63{bottom:301.860077px;}
.y89{bottom:306.000068px;}
.y16{bottom:307.800041px;}
.yc8{bottom:311.220085px;}
.y51{bottom:312.300041px;}
.yae{bottom:313.740074px;}
.y133{bottom:314.820099px;}
.y16f{bottom:316.620072px;}
.yf9{bottom:319.320099px;}
.yf1{bottom:320.580093px;}
.yee{bottom:320.940033px;}
.y128{bottom:323.640060px;}
.y14e{bottom:325.260064px;}
.y32{bottom:327.780052px;}
.y10a{bottom:331.920043px;}
.ye2{bottom:332.280052px;}
.y62{bottom:333.000068px;}
.y15{bottom:334.980079px;}
.y92{bottom:336.600083px;}
.y88{bottom:336.960091px;}
.yad{bottom:342.180039px;}
.y50{bottom:343.260064px;}
.y132{bottom:345.960091px;}
.y16e{bottom:347.760064px;}
.yf8{bottom:350.100083px;}
.yed{bottom:352.080093px;}
.y127{bottom:354.780052px;}
.y14d{bottom:356.400055px;}
.y109{bottom:360.360077px;}
.y14{bottom:362.340088px;}
.ye1{bottom:363.240074px;}
.y61{bottom:363.960091px;}
.y87{bottom:368.100083px;}
.y31{bottom:369.180039px;}
.yac{bottom:371.880066px;}
.yc7{bottom:373.320099px;}
.y4f{bottom:374.400055px;}
.y131{bottom:376.920043px;}
.y16d{bottom:378.720085px;}
.yf7{bottom:382.860077px;}
.yec{bottom:383.040047px;}
.y126{bottom:385.740074px;}
.y14c{bottom:387.360077px;}
.y108{bottom:388.800041px;}
.y13{bottom:389.520058px;}
.ye0{bottom:394.380066px;}
.y60{bottom:395.100083px;}
.y86{bottom:399.060036px;}
.yab{bottom:402.840088px;}
.yc6{bottom:403.920043px;}
.y4e{bottom:405.360077px;}
.y130{bottom:408.060036px;}
.y16c{bottom:409.860077px;}
.yeb{bottom:414.180039px;}
.y12{bottom:416.700096px;}
.y125{bottom:416.880066px;}
.y107{bottom:417.240074px;}
.y30{bottom:418.140060px;}
.y14b{bottom:418.500068px;}
.ydf{bottom:425.340088px;}
.y5f{bottom:426.060036px;}
.y85{bottom:430.200096px;}
.yaa{bottom:433.980079px;}
.yf5{bottom:435.420043px;}
.y4d{bottom:436.500068px;}
.y12f{bottom:439.020058px;}
.y16b{bottom:440.820099px;}
.y11{bottom:443.880066px;}
.y10c{bottom:444.780052px;}
.yea{bottom:445.140060px;}
.y106{bottom:445.680039px;}
.y124{bottom:447.840088px;}
.y14a{bottom:449.460091px;}
.yde{bottom:456.480079px;}
.y5e{bottom:457.200096px;}
.y84{bottom:461.160049px;}
.yc5{bottom:462.420043px;}
.yf4{bottom:463.860077px;}
.ya9{bottom:464.940033px;}
.y2f{bottom:466.920043px;}
.y4c{bottom:467.460091px;}
.y12e{bottom:470.160049px;}
.y10{bottom:471.060036px;}
.y16a{bottom:471.960091px;}
.y105{bottom:475.380066px;}
.ye9{bottom:476.280052px;}
.y123{bottom:478.980079px;}
.y149{bottom:480.600083px;}
.y179{bottom:483.840088px;}
.ydd{bottom:486.360077px;}
.y5d{bottom:488.160049px;}
.y83{bottom:492.300041px;}
.yc4{bottom:493.380066px;}
.ya8{bottom:496.080093px;}
.y4b{bottom:498.600083px;}
.y12d{bottom:500.040047px;}
.yf{bottom:502.020058px;}
.y169{bottom:502.920043px;}
.y104{bottom:506.340088px;}
.ye8{bottom:507.240074px;}
.y122{bottom:509.940033px;}
.y148{bottom:511.560036px;}
.ydc{bottom:514.800041px;}
.y2e{bottom:515.880066px;}
.y17d{bottom:518.940033px;}
.y154{bottom:519.120072px;}
.y5c{bottom:519.300041px;}
.yf3{bottom:520.740074px;}
.y82{bottom:523.260064px;}
.yc3{bottom:524.520058px;}
.ya7{bottom:527.040047px;}
.y12c{bottom:528.480079px;}
.y4a{bottom:529.560036px;}
.y168{bottom:534.060036px;}
.y103{bottom:537.300041px;}
.ye7{bottom:538.380066px;}
.y121{bottom:541.080093px;}
.y147{bottom:542.700096px;}
.ye{bottom:542.880066px;}
.ydb{bottom:543.240074px;}
.y5b{bottom:550.260064px;}
.y81{bottom:554.400055px;}
.yc2{bottom:555.480079px;}
.y12b{bottom:556.920043px;}
.y2d{bottom:557.280052px;}
.ya6{bottom:558.000068px;}
.y49{bottom:560.700096px;}
.y167{bottom:565.020058px;}
.y120{bottom:567.360077px;}
.y102{bottom:568.440033px;}
.ye6{bottom:569.340088px;}
.yda{bottom:571.680039px;}
.y146{bottom:573.660049px;}
.y5a{bottom:581.400055px;}
.yd{bottom:581.940033px;}
.y80{bottom:585.360077px;}
.yc1{bottom:586.620072px;}
.ya5{bottom:589.140060px;}
.y48{bottom:591.660049px;}
.y166{bottom:596.160049px;}
.y101{bottom:598.320099px;}
.ye5{bottom:599.940033px;}
.yd9{bottom:600.120072px;}
.y11d{bottom:600.480079px;}
.y145{bottom:604.800041px;}
.y2c{bottom:606.060036px;}
.y59{bottom:612.360077px;}
.y12a{bottom:613.800041px;}
.y152{bottom:616.140060px;}
.y7f{bottom:616.500068px;}
.yc{bottom:616.860077px;}
.yc0{bottom:617.580093px;}
.ya4{bottom:620.100083px;}
.y47{bottom:622.440033px;}
.y100{bottom:626.760064px;}
.y165{bottom:627.120072px;}
.yd8{bottom:629.820099px;}
.y11c{bottom:631.440033px;}
.y144{bottom:635.760064px;}
.y58{bottom:643.500068px;}
.y46{bottom:643.680039px;}
.y7e{bottom:647.460091px;}
.ybf{bottom:648.720085px;}
.ya3{bottom:651.240074px;}
.yb{bottom:654.120072px;}
.y2b{bottom:655.020058px;}
.yff{bottom:655.200096px;}
.y164{bottom:658.080093px;}
.yd7{bottom:660.780052px;}
.y11b{bottom:662.580093px;}
.y143{bottom:666.900055px;}
.y177{bottom:670.140060px;}
.y45{bottom:674.460091px;}
.y7d{bottom:678.600083px;}
.ybe{bottom:679.680039px;}
.ya2{bottom:682.200096px;}
.yfe{bottom:683.640060px;}
.y163{bottom:689.220051px;}
.yd6{bottom:691.920078px;}
.ya{bottom:692.460056px;}
.y151{bottom:693.360077px;}
.y11a{bottom:693.540081px;}
.y142{bottom:697.860077px;}
.y2a{bottom:703.980079px;}
.y44{bottom:705.600083px;}
.y7c{bottom:709.560070px;}
.ybd{bottom:710.820065px;}
.yfd{bottom:712.260064px;}
.ya1{bottom:713.340054px;}
.y162{bottom:720.180073px;}
.yd5{bottom:722.880066px;}
.y119{bottom:724.680073px;}
.y141{bottom:729.000068px;}
.y9{bottom:733.320065px;}
.y43{bottom:736.200061px;}
.y57{bottom:736.560070px;}
.y7b{bottom:740.700061px;}
.ybc{bottom:741.780052px;}
.ya0{bottom:744.300076px;}
.y29{bottom:745.380066px;}
.y161{bottom:751.320065px;}
.yd4{bottom:754.020058px;}
.y118{bottom:755.640060px;}
.y140{bottom:759.960056px;}
.y42{bottom:767.700061px;}
.yfc{bottom:769.140060px;}
.y7a{bottom:771.660049px;}
.ybb{bottom:772.920078px;}
.y8{bottom:774.180073px;}
.y9f{bottom:775.440067px;}
.y160{bottom:782.280052px;}
.yd3{bottom:784.980079px;}
.y117{bottom:786.780052px;}
.y13f{bottom:791.100083px;}
.y28{bottom:794.160049px;}
.y41{bottom:798.660049px;}
.y79{bottom:802.800076px;}
.yba{bottom:803.880066px;}
.y9e{bottom:806.400055px;}
.y15f{bottom:813.420078px;}
.y7{bottom:814.860077px;}
.yd2{bottom:816.120072px;}
.y116{bottom:817.740074px;}
.y13e{bottom:822.060070px;}
.y40{bottom:829.800076px;}
.y78{bottom:833.760064px;}
.yb9{bottom:834.840054px;}
.y9d{bottom:837.540081px;}
.y27{bottom:843.120072px;}
.y15e{bottom:844.380066px;}
.yd1{bottom:847.080059px;}
.y115{bottom:848.880066px;}
.y13d{bottom:853.200061px;}
.y6{bottom:856.800076px;}
.y3f{bottom:860.760064px;}
.y77{bottom:864.900055px;}
.yb8{bottom:865.980079px;}
.y9c{bottom:868.500068px;}
.y15d{bottom:875.520058px;}
.yd0{bottom:878.220051px;}
.y114{bottom:879.840054px;}
.y13c{bottom:884.160049px;}
.y3e{bottom:891.900055px;}
.y26{bottom:892.080059px;}
.y76{bottom:895.860077px;}
.yb7{bottom:896.940067px;}
.y5{bottom:897.120072px;}
.y9b{bottom:899.640060px;}
.y15c{bottom:906.480079px;}
.ycf{bottom:909.180073px;}
.y113{bottom:910.980079px;}
.y13b{bottom:915.300076px;}
.y3d{bottom:922.860077px;}
.y75{bottom:927.000068px;}
.yb6{bottom:928.080059px;}
.y9a{bottom:930.600083px;}
.y25{bottom:933.480079px;}
.y4{bottom:934.740074px;}
.y15b{bottom:937.620072px;}
.yce{bottom:940.320065px;}
.y112{bottom:941.940067px;}
.y13a{bottom:946.260064px;}
.y3c{bottom:954.000068px;}
.y3{bottom:955.440067px;}
.y74{bottom:957.600083px;}
.yb5{bottom:959.040081px;}
.y99{bottom:961.740074px;}
.y15a{bottom:968.580059px;}
.ycd{bottom:971.280053px;}
.y2{bottom:971.820065px;}
.y111{bottom:972.900055px;}
.y24{bottom:974.880066px;}
.y139{bottom:977.400072px;}
.y3b{bottom:984.960074px;}
.yb4{bottom:990.180073px;}
.y98{bottom:992.700061px;}
.y159{bottom:999.720068px;}
.ycc{bottom:1002.060070px;}
.y110{bottom:1004.040064px;}
.y138{bottom:1008.360060px;}
.y17f{bottom:1015.740074px;}
.y3a{bottom:1016.100065px;}
.y23{bottom:1016.280069px;}
.yb3{bottom:1021.140060px;}
.y97{bottom:1022.580059px;}
.y158{bottom:1030.680073px;}
.ycb{bottom:1034.820065px;}
.y10f{bottom:1035.000068px;}
.y137{bottom:1039.500068px;}
.y176{bottom:1046.700061px;}
.y39{bottom:1047.060070px;}
.y96{bottom:1051.200061px;}
.yb2{bottom:1052.280069px;}
.y22{bottom:1057.680073px;}
.y157{bottom:1061.820065px;}
.y10e{bottom:1065.780069px;}
.y136{bottom:1065.960074px;}
.y38{bottom:1078.200061px;}
.y95{bottom:1079.640060px;}
.yb1{bottom:1083.240074px;}
.y156{bottom:1092.780069px;}
.y21{bottom:1099.080059px;}
.y37{bottom:1109.160067px;}
.yb0{bottom:1113.120072px;}
.y155{bottom:1113.660067px;}
.y20{bottom:1135.080068px;}
.y36{bottom:1139.940067px;}
.y6d{bottom:1140.300067px;}
.y1{bottom:1140.480063px;}
.yaf{bottom:1141.740066px;}
.h1f{height:20.519989px;}
.hf{height:34.856644px;}
.h10{height:53.575923px;}
.h16{height:58.285813px;}
.h1b{height:59.385546px;}
.h1d{height:61.198500px;}
.h1c{height:61.198775px;}
.ha{height:63.951621px;}
.h17{height:64.105305px;}
.h19{height:64.105408px;}
.h2{height:64.549300px;}
.h1e{height:69.806933px;}
.h13{height:69.807207px;}
.he{height:70.607822px;}
.hc{height:70.607957px;}
.h15{height:70.607961px;}
.h14{height:70.608024px;}
.h12{height:70.608029px;}
.hd{height:70.608096px;}
.h11{height:70.608101px;}
.h1a{height:74.823380px;}
.h18{height:85.055658px;}
.h9{height:85.850571px;}
.h8{height:88.562626px;}
.hb{height:106.799196px;}
.h7{height:111.202681px;}
.h6{height:121.856839px;}
.h3{height:129.098599px;}
.h5{height:133.176877px;}
.h4{height:144.496886px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w3{width:123.120003px;}
.w2{width:132.300042px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620002px;}
.xb{left:145.620002px;}
.xc{left:163.620002px;}
.xd{left:180.719999px;}
.xf{left:185.219999px;}
.x6{left:191.159998px;}
.x4{left:202.860008px;}
.x8{left:212.580008px;}
.x5{left:312.300007px;}
.x7{left:342.899987px;}
.x9{left:352.259994px;}
.x3{left:446.399987px;}
.x2{left:583.740006px;}
.xe{left:747.360008px;}
.xa{left:756.360008px;}
.x10{left:760.679970px;}
.x11{left:769.860008px;}
@media print{
.v4{vertical-align:-24.320068pt;}
.v5{vertical-align:-21.120120pt;}
.v3{vertical-align:-18.560060pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.119996pt;}
.v2{vertical-align:24.319944pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.319152pt;}
.ls2{letter-spacing:0.319208pt;}
.ls1{letter-spacing:0.319212pt;}
.ls3{letter-spacing:0.319268pt;}
.lsa{letter-spacing:0.446923pt;}
.ls7{letter-spacing:7.039439pt;}
.lsb{letter-spacing:7.679391pt;}
.ls9{letter-spacing:10.239387pt;}
.ls4{letter-spacing:10.239391pt;}
.ls6{letter-spacing:11.519419pt;}
.ls8{letter-spacing:14.239520pt;}
.lsc{letter-spacing:751.999399pt;}
.ws3{word-spacing:-16.000601pt;}
.ws6{word-spacing:-14.720600pt;}
.ws2{word-spacing:-13.280500pt;}
.ws4{word-spacing:-10.720400pt;}
.ws5{word-spacing:-9.280360pt;}
.ws1{word-spacing:-8.640330pt;}
.ws0{word-spacing:0.000000pt;}
._6{margin-left:-14.421542pt;}
._2{margin-left:-12.638225pt;}
._4{margin-left:-11.080757pt;}
._3{margin-left:-9.295297pt;}
._5{margin-left:-5.151221pt;}
._17{margin-left:-3.986910pt;}
._9{margin-left:-3.002801pt;}
._1{margin-left:-1.315612pt;}
._0{width:0.978707pt;}
._a{width:1.898258pt;}
._10{width:2.818419pt;}
._8{width:3.725890pt;}
._12{width:4.805323pt;}
._7{width:5.813968pt;}
._d{width:7.211771pt;}
._e{width:8.119635pt;}
._11{width:9.067341pt;}
._13{width:10.294637pt;}
._14{width:11.350426pt;}
._16{width:12.853733pt;}
._c{width:13.821144pt;}
._b{width:14.828057pt;}
._26{width:15.934620pt;}
._f{width:17.441405pt;}
._15{width:18.787456pt;}
._19{width:20.117575pt;}
._18{width:21.293829pt;}
._1a{width:22.410592pt;}
._1e{width:23.310125pt;}
._1f{width:24.263019pt;}
._20{width:25.229231pt;}
._1d{width:26.238189pt;}
._25{width:27.280322pt;}
._24{width:28.171308pt;}
._21{width:29.244884pt;}
._22{width:30.656151pt;}
._1b{width:32.280212pt;}
._1c{width:33.199077pt;}
._28{width:35.008627pt;}
._29{width:35.904849pt;}
._23{width:36.870385pt;}
._30{width:70.137884pt;}
._2f{width:71.063669pt;}
._2b{width:72.983741pt;}
._2c{width:74.483024pt;}
._2e{width:75.558400pt;}
._2d{width:76.623231pt;}
._33{width:106.361145pt;}
._32{width:107.512788pt;}
._2a{width:171.914725pt;}
._27{width:172.806491pt;}
._31{width:1267.247599pt;}
.fs8{font-size:34.561320pt;}
.fsa{font-size:37.121440pt;}
.fs7{font-size:42.881600pt;}
.fs9{font-size:53.122000pt;}
.fs6{font-size:58.882400pt;}
.fs0{font-size:64.002404pt;}
.fsb{font-size:74.882796pt;}
.fs5{font-size:85.123200pt;}
.fs4{font-size:106.884004pt;}
.fs3{font-size:117.124396pt;}
.fs1{font-size:128.004808pt;}
.fs2{font-size:138.885192pt;}
.y0{bottom:0.000000pt;}
.y17a{bottom:3.839965pt;}
.y178{bottom:3.840027pt;}
.y1f{bottom:51.200074pt;}
.y1e{bottom:69.600098pt;}
.y6c{bottom:97.760010pt;}
.y8f{bottom:102.400086pt;}
.y17c{bottom:102.880066pt;}
.y1d{bottom:104.320069pt;}
.y6b{bottom:113.120057pt;}
.y175{bottom:115.840088pt;}
.y73{bottom:117.760071pt;}
.y1c{bottom:128.480042pt;}
.y72{bottom:129.120057pt;}
.y17b{bottom:130.400086pt;}
.y8e{bottom:133.120057pt;}
.y56{bottom:139.680054pt;}
.y174{bottom:143.520081pt;}
.y8d{bottom:143.840088pt;}
.y10b{bottom:144.480042pt;}
.y6a{bottom:148.480042pt;}
.y1b{bottom:152.640076pt;}
.y71{bottom:158.080079pt;}
.y91{bottom:159.200074pt;}
.y10d{bottom:159.840088pt;}
.y69{bottom:163.840088pt;}
.y55{bottom:167.200074pt;}
.y173{bottom:171.040039pt;}
.y68{bottom:174.560059pt;}
.y11f{bottom:174.880066pt;}
.yf6{bottom:175.200074pt;}
.y1a{bottom:176.960083pt;}
.y8c{bottom:179.200074pt;}
.y17e{bottom:185.280030pt;}
.y70{bottom:185.600037pt;}
.y90{bottom:189.760071pt;}
.y35{bottom:190.080079pt;}
.y8b{bottom:190.560059pt;}
.y67{bottom:194.400086pt;}
.y54{bottom:194.560059pt;}
.y172{bottom:198.720032pt;}
.y19{bottom:201.120057pt;}
.y11e{bottom:202.560059pt;}
.y66{bottom:205.120057pt;}
.y93{bottom:205.760071pt;}
.y94{bottom:209.760071pt;}
.y6f{bottom:213.280030pt;}
.y153{bottom:216.800049pt;}
.y34{bottom:217.600037pt;}
.yf0{bottom:221.120057pt;}
.yca{bottom:221.440064pt;}
.y53{bottom:222.400086pt;}
.y135{bottom:224.640076pt;}
.y65{bottom:225.120057pt;}
.y18{bottom:225.280030pt;}
.y171{bottom:226.240052pt;}
.yfb{bottom:228.640076pt;}
.yf2{bottom:230.080079pt;}
.y150{bottom:233.920044pt;}
.y64{bottom:236.480042pt;}
.ye4{bottom:240.160035pt;}
.y6e{bottom:240.800049pt;}
.y8a{bottom:244.320069pt;}
.yc9{bottom:248.960083pt;}
.y17{bottom:249.440064pt;}
.y52{bottom:249.920044pt;}
.y134{bottom:252.320069pt;}
.y170{bottom:253.920044pt;}
.y33{bottom:254.560059pt;}
.yfa{bottom:256.320069pt;}
.yef{bottom:257.760071pt;}
.y129{bottom:260.160035pt;}
.y14f{bottom:261.600037pt;}
.ye3{bottom:267.840088pt;}
.y63{bottom:268.320069pt;}
.y89{bottom:272.000061pt;}
.y16{bottom:273.600037pt;}
.yc8{bottom:276.640076pt;}
.y51{bottom:277.600037pt;}
.yae{bottom:278.880066pt;}
.y133{bottom:279.840088pt;}
.y16f{bottom:281.440064pt;}
.yf9{bottom:283.840088pt;}
.yf1{bottom:284.960083pt;}
.yee{bottom:285.280030pt;}
.y128{bottom:287.680054pt;}
.y14e{bottom:289.120057pt;}
.y32{bottom:291.360047pt;}
.y10a{bottom:295.040039pt;}
.ye2{bottom:295.360047pt;}
.y62{bottom:296.000061pt;}
.y15{bottom:297.760071pt;}
.y92{bottom:299.200074pt;}
.y88{bottom:299.520081pt;}
.yad{bottom:304.160035pt;}
.y50{bottom:305.120057pt;}
.y132{bottom:307.520081pt;}
.y16e{bottom:309.120057pt;}
.yf8{bottom:311.200074pt;}
.yed{bottom:312.960083pt;}
.y127{bottom:315.360047pt;}
.y14d{bottom:316.800049pt;}
.y109{bottom:320.320069pt;}
.y14{bottom:322.080079pt;}
.ye1{bottom:322.880066pt;}
.y61{bottom:323.520081pt;}
.y87{bottom:327.200074pt;}
.y31{bottom:328.160035pt;}
.yac{bottom:330.560059pt;}
.yc7{bottom:331.840088pt;}
.y4f{bottom:332.800049pt;}
.y131{bottom:335.040039pt;}
.y16d{bottom:336.640076pt;}
.yf7{bottom:340.320069pt;}
.yec{bottom:340.480042pt;}
.y126{bottom:342.880066pt;}
.y14c{bottom:344.320069pt;}
.y108{bottom:345.600037pt;}
.y13{bottom:346.240052pt;}
.ye0{bottom:350.560059pt;}
.y60{bottom:351.200074pt;}
.y86{bottom:354.720032pt;}
.yab{bottom:358.080079pt;}
.yc6{bottom:359.040039pt;}
.y4e{bottom:360.320069pt;}
.y130{bottom:362.720032pt;}
.y16c{bottom:364.320069pt;}
.yeb{bottom:368.160035pt;}
.y12{bottom:370.400086pt;}
.y125{bottom:370.560059pt;}
.y107{bottom:370.880066pt;}
.y30{bottom:371.680054pt;}
.y14b{bottom:372.000061pt;}
.ydf{bottom:378.080079pt;}
.y5f{bottom:378.720032pt;}
.y85{bottom:382.400086pt;}
.yaa{bottom:385.760071pt;}
.yf5{bottom:387.040039pt;}
.y4d{bottom:388.000061pt;}
.y12f{bottom:390.240052pt;}
.y16b{bottom:391.840088pt;}
.y11{bottom:394.560059pt;}
.y10c{bottom:395.360047pt;}
.yea{bottom:395.680054pt;}
.y106{bottom:396.160035pt;}
.y124{bottom:398.080079pt;}
.y14a{bottom:399.520081pt;}
.yde{bottom:405.760071pt;}
.y5e{bottom:406.400086pt;}
.y84{bottom:409.920044pt;}
.yc5{bottom:411.040039pt;}
.yf4{bottom:412.320069pt;}
.ya9{bottom:413.280030pt;}
.y2f{bottom:415.040039pt;}
.y4c{bottom:415.520081pt;}
.y12e{bottom:417.920044pt;}
.y10{bottom:418.720032pt;}
.y16a{bottom:419.520081pt;}
.y105{bottom:422.560059pt;}
.ye9{bottom:423.360047pt;}
.y123{bottom:425.760071pt;}
.y149{bottom:427.200074pt;}
.y179{bottom:430.080079pt;}
.ydd{bottom:432.320069pt;}
.y5d{bottom:433.920044pt;}
.y83{bottom:437.600037pt;}
.yc4{bottom:438.560059pt;}
.ya8{bottom:440.960083pt;}
.y4b{bottom:443.200074pt;}
.y12d{bottom:444.480042pt;}
.yf{bottom:446.240052pt;}
.y169{bottom:447.040039pt;}
.y104{bottom:450.080079pt;}
.ye8{bottom:450.880066pt;}
.y122{bottom:453.280030pt;}
.y148{bottom:454.720032pt;}
.ydc{bottom:457.600037pt;}
.y2e{bottom:458.560059pt;}
.y17d{bottom:461.280030pt;}
.y154{bottom:461.440064pt;}
.y5c{bottom:461.600037pt;}
.yf3{bottom:462.880066pt;}
.y82{bottom:465.120057pt;}
.yc3{bottom:466.240052pt;}
.ya7{bottom:468.480042pt;}
.y12c{bottom:469.760071pt;}
.y4a{bottom:470.720032pt;}
.y168{bottom:474.720032pt;}
.y103{bottom:477.600037pt;}
.ye7{bottom:478.560059pt;}
.y121{bottom:480.960083pt;}
.y147{bottom:482.400086pt;}
.ye{bottom:482.560059pt;}
.ydb{bottom:482.880066pt;}
.y5b{bottom:489.120057pt;}
.y81{bottom:492.800049pt;}
.yc2{bottom:493.760071pt;}
.y12b{bottom:495.040039pt;}
.y2d{bottom:495.360047pt;}
.ya6{bottom:496.000061pt;}
.y49{bottom:498.400086pt;}
.y167{bottom:502.240052pt;}
.y120{bottom:504.320069pt;}
.y102{bottom:505.280030pt;}
.ye6{bottom:506.080079pt;}
.yda{bottom:508.160035pt;}
.y146{bottom:509.920044pt;}
.y5a{bottom:516.800049pt;}
.yd{bottom:517.280030pt;}
.y80{bottom:520.320069pt;}
.yc1{bottom:521.440064pt;}
.ya5{bottom:523.680054pt;}
.y48{bottom:525.920044pt;}
.y166{bottom:529.920044pt;}
.y101{bottom:531.840088pt;}
.ye5{bottom:533.280030pt;}
.yd9{bottom:533.440064pt;}
.y11d{bottom:533.760071pt;}
.y145{bottom:537.600037pt;}
.y2c{bottom:538.720032pt;}
.y59{bottom:544.320069pt;}
.y12a{bottom:545.600037pt;}
.y152{bottom:547.680054pt;}
.y7f{bottom:548.000061pt;}
.yc{bottom:548.320069pt;}
.yc0{bottom:548.960083pt;}
.ya4{bottom:551.200074pt;}
.y47{bottom:553.280030pt;}
.y100{bottom:557.120057pt;}
.y165{bottom:557.440064pt;}
.yd8{bottom:559.840088pt;}
.y11c{bottom:561.280030pt;}
.y144{bottom:565.120057pt;}
.y58{bottom:572.000061pt;}
.y46{bottom:572.160035pt;}
.y7e{bottom:575.520081pt;}
.ybf{bottom:576.640076pt;}
.ya3{bottom:578.880066pt;}
.yb{bottom:581.440064pt;}
.y2b{bottom:582.240052pt;}
.yff{bottom:582.400086pt;}
.y164{bottom:584.960083pt;}
.yd7{bottom:587.360047pt;}
.y11b{bottom:588.960083pt;}
.y143{bottom:592.800049pt;}
.y177{bottom:595.680054pt;}
.y45{bottom:599.520081pt;}
.y7d{bottom:603.200074pt;}
.ybe{bottom:604.160035pt;}
.ya2{bottom:606.400086pt;}
.yfe{bottom:607.680054pt;}
.y163{bottom:612.640046pt;}
.yd6{bottom:615.040070pt;}
.ya{bottom:615.520050pt;}
.y151{bottom:616.320069pt;}
.y11a{bottom:616.480072pt;}
.y142{bottom:620.320069pt;}
.y2a{bottom:625.760071pt;}
.y44{bottom:627.200074pt;}
.y7c{bottom:630.720063pt;}
.ybd{bottom:631.840058pt;}
.yfd{bottom:633.120057pt;}
.ya1{bottom:634.080048pt;}
.y162{bottom:640.160065pt;}
.yd5{bottom:642.560059pt;}
.y119{bottom:644.160065pt;}
.y141{bottom:648.000061pt;}
.y9{bottom:651.840058pt;}
.y43{bottom:654.400055pt;}
.y57{bottom:654.720063pt;}
.y7b{bottom:658.400055pt;}
.ybc{bottom:659.360047pt;}
.ya0{bottom:661.600068pt;}
.y29{bottom:662.560059pt;}
.y161{bottom:667.840058pt;}
.yd4{bottom:670.240052pt;}
.y118{bottom:671.680054pt;}
.y140{bottom:675.520050pt;}
.y42{bottom:682.400055pt;}
.yfc{bottom:683.680054pt;}
.y7a{bottom:685.920044pt;}
.ybb{bottom:687.040070pt;}
.y8{bottom:688.160065pt;}
.y9f{bottom:689.280060pt;}
.y160{bottom:695.360047pt;}
.yd3{bottom:697.760071pt;}
.y117{bottom:699.360047pt;}
.y13f{bottom:703.200074pt;}
.y28{bottom:705.920044pt;}
.y41{bottom:709.920044pt;}
.y79{bottom:713.600068pt;}
.yba{bottom:714.560059pt;}
.y9e{bottom:716.800049pt;}
.y15f{bottom:723.040070pt;}
.y7{bottom:724.320069pt;}
.yd2{bottom:725.440064pt;}
.y116{bottom:726.880066pt;}
.y13e{bottom:730.720063pt;}
.y40{bottom:737.600068pt;}
.y78{bottom:741.120057pt;}
.yb9{bottom:742.080048pt;}
.y9d{bottom:744.480072pt;}
.y27{bottom:749.440064pt;}
.y15e{bottom:750.560059pt;}
.yd1{bottom:752.960053pt;}
.y115{bottom:754.560059pt;}
.y13d{bottom:758.400055pt;}
.y6{bottom:761.600068pt;}
.y3f{bottom:765.120057pt;}
.y77{bottom:768.800049pt;}
.yb8{bottom:769.760071pt;}
.y9c{bottom:772.000061pt;}
.y15d{bottom:778.240052pt;}
.yd0{bottom:780.640046pt;}
.y114{bottom:782.080048pt;}
.y13c{bottom:785.920044pt;}
.y3e{bottom:792.800049pt;}
.y26{bottom:792.960053pt;}
.y76{bottom:796.320069pt;}
.yb7{bottom:797.280060pt;}
.y5{bottom:797.440064pt;}
.y9b{bottom:799.680054pt;}
.y15c{bottom:805.760071pt;}
.ycf{bottom:808.160065pt;}
.y113{bottom:809.760071pt;}
.y13b{bottom:813.600068pt;}
.y3d{bottom:820.320069pt;}
.y75{bottom:824.000061pt;}
.yb6{bottom:824.960053pt;}
.y9a{bottom:827.200074pt;}
.y25{bottom:829.760071pt;}
.y4{bottom:830.880066pt;}
.y15b{bottom:833.440064pt;}
.yce{bottom:835.840058pt;}
.y112{bottom:837.280060pt;}
.y13a{bottom:841.120057pt;}
.y3c{bottom:848.000061pt;}
.y3{bottom:849.280060pt;}
.y74{bottom:851.200074pt;}
.yb5{bottom:852.480072pt;}
.y99{bottom:854.880066pt;}
.y15a{bottom:860.960053pt;}
.ycd{bottom:863.360047pt;}
.y2{bottom:863.840058pt;}
.y111{bottom:864.800049pt;}
.y24{bottom:866.560059pt;}
.y139{bottom:868.800064pt;}
.y3b{bottom:875.520066pt;}
.yb4{bottom:880.160065pt;}
.y98{bottom:882.400055pt;}
.y159{bottom:888.640061pt;}
.ycc{bottom:890.720063pt;}
.y110{bottom:892.480057pt;}
.y138{bottom:896.320054pt;}
.y17f{bottom:902.880066pt;}
.y3a{bottom:903.200058pt;}
.y23{bottom:903.360062pt;}
.yb3{bottom:907.680054pt;}
.y97{bottom:908.960053pt;}
.y158{bottom:916.160065pt;}
.ycb{bottom:919.840058pt;}
.y10f{bottom:920.000061pt;}
.y137{bottom:924.000061pt;}
.y176{bottom:930.400055pt;}
.y39{bottom:930.720063pt;}
.y96{bottom:934.400055pt;}
.yb2{bottom:935.360062pt;}
.y22{bottom:940.160065pt;}
.y157{bottom:943.840058pt;}
.y10e{bottom:947.360062pt;}
.y136{bottom:947.520066pt;}
.y38{bottom:958.400055pt;}
.y95{bottom:959.680054pt;}
.yb1{bottom:962.880066pt;}
.y156{bottom:971.360062pt;}
.y21{bottom:976.960053pt;}
.y37{bottom:985.920060pt;}
.yb0{bottom:989.440064pt;}
.y155{bottom:989.920060pt;}
.y20{bottom:1008.960061pt;}
.y36{bottom:1013.280060pt;}
.y6d{bottom:1013.600060pt;}
.y1{bottom:1013.760056pt;}
.yaf{bottom:1014.880059pt;}
.h1f{height:18.239990pt;}
.hf{height:30.983683pt;}
.h10{height:47.623043pt;}
.h16{height:51.809612pt;}
.h1b{height:52.787152pt;}
.h1d{height:54.398667pt;}
.h1c{height:54.398911pt;}
.ha{height:56.845885pt;}
.h17{height:56.982493pt;}
.h19{height:56.982585pt;}
.h2{height:57.377155pt;}
.h1e{height:62.050607pt;}
.h13{height:62.050851pt;}
.he{height:62.762508pt;}
.hc{height:62.762628pt;}
.h15{height:62.762632pt;}
.h14{height:62.762688pt;}
.h12{height:62.762692pt;}
.hd{height:62.762752pt;}
.h11{height:62.762756pt;}
.h1a{height:66.509671pt;}
.h18{height:75.605030pt;}
.h9{height:76.311619pt;}
.h8{height:78.722334pt;}
.hb{height:94.932619pt;}
.h7{height:98.846828pt;}
.h6{height:108.317190pt;}
.h3{height:114.754310pt;}
.h5{height:118.379446pt;}
.h4{height:128.441677pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w3{width:109.440003pt;}
.w2{width:117.600037pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440002pt;}
.xb{left:129.440002pt;}
.xc{left:145.440002pt;}
.xd{left:160.639999pt;}
.xf{left:164.639999pt;}
.x6{left:169.919998pt;}
.x4{left:180.320007pt;}
.x8{left:188.960007pt;}
.x5{left:277.600006pt;}
.x7{left:304.799988pt;}
.x9{left:313.119995pt;}
.x3{left:396.799988pt;}
.x2{left:518.880005pt;}
.xe{left:664.320007pt;}
.xa{left:672.320007pt;}
.x10{left:676.159973pt;}
.x11{left:684.320007pt;}
}




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