
    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_b4dc64c00ef84211891a078d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.185000;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_aae538ce30d7941f2550bb8c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.222000;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_39851d4294e9af9e49854386.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_2bd36b0247f1f604efc05aa2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202000;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_57d4d828bacf0f45a6b9b197.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.223000;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_1ac663650de5b542e1a48926.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3e835c815ac1751aa3fd764e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_766eabce817eebd94e663669.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.483000;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;}
.m1{transform:matrix(0.225803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225803,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-15.120072px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.759996px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.179554px;}
.ls1{letter-spacing:688.503127px;}
.ls2{letter-spacing:759.192707px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(219,65,67),0 0.015em rgb(219,65,67),0.015em 0 rgb(219,65,67),0 -0.015em  rgb(219,65,67);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(219,65,67);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-45.001798px;}
.ws1{word-spacing:-15.875132px;}
.ws0{word-spacing:-15.500719px;}
.wsc{word-spacing:-13.367329px;}
.ws4{word-spacing:-12.370786px;}
.ws6{word-spacing:-11.336823px;}
.ws5{word-spacing:-10.564954px;}
.wsd{word-spacing:-10.499210px;}
.ws7{word-spacing:-9.934234px;}
.ws9{word-spacing:-9.000349px;}
.wsa{word-spacing:-8.644655px;}
.ws3{word-spacing:-8.515045px;}
.ws8{word-spacing:-5.203637px;}
.wsb{word-spacing:0.000000px;}
._11{margin-left:-12.446384px;}
._10{margin-left:-4.709171px;}
._17{margin-left:-3.604789px;}
._7{margin-left:-2.314721px;}
._0{margin-left:-1.109561px;}
._1{width:1.123241px;}
._8{width:2.700101px;}
._5{width:3.925397px;}
._6{width:5.577832px;}
._e{width:6.589974px;}
._f{width:7.718688px;}
._2{width:9.098289px;}
._3{width:10.731315px;}
._13{width:12.506668px;}
._12{width:13.507704px;}
._d{width:14.554459px;}
._c{width:15.582101px;}
._14{width:16.995416px;}
._b{width:18.090675px;}
._9{width:19.393204px;}
._a{width:20.693961px;}
._28{width:22.295341px;}
._27{width:23.378605px;}
._29{width:24.701301px;}
._19{width:27.758538px;}
._1d{width:29.578770px;}
._30{width:31.039545px;}
._2f{width:32.363842px;}
._31{width:34.237207px;}
._2c{width:55.613567px;}
._2d{width:57.110506px;}
._2e{width:58.920227px;}
._2a{width:60.149747px;}
._2b{width:61.350032px;}
._34{width:103.833160px;}
._32{width:108.779491px;}
._33{width:110.697155px;}
._15{width:135.800667px;}
._18{width:137.005826px;}
._16{width:202.519076px;}
._21{width:476.277534px;}
._26{width:485.001509px;}
._22{width:494.277534px;}
._1c{width:502.293622px;}
._25{width:508.677314px;}
._24{width:538.318863px;}
._23{width:550.120595px;}
._20{width:553.858391px;}
._1b{width:575.186096px;}
._1f{width:637.438498px;}
._1a{width:652.470345px;}
._1e{width:687.372950px;}
._4{width:1196.879058px;}
.fc5{color:rgb(192,0,0);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(219,65,67);}
.fc2{color:rgb(1,3,2);}
.fc1{color:rgb(255,0,0);}
.fc6{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:23.760900px;}
.fse{font-size:27.361080px;}
.fsf{font-size:36.001395px;}
.fs9{font-size:38.881485px;}
.fs5{font-size:41.759538px;}
.fsc{font-size:41.761620px;}
.fsb{font-size:45.361800px;}
.fs12{font-size:47.941600px;}
.fs0{font-size:48.241800px;}
.fsa{font-size:50.985391px;}
.fs10{font-size:56.882250px;}
.fs2{font-size:59.762250px;}
.fs13{font-size:63.362250px;}
.fs8{font-size:66.242700px;}
.fs7{font-size:72.002705px;}
.fs1{font-size:74.882700px;}
.fs3{font-size:77.763154px;}
.fs11{font-size:81.363150px;}
.fs6{font-size:108.004050px;}
.fs4{font-size:180.007191px;}
.y78{bottom:-3.240006px;}
.y0{bottom:0.000000px;}
.y48{bottom:2.879998px;}
.yb{bottom:4.679995px;}
.y8{bottom:4.680000px;}
.ycf{bottom:6.480010px;}
.y103{bottom:6.480011px;}
.y19{bottom:14.760132px;}
.y18{bottom:28.620072px;}
.y17{bottom:43.020127px;}
.y16{bottom:43.033969px;}
.y15{bottom:55.096090px;}
.y14{bottom:67.151989px;}
.y13{bottom:79.210999px;}
.yf{bottom:83.340088px;}
.y12{bottom:91.273120px;}
.y11{bottom:103.335366px;}
.y144{bottom:104.040115px;}
.y17e{bottom:106.020127px;}
.yad{bottom:107.460022px;}
.y101{bottom:108.540115px;}
.y10{bottom:115.572842px;}
.ydf{bottom:116.280052px;}
.y17d{bottom:119.340088px;}
.y125{bottom:126.900055px;}
.ye{bottom:127.800041px;}
.yac{bottom:128.520058px;}
.y100{bottom:129.780052px;}
.y143{bottom:136.080093px;}
.y17c{bottom:137.160049px;}
.yde{bottom:137.340088px;}
.y124{bottom:147.960091px;}
.yab{bottom:149.580093px;}
.y17b{bottom:150.480079px;}
.yff{bottom:150.840088px;}
.y77{bottom:153.180039px;}
.y142{bottom:157.140060px;}
.ydd{bottom:158.580093px;}
.y76{bottom:162.720085px;}
.y17a{bottom:163.800041px;}
.y123{bottom:169.020058px;}
.yaa{bottom:170.820099px;}
.yfe{bottom:172.080093px;}
.y141{bottom:178.200096px;}
.ydc{bottom:179.640060px;}
.y179{bottom:181.620072px;}
.y75{bottom:184.680039px;}
.y122{bottom:190.260064px;}
.ya9{bottom:191.880066px;}
.yfd{bottom:193.140060px;}
.y178{bottom:194.940033px;}
.y140{bottom:199.440033px;}
.ydb{bottom:200.880066px;}
.y74{bottom:206.460091px;}
.y177{bottom:208.260064px;}
.y121{bottom:211.320099px;}
.ya8{bottom:213.120072px;}
.yfc{bottom:214.200096px;}
.y13f{bottom:220.500068px;}
.y176{bottom:221.580093px;}
.yda{bottom:221.940033px;}
.y73{bottom:228.240074px;}
.y120{bottom:232.560036px;}
.ya7{bottom:234.180039px;}
.yfb{bottom:235.440033px;}
.y175{bottom:239.400055px;}
.y13e{bottom:241.740074px;}
.yd9{bottom:243.000068px;}
.y72{bottom:250.200096px;}
.y174{bottom:252.720085px;}
.y11f{bottom:253.620072px;}
.ya6{bottom:255.240074px;}
.yfa{bottom:256.500068px;}
.y13d{bottom:262.800041px;}
.yd8{bottom:264.240074px;}
.y173{bottom:266.040047px;}
.y71{bottom:271.980079px;}
.y11e{bottom:274.680039px;}
.ya5{bottom:276.480079px;}
.yf9{bottom:277.740074px;}
.y13c{bottom:283.860077px;}
.yd7{bottom:285.300041px;}
.y70{bottom:293.760064px;}
.y11d{bottom:295.920043px;}
.y172{bottom:297.360077px;}
.yf8{bottom:302.760064px;}
.ya4{bottom:305.100083px;}
.yd6{bottom:306.540047px;}
.y171{bottom:310.680039px;}
.y13b{bottom:312.660049px;}
.y6f{bottom:315.720085px;}
.y11c{bottom:316.980079px;}
.yf7{bottom:324.000068px;}
.ya3{bottom:326.160049px;}
.yd5{bottom:327.600083px;}
.y170{bottom:328.500068px;}
.y47{bottom:330.300041px;}
.y46{bottom:333.180039px;}
.y6e{bottom:337.500068px;}
.y11b{bottom:338.220085px;}
.y13a{bottom:341.280052px;}
.y16f{bottom:341.820099px;}
.yf6{bottom:345.060036px;}
.ya2{bottom:347.400055px;}
.yd4{bottom:348.660049px;}
.y16e{bottom:355.140060px;}
.y11a{bottom:359.280052px;}
.y6d{bottom:359.640060px;}
.y139{bottom:362.340088px;}
.y45{bottom:365.400055px;}
.yf5{bottom:366.120072px;}
.ya1{bottom:368.460091px;}
.yd3{bottom:377.460091px;}
.y44{bottom:378.900055px;}
.y119{bottom:380.340088px;}
.y16d{bottom:380.880066px;}
.y6c{bottom:381.960091px;}
.y138{bottom:383.400055px;}
.ya0{bottom:389.520058px;}
.y43{bottom:393.840088px;}
.y118{bottom:401.580093px;}
.y6b{bottom:404.640060px;}
.yd2{bottom:406.080093px;}
.yf4{bottom:409.320099px;}
.y9f{bottom:410.760064px;}
.y42{bottom:412.020058px;}
.y16c{bottom:417.960091px;}
.y117{bottom:422.640060px;}
.y137{bottom:425.700096px;}
.yd1{bottom:426.780052px;}
.y6a{bottom:427.500068px;}
.y41{bottom:429.660049px;}
.yf3{bottom:431.100083px;}
.y16b{bottom:431.280052px;}
.y9e{bottom:431.820099px;}
.y40{bottom:443.880066px;}
.yd0{bottom:444.600083px;}
.y136{bottom:446.940033px;}
.y69{bottom:449.280052px;}
.yf2{bottom:452.340088px;}
.y9d{bottom:453.060036px;}
.yce{bottom:455.940033px;}
.y16a{bottom:457.920043px;}
.y3f{bottom:458.100083px;}
.y135{bottom:468.000068px;}
.y68{bottom:468.540047px;}
.y169{bottom:471.240074px;}
.y3e{bottom:472.320099px;}
.yf1{bottom:473.400055px;}
.y9c{bottom:474.120072px;}
.y116{bottom:475.560036px;}
.ycd{bottom:480.060036px;}
.y67{bottom:486.000068px;}
.y3d{bottom:486.540047px;}
.y134{bottom:489.060036px;}
.yf0{bottom:494.460091px;}
.y9b{bottom:495.360077px;}
.ycc{bottom:498.600083px;}
.y3c{bottom:500.760064px;}
.y115{bottom:502.560036px;}
.y168{bottom:502.740074px;}
.y133{bottom:510.300041px;}
.y3b{bottom:514.980079px;}
.y9a{bottom:516.420043px;}
.ycb{bottom:518.400055px;}
.y66{bottom:518.760064px;}
.y3a{bottom:529.200096px;}
.y132{bottom:531.360077px;}
.yef{bottom:533.880066px;}
.y167{bottom:534.780052px;}
.y65{bottom:535.140060px;}
.y99{bottom:537.480079px;}
.y114{bottom:542.160049px;}
.y39{bottom:543.420043px;}
.y64{bottom:544.500068px;}
.yca{bottom:547.020058px;}
.y166{bottom:548.460091px;}
.y131{bottom:552.600083px;}
.y63{bottom:557.100083px;}
.y38{bottom:557.640060px;}
.y98{bottom:558.720085px;}
.y113{bottom:559.800041px;}
.yee{bottom:560.700096px;}
.y165{bottom:567.360077px;}
.yc9{bottom:568.080093px;}
.y62{bottom:569.520058px;}
.y37{bottom:571.860077px;}
.y130{bottom:573.660049px;}
.y112{bottom:577.620072px;}
.y97{bottom:579.780052px;}
.y61{bottom:585.720085px;}
.y36{bottom:586.080093px;}
.yc8{bottom:589.320099px;}
.y60{bottom:594.360077px;}
.y12f{bottom:594.720085px;}
.y111{bottom:595.440033px;}
.y164{bottom:599.580093px;}
.y35{bottom:600.300041px;}
.y96{bottom:601.020058px;}
.y5f{bottom:606.780052px;}
.yc7{bottom:610.380066px;}
.y163{bottom:612.900055px;}
.y110{bottom:613.260064px;}
.y34{bottom:614.520058px;}
.y12e{bottom:615.960091px;}
.yed{bottom:617.940033px;}
.y5e{bottom:619.200096px;}
.y95{bottom:622.080093px;}
.y162{bottom:626.220085px;}
.y33{bottom:629.460091px;}
.y5d{bottom:631.620072px;}
.y12d{bottom:637.020058px;}
.yec{bottom:639.180039px;}
.y94{bottom:643.140060px;}
.y161{bottom:644.580093px;}
.y32{bottom:647.820099px;}
.yc6{bottom:652.680039px;}
.y10f{bottom:653.040047px;}
.y5c{bottom:656.640060px;}
.y12c{bottom:658.260064px;}
.yeb{bottom:660.240074px;}
.y93{bottom:664.380066px;}
.y31{bottom:666.180039px;}
.y5b{bottom:669.060036px;}
.y10e{bottom:670.860077px;}
.y19f{bottom:672.300041px;}
.yc5{bottom:673.740074px;}
.y160{bottom:676.800041px;}
.y12b{bottom:679.320099px;}
.yea{bottom:681.300041px;}
.y5a{bottom:681.480079px;}
.y30{bottom:684.540047px;}
.y92{bottom:685.440033px;}
.y10d{bottom:688.680073px;}
.y15f{bottom:690.120072px;}
.y59{bottom:693.900055px;}
.y19e{bottom:698.760064px;}
.y12a{bottom:700.380066px;}
.y2f{bottom:702.180073px;}
.yc4{bottom:702.360077px;}
.ye9{bottom:702.540081px;}
.y10c{bottom:706.320065px;}
.y91{bottom:706.680073px;}
.y15e{bottom:708.480079px;}
.y58{bottom:710.100083px;}
.y2e{bottom:716.400055px;}
.y57{bottom:718.740074px;}
.y129{bottom:721.620072px;}
.y19d{bottom:722.700061px;}
.ye8{bottom:723.600083px;}
.y15d{bottom:725.760064px;}
.y90{bottom:727.740074px;}
.y2d{bottom:730.620072px;}
.y56{bottom:731.160049px;}
.yc3{bottom:734.220051px;}
.y15c{bottom:739.080059px;}
.y128{bottom:742.680073px;}
.y55{bottom:743.580059px;}
.y2c{bottom:744.840054px;}
.y19c{bottom:745.920078px;}
.y8f{bottom:748.800076px;}
.y10b{bottom:749.700061px;}
.y15b{bottom:752.400055px;}
.y54{bottom:756.180073px;}
.y2b{bottom:759.060070px;}
.y19b{bottom:759.240074px;}
.y127{bottom:763.920078px;}
.y15a{bottom:765.720051px;}
.y10a{bottom:767.340054px;}
.y53{bottom:768.600083px;}
.y8e{bottom:770.040081px;}
.yc2{bottom:771.660049px;}
.y19a{bottom:772.560070px;}
.y2a{bottom:773.280052px;}
.ye7{bottom:773.460056px;}
.y159{bottom:779.040081px;}
.y52{bottom:784.800076px;}
.y126{bottom:784.980079px;}
.y109{bottom:785.160049px;}
.y199{bottom:785.880066px;}
.y29{bottom:787.500068px;}
.y8d{bottom:791.100083px;}
.y158{bottom:792.360077px;}
.y51{bottom:793.620072px;}
.y28{bottom:801.720051px;}
.ye6{bottom:802.080059px;}
.y108{bottom:802.980079px;}
.y198{bottom:803.700061px;}
.yc1{bottom:806.040081px;}
.y50{bottom:806.760064px;}
.y157{bottom:810.720051px;}
.y8c{bottom:812.340054px;}
.y27{bottom:815.940067px;}
.y197{bottom:817.020058px;}
.y4f{bottom:819.360077px;}
.yc0{bottom:827.280052px;}
.y26{bottom:830.160049px;}
.y196{bottom:830.340054px;}
.ye5{bottom:830.700061px;}
.y4e{bottom:832.680073px;}
.y8b{bottom:833.400055px;}
.y156{bottom:842.940067px;}
.y25{bottom:844.380066px;}
.y4d{bottom:846.000068px;}
.y107{bottom:847.440067px;}
.y195{bottom:848.160049px;}
.ybf{bottom:848.340054px;}
.y8a{bottom:854.460056px;}
.y155{bottom:856.260064px;}
.y24{bottom:858.600083px;}
.y4c{bottom:859.320065px;}
.y194{bottom:861.480079px;}
.y106{bottom:865.260064px;}
.ybe{bottom:869.580059px;}
.y4b{bottom:872.640060px;}
.y23{bottom:872.820065px;}
.y193{bottom:874.800076px;}
.y89{bottom:875.700061px;}
.y154{bottom:882.900055px;}
.y105{bottom:883.080059px;}
.y4a{bottom:885.960056px;}
.y22{bottom:887.040081px;}
.ye4{bottom:887.940067px;}
.ybd{bottom:890.640060px;}
.y192{bottom:892.620072px;}
.y153{bottom:896.220051px;}
.y88{bottom:896.760064px;}
.y49{bottom:896.940067px;}
.y104{bottom:900.720051px;}
.y21{bottom:901.980079px;}
.y191{bottom:905.940067px;}
.y152{bottom:909.720051px;}
.ybc{bottom:911.700061px;}
.y102{bottom:912.960056px;}
.ye3{bottom:916.560070px;}
.y87{bottom:918.000068px;}
.y190{bottom:919.260064px;}
.y151{bottom:923.040081px;}
.y20{bottom:929.880066px;}
.y18f{bottom:932.580059px;}
.ybb{bottom:932.940067px;}
.y86{bottom:939.060070px;}
.y150{bottom:941.400055px;}
.ye2{bottom:945.180073px;}
.y18e{bottom:950.400055px;}
.yba{bottom:954.000068px;}
.y1f{bottom:958.140060px;}
.y85{bottom:960.120072px;}
.y18d{bottom:963.720051px;}
.y14f{bottom:973.620072px;}
.ye1{bottom:973.800076px;}
.yb9{bottom:975.240074px;}
.y84{bottom:981.360060px;}
.y18c{bottom:981.720068px;}
.y14e{bottom:986.940067px;}
.y1e{bottom:993.060070px;}
.y18b{bottom:995.040064px;}
.yb8{bottom:996.300058px;}
.y14d{bottom:1000.260064px;}
.y83{bottom:1002.420061px;}
.y18a{bottom:1008.360060px;}
.y14c{bottom:1013.580059px;}
.y1d{bottom:1014.840070px;}
.yb7{bottom:1017.540064px;}
.y189{bottom:1021.680073px;}
.y82{bottom:1023.660067px;}
.y1c{bottom:1038.600065px;}
.y188{bottom:1039.500068px;}
.y14b{bottom:1041.840070px;}
.y81{bottom:1044.720068px;}
.y187{bottom:1052.820065px;}
.y14a{bottom:1055.160067px;}
.yb6{bottom:1059.660067px;}
.y80{bottom:1065.780069px;}
.y186{bottom:1066.140060px;}
.y149{bottom:1068.480063px;}
.y1b{bottom:1071.000068px;}
.ye0{bottom:1073.340070px;}
.y185{bottom:1079.460074px;}
.yb5{bottom:1080.900072px;}
.y148{bottom:1081.800058px;}
.y7f{bottom:1087.020058px;}
.y147{bottom:1095.300058px;}
.y184{bottom:1097.280069px;}
.yb4{bottom:1101.960074px;}
.y1a{bottom:1103.580059px;}
.y7e{bottom:1108.080059px;}
.y183{bottom:1110.600065px;}
.yb3{bottom:1123.200061px;}
.y182{bottom:1123.920069px;}
.y146{bottom:1128.600065px;}
.y7d{bottom:1129.320065px;}
.yd{bottom:1131.840063px;}
.y181{bottom:1141.740066px;}
.yb2{bottom:1144.260064px;}
.yc{bottom:1149.660067px;}
.y180{bottom:1155.060070px;}
.y145{bottom:1162.080068px;}
.y7c{bottom:1165.140069px;}
.yb1{bottom:1165.320065px;}
.y17f{bottom:1168.380066px;}
.ya{bottom:1173.780069px;}
.y9{bottom:1178.460065px;}
.y4{bottom:1187.280069px;}
.yb0{bottom:1187.640069px;}
.y7{bottom:1196.640065px;}
.y6{bottom:1201.320065px;}
.y7b{bottom:1201.500065px;}
.y3{bottom:1201.680064px;}
.yaf{bottom:1202.040064px;}
.y2{bottom:1215.720068px;}
.y7a{bottom:1216.080068px;}
.yae{bottom:1216.620067px;}
.y5{bottom:1223.820065px;}
.y79{bottom:1230.300067px;}
.y1{bottom:1230.480067px;}
.h1e{height:7.020057px;}
.h15{height:13.319997px;}
.h14{height:13.680038px;}
.h24{height:17.640027px;}
.h23{height:17.640060px;}
.h8{height:22.499995px;}
.h6{height:22.500000px;}
.h19{height:23.926908px;}
.h18{height:23.927043px;}
.h1c{height:25.401375px;}
.h1a{height:25.582610px;}
.h1b{height:27.148693px;}
.hb{height:29.158271px;}
.h4{height:33.684460px;}
.hf{height:36.354188px;}
.h17{height:39.047115px;}
.h1d{height:40.634056px;}
.h12{height:42.413283px;}
.h16{height:44.137031px;}
.h26{height:44.825396px;}
.h2{height:45.106083px;}
.h13{height:45.829710px;}
.h1f{height:45.926194px;}
.h3{height:46.891030px;}
.h11{height:47.671340px;}
.h20{height:48.538092px;}
.h21{height:54.038138px;}
.h25{height:56.774138px;}
.h10{height:58.148669px;}
.he{height:61.936925px;}
.h27{height:62.665265px;}
.hd{height:68.546575px;}
.h5{height:71.288330px;}
.h7{height:72.860867px;}
.h9{height:76.907760px;}
.h22{height:77.294993px;}
.hc{height:102.819856px;}
.ha{height:127.007027px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w5{width:5.579991px;}
.w6{width:5.579999px;}
.w8{width:5.939999px;}
.wa{width:5.940033px;}
.w13{width:6.299972px;}
.w12{width:6.299973px;}
.wc{width:6.299998px;}
.we{width:6.300007px;}
.w2{width:8.100014px;}
.w10{width:8.279983px;}
.wd{width:17.639992px;}
.w11{width:21.780018px;}
.w14{width:22.859939px;}
.wf{width:22.860008px;}
.w7{width:34.200028px;}
.wb{width:34.560002px;}
.w9{width:48.779984px;}
.w4{width:81.360008px;}
.w3{width:150.300042px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:54.000000px;}
.x46{left:70.020002px;}
.xa{left:81.719999px;}
.x31{left:84.599997px;}
.x12{left:87.480002px;}
.x1{left:89.640000px;}
.x32{left:94.500000px;}
.x7{left:102.959997px;}
.x13{left:106.920001px;}
.x22{left:117.180005px;}
.x23{left:121.860000px;}
.x11{left:124.379998px;}
.x21{left:130.500000px;}
.x20{left:134.280001px;}
.x1f{left:158.219999px;}
.x10{left:163.800007px;}
.x34{left:184.139992px;}
.x47{left:187.020006px;}
.x15{left:191.340002px;}
.x24{left:207.360008px;}
.x16{left:212.580008px;}
.x33{left:216.180005px;}
.x25{left:225.000000px;}
.xb{left:233.819996px;}
.x8{left:244.263088px;}
.x6b{left:259.020006px;}
.xc{left:266.400003px;}
.xd{left:269.280001px;}
.x4a{left:271.800007px;}
.x4b{left:276.300007px;}
.x4c{left:287.280001px;}
.x1e{left:294.480011px;}
.x66{left:295.920010px;}
.x60{left:297.000000px;}
.x36{left:298.439999px;}
.x48{left:301.319996px;}
.x1d{left:318.240006px;}
.x17{left:325.980011px;}
.x1a{left:327.779983px;}
.x35{left:330.480011px;}
.x4e{left:332.279983px;}
.x19{left:334.980011px;}
.x4f{left:336.600014px;}
.x26{left:341.819996px;}
.x18{left:344.879998px;}
.x50{left:347.579990px;}
.xe{left:362.699993px;}
.x67{left:390.060001px;}
.x39{left:400.860008px;}
.x38{left:403.920010px;}
.x58{left:408.240006px;}
.x27{left:410.220017px;}
.x37{left:414.360008px;}
.x28{left:418.500000px;}
.x5a{left:420.480011px;}
.x51{left:423.540012px;}
.x5b{left:424.800007px;}
.x5c{left:435.779983px;}
.x5d{left:449.819996px;}
.x5e{left:454.319996px;}
.x55{left:456.480011px;}
.x49{left:462.240006px;}
.x5f{left:465.300007px;}
.x14{left:470.879998px;}
.x45{left:473.399987px;}
.x3a{left:476.639992px;}
.x61{left:480.959988px;}
.x29{left:485.819996px;}
.x62{left:496.259994px;}
.x2a{left:507.600014px;}
.x1b{left:523.620002px;}
.x2{left:561.600014px;}
.x3c{left:569.879998px;}
.x1c{left:572.399987px;}
.x3d{left:575.819996px;}
.x3{left:584.820030px;}
.x2b{left:593.100014px;}
.x6c{left:594.720017px;}
.x6a{left:599.759994px;}
.x3b{left:601.919975px;}
.x4d{left:603.179970px;}
.x2c{left:610.740006px;}
.x5{left:625.860008px;}
.x63{left:628.559967px;}
.x68{left:630.000000px;}
.x64{left:632.879998px;}
.x52{left:634.679970px;}
.x53{left:639.179970px;}
.x56{left:642.960023px;}
.x65{left:644.399987px;}
.x69{left:646.200027px;}
.x54{left:650.159981px;}
.x59{left:652.139992px;}
.x57{left:653.940033px;}
.x3f{left:676.620002px;}
.x43{left:679.500000px;}
.x40{left:682.559967px;}
.x2d{left:697.320030px;}
.x3e{left:708.659981px;}
.x2e{left:720.000000px;}
.x9{left:723.960023px;}
.xf{left:742.679970px;}
.x44{left:787.860008px;}
.x42{left:790.019989px;}
.x2f{left:796.320030px;}
.x41{left:800.460023px;}
.x4{left:803.340019px;}
.x30{left:804.600014px;}
@media print{
.v2{vertical-align:-13.440064pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.119996pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.159604pt;}
.ls1{letter-spacing:612.002780pt;}
.ls2{letter-spacing:674.837962pt;}
.ws2{word-spacing:-40.001598pt;}
.ws1{word-spacing:-14.111229pt;}
.ws0{word-spacing:-13.778417pt;}
.wsc{word-spacing:-11.882070pt;}
.ws4{word-spacing:-10.996254pt;}
.ws6{word-spacing:-10.077176pt;}
.ws5{word-spacing:-9.391070pt;}
.wsd{word-spacing:-9.332632pt;}
.ws7{word-spacing:-8.830430pt;}
.ws9{word-spacing:-8.000310pt;}
.wsa{word-spacing:-7.684138pt;}
.ws3{word-spacing:-7.568929pt;}
.ws8{word-spacing:-4.625455pt;}
.wsb{word-spacing:0.000000pt;}
._11{margin-left:-11.063453pt;}
._10{margin-left:-4.185930pt;}
._17{margin-left:-3.204257pt;}
._7{margin-left:-2.057530pt;}
._0{margin-left:-0.986277pt;}
._1{width:0.998436pt;}
._8{width:2.400090pt;}
._5{width:3.489241pt;}
._6{width:4.958073pt;}
._e{width:5.857755pt;}
._f{width:6.861056pt;}
._2{width:8.087368pt;}
._3{width:9.538947pt;}
._13{width:11.117038pt;}
._12{width:12.006848pt;}
._d{width:12.937297pt;}
._c{width:13.850757pt;}
._14{width:15.107036pt;}
._b{width:16.080600pt;}
._9{width:17.238403pt;}
._a{width:18.394632pt;}
._28{width:19.818081pt;}
._27{width:20.780982pt;}
._29{width:21.956712pt;}
._19{width:24.674256pt;}
._1d{width:26.292240pt;}
._30{width:27.590706pt;}
._2f{width:28.767859pt;}
._31{width:30.433073pt;}
._2c{width:49.434282pt;}
._2d{width:50.764894pt;}
._2e{width:52.373535pt;}
._2a{width:53.466442pt;}
._2b{width:54.533362pt;}
._34{width:92.296142pt;}
._32{width:96.692881pt;}
._33{width:98.397471pt;}
._15{width:120.711704pt;}
._18{width:121.782957pt;}
._16{width:180.016957pt;}
._21{width:423.357808pt;}
._26{width:431.112452pt;}
._22{width:439.357808pt;}
._1c{width:446.483219pt;}
._25{width:452.157612pt;}
._24{width:478.505656pt;}
._23{width:488.996084pt;}
._20{width:492.318570pt;}
._1b{width:511.276530pt;}
._1f{width:566.611998pt;}
._1a{width:579.973640pt;}
._1e{width:610.998178pt;}
._4{width:1063.892496pt;}
.fsd{font-size:21.120800pt;}
.fse{font-size:24.320960pt;}
.fsf{font-size:32.001240pt;}
.fs9{font-size:34.561320pt;}
.fs5{font-size:37.119590pt;}
.fsc{font-size:37.121440pt;}
.fsb{font-size:40.321600pt;}
.fs12{font-size:42.614756pt;}
.fs0{font-size:42.881600pt;}
.fsa{font-size:45.320347pt;}
.fs10{font-size:50.562000pt;}
.fs2{font-size:53.122000pt;}
.fs13{font-size:56.322000pt;}
.fs8{font-size:58.882400pt;}
.fs7{font-size:64.002404pt;}
.fs1{font-size:66.562400pt;}
.fs3{font-size:69.122804pt;}
.fs11{font-size:72.322800pt;}
.fs6{font-size:96.003600pt;}
.fs4{font-size:160.006392pt;}
.y78{bottom:-2.880005pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:2.559998pt;}
.yb{bottom:4.159996pt;}
.y8{bottom:4.160000pt;}
.ycf{bottom:5.760009pt;}
.y103{bottom:5.760010pt;}
.y19{bottom:13.120118pt;}
.y18{bottom:25.440064pt;}
.y17{bottom:38.240113pt;}
.y16{bottom:38.252417pt;}
.y15{bottom:48.974302pt;}
.y14{bottom:59.690657pt;}
.y13{bottom:70.409777pt;}
.yf{bottom:74.080079pt;}
.y12{bottom:81.131662pt;}
.y11{bottom:91.853659pt;}
.y144{bottom:92.480103pt;}
.y17e{bottom:94.240113pt;}
.yad{bottom:95.520020pt;}
.y101{bottom:96.480103pt;}
.y10{bottom:102.731415pt;}
.ydf{bottom:103.360047pt;}
.y17d{bottom:106.080079pt;}
.y125{bottom:112.800049pt;}
.ye{bottom:113.600037pt;}
.yac{bottom:114.240052pt;}
.y100{bottom:115.360047pt;}
.y143{bottom:120.960083pt;}
.y17c{bottom:121.920044pt;}
.yde{bottom:122.080079pt;}
.y124{bottom:131.520081pt;}
.yab{bottom:132.960083pt;}
.y17b{bottom:133.760071pt;}
.yff{bottom:134.080079pt;}
.y77{bottom:136.160035pt;}
.y142{bottom:139.680054pt;}
.ydd{bottom:140.960083pt;}
.y76{bottom:144.640076pt;}
.y17a{bottom:145.600037pt;}
.y123{bottom:150.240052pt;}
.yaa{bottom:151.840088pt;}
.yfe{bottom:152.960083pt;}
.y141{bottom:158.400086pt;}
.ydc{bottom:159.680054pt;}
.y179{bottom:161.440064pt;}
.y75{bottom:164.160035pt;}
.y122{bottom:169.120057pt;}
.ya9{bottom:170.560059pt;}
.yfd{bottom:171.680054pt;}
.y178{bottom:173.280030pt;}
.y140{bottom:177.280030pt;}
.ydb{bottom:178.560059pt;}
.y74{bottom:183.520081pt;}
.y177{bottom:185.120057pt;}
.y121{bottom:187.840088pt;}
.ya8{bottom:189.440064pt;}
.yfc{bottom:190.400086pt;}
.y13f{bottom:196.000061pt;}
.y176{bottom:196.960083pt;}
.yda{bottom:197.280030pt;}
.y73{bottom:202.880066pt;}
.y120{bottom:206.720032pt;}
.ya7{bottom:208.160035pt;}
.yfb{bottom:209.280030pt;}
.y175{bottom:212.800049pt;}
.y13e{bottom:214.880066pt;}
.yd9{bottom:216.000061pt;}
.y72{bottom:222.400086pt;}
.y174{bottom:224.640076pt;}
.y11f{bottom:225.440064pt;}
.ya6{bottom:226.880066pt;}
.yfa{bottom:228.000061pt;}
.y13d{bottom:233.600037pt;}
.yd8{bottom:234.880066pt;}
.y173{bottom:236.480042pt;}
.y71{bottom:241.760071pt;}
.y11e{bottom:244.160035pt;}
.ya5{bottom:245.760071pt;}
.yf9{bottom:246.880066pt;}
.y13c{bottom:252.320069pt;}
.yd7{bottom:253.600037pt;}
.y70{bottom:261.120057pt;}
.y11d{bottom:263.040039pt;}
.y172{bottom:264.320069pt;}
.yf8{bottom:269.120057pt;}
.ya4{bottom:271.200074pt;}
.yd6{bottom:272.480042pt;}
.y171{bottom:276.160035pt;}
.y13b{bottom:277.920044pt;}
.y6f{bottom:280.640076pt;}
.y11c{bottom:281.760071pt;}
.yf7{bottom:288.000061pt;}
.ya3{bottom:289.920044pt;}
.yd5{bottom:291.200074pt;}
.y170{bottom:292.000061pt;}
.y47{bottom:293.600037pt;}
.y46{bottom:296.160035pt;}
.y6e{bottom:300.000061pt;}
.y11b{bottom:300.640076pt;}
.y13a{bottom:303.360047pt;}
.y16f{bottom:303.840088pt;}
.yf6{bottom:306.720032pt;}
.ya2{bottom:308.800049pt;}
.yd4{bottom:309.920044pt;}
.y16e{bottom:315.680054pt;}
.y11a{bottom:319.360047pt;}
.y6d{bottom:319.680054pt;}
.y139{bottom:322.080079pt;}
.y45{bottom:324.800049pt;}
.yf5{bottom:325.440064pt;}
.ya1{bottom:327.520081pt;}
.yd3{bottom:335.520081pt;}
.y44{bottom:336.800049pt;}
.y119{bottom:338.080079pt;}
.y16d{bottom:338.560059pt;}
.y6c{bottom:339.520081pt;}
.y138{bottom:340.800049pt;}
.ya0{bottom:346.240052pt;}
.y43{bottom:350.080079pt;}
.y118{bottom:356.960083pt;}
.y6b{bottom:359.680054pt;}
.yd2{bottom:360.960083pt;}
.yf4{bottom:363.840088pt;}
.y9f{bottom:365.120057pt;}
.y42{bottom:366.240052pt;}
.y16c{bottom:371.520081pt;}
.y117{bottom:375.680054pt;}
.y137{bottom:378.400086pt;}
.yd1{bottom:379.360047pt;}
.y6a{bottom:380.000061pt;}
.y41{bottom:381.920044pt;}
.yf3{bottom:383.200074pt;}
.y16b{bottom:383.360047pt;}
.y9e{bottom:383.840088pt;}
.y40{bottom:394.560059pt;}
.yd0{bottom:395.200074pt;}
.y136{bottom:397.280030pt;}
.y69{bottom:399.360047pt;}
.yf2{bottom:402.080079pt;}
.y9d{bottom:402.720032pt;}
.yce{bottom:405.280030pt;}
.y16a{bottom:407.040039pt;}
.y3f{bottom:407.200074pt;}
.y135{bottom:416.000061pt;}
.y68{bottom:416.480042pt;}
.y169{bottom:418.880066pt;}
.y3e{bottom:419.840088pt;}
.yf1{bottom:420.800049pt;}
.y9c{bottom:421.440064pt;}
.y116{bottom:422.720032pt;}
.ycd{bottom:426.720032pt;}
.y67{bottom:432.000061pt;}
.y3d{bottom:432.480042pt;}
.y134{bottom:434.720032pt;}
.yf0{bottom:439.520081pt;}
.y9b{bottom:440.320069pt;}
.ycc{bottom:443.200074pt;}
.y3c{bottom:445.120057pt;}
.y115{bottom:446.720032pt;}
.y168{bottom:446.880066pt;}
.y133{bottom:453.600037pt;}
.y3b{bottom:457.760071pt;}
.y9a{bottom:459.040039pt;}
.ycb{bottom:460.800049pt;}
.y66{bottom:461.120057pt;}
.y3a{bottom:470.400086pt;}
.y132{bottom:472.320069pt;}
.yef{bottom:474.560059pt;}
.y167{bottom:475.360047pt;}
.y65{bottom:475.680054pt;}
.y99{bottom:477.760071pt;}
.y114{bottom:481.920044pt;}
.y39{bottom:483.040039pt;}
.y64{bottom:484.000061pt;}
.yca{bottom:486.240052pt;}
.y166{bottom:487.520081pt;}
.y131{bottom:491.200074pt;}
.y63{bottom:495.200074pt;}
.y38{bottom:495.680054pt;}
.y98{bottom:496.640076pt;}
.y113{bottom:497.600037pt;}
.yee{bottom:498.400086pt;}
.y165{bottom:504.320069pt;}
.yc9{bottom:504.960083pt;}
.y62{bottom:506.240052pt;}
.y37{bottom:508.320069pt;}
.y130{bottom:509.920044pt;}
.y112{bottom:513.440064pt;}
.y97{bottom:515.360047pt;}
.y61{bottom:520.640076pt;}
.y36{bottom:520.960083pt;}
.yc8{bottom:523.840088pt;}
.y60{bottom:528.320069pt;}
.y12f{bottom:528.640076pt;}
.y111{bottom:529.280030pt;}
.y164{bottom:532.960083pt;}
.y35{bottom:533.600037pt;}
.y96{bottom:534.240052pt;}
.y5f{bottom:539.360047pt;}
.yc7{bottom:542.560059pt;}
.y163{bottom:544.800049pt;}
.y110{bottom:545.120057pt;}
.y34{bottom:546.240052pt;}
.y12e{bottom:547.520081pt;}
.yed{bottom:549.280030pt;}
.y5e{bottom:550.400086pt;}
.y95{bottom:552.960083pt;}
.y162{bottom:556.640076pt;}
.y33{bottom:559.520081pt;}
.y5d{bottom:561.440064pt;}
.y12d{bottom:566.240052pt;}
.yec{bottom:568.160035pt;}
.y94{bottom:571.680054pt;}
.y161{bottom:572.960083pt;}
.y32{bottom:575.840088pt;}
.yc6{bottom:580.160035pt;}
.y10f{bottom:580.480042pt;}
.y5c{bottom:583.680054pt;}
.y12c{bottom:585.120057pt;}
.yeb{bottom:586.880066pt;}
.y93{bottom:590.560059pt;}
.y31{bottom:592.160035pt;}
.y5b{bottom:594.720032pt;}
.y10e{bottom:596.320069pt;}
.y19f{bottom:597.600037pt;}
.yc5{bottom:598.880066pt;}
.y160{bottom:601.600037pt;}
.y12b{bottom:603.840088pt;}
.yea{bottom:605.600037pt;}
.y5a{bottom:605.760071pt;}
.y30{bottom:608.480042pt;}
.y92{bottom:609.280030pt;}
.y10d{bottom:612.160065pt;}
.y15f{bottom:613.440064pt;}
.y59{bottom:616.800049pt;}
.y19e{bottom:621.120057pt;}
.y12a{bottom:622.560059pt;}
.y2f{bottom:624.160065pt;}
.yc4{bottom:624.320069pt;}
.ye9{bottom:624.480072pt;}
.y10c{bottom:627.840058pt;}
.y91{bottom:628.160065pt;}
.y15e{bottom:629.760071pt;}
.y58{bottom:631.200074pt;}
.y2e{bottom:636.800049pt;}
.y57{bottom:638.880066pt;}
.y129{bottom:641.440064pt;}
.y19d{bottom:642.400055pt;}
.ye8{bottom:643.200074pt;}
.y15d{bottom:645.120057pt;}
.y90{bottom:646.880066pt;}
.y2d{bottom:649.440064pt;}
.y56{bottom:649.920044pt;}
.yc3{bottom:652.640046pt;}
.y15c{bottom:656.960053pt;}
.y128{bottom:660.160065pt;}
.y55{bottom:660.960053pt;}
.y2c{bottom:662.080048pt;}
.y19c{bottom:663.040070pt;}
.y8f{bottom:665.600068pt;}
.y10b{bottom:666.400055pt;}
.y15b{bottom:668.800049pt;}
.y54{bottom:672.160065pt;}
.y2b{bottom:674.720063pt;}
.y19b{bottom:674.880066pt;}
.y127{bottom:679.040070pt;}
.y15a{bottom:680.640046pt;}
.y10a{bottom:682.080048pt;}
.y53{bottom:683.200074pt;}
.y8e{bottom:684.480072pt;}
.yc2{bottom:685.920044pt;}
.y19a{bottom:686.720063pt;}
.y2a{bottom:687.360047pt;}
.ye7{bottom:687.520050pt;}
.y159{bottom:692.480072pt;}
.y52{bottom:697.600068pt;}
.y126{bottom:697.760071pt;}
.y109{bottom:697.920044pt;}
.y199{bottom:698.560059pt;}
.y29{bottom:700.000061pt;}
.y8d{bottom:703.200074pt;}
.y158{bottom:704.320069pt;}
.y51{bottom:705.440064pt;}
.y28{bottom:712.640046pt;}
.ye6{bottom:712.960053pt;}
.y108{bottom:713.760071pt;}
.y198{bottom:714.400055pt;}
.yc1{bottom:716.480072pt;}
.y50{bottom:717.120057pt;}
.y157{bottom:720.640046pt;}
.y8c{bottom:722.080048pt;}
.y27{bottom:725.280060pt;}
.y197{bottom:726.240052pt;}
.y4f{bottom:728.320069pt;}
.yc0{bottom:735.360047pt;}
.y26{bottom:737.920044pt;}
.y196{bottom:738.080048pt;}
.ye5{bottom:738.400055pt;}
.y4e{bottom:740.160065pt;}
.y8b{bottom:740.800049pt;}
.y156{bottom:749.280060pt;}
.y25{bottom:750.560059pt;}
.y4d{bottom:752.000061pt;}
.y107{bottom:753.280060pt;}
.y195{bottom:753.920044pt;}
.ybf{bottom:754.080048pt;}
.y8a{bottom:759.520050pt;}
.y155{bottom:761.120057pt;}
.y24{bottom:763.200074pt;}
.y4c{bottom:763.840058pt;}
.y194{bottom:765.760071pt;}
.y106{bottom:769.120057pt;}
.ybe{bottom:772.960053pt;}
.y4b{bottom:775.680054pt;}
.y23{bottom:775.840058pt;}
.y193{bottom:777.600068pt;}
.y89{bottom:778.400055pt;}
.y154{bottom:784.800049pt;}
.y105{bottom:784.960053pt;}
.y4a{bottom:787.520050pt;}
.y22{bottom:788.480072pt;}
.ye4{bottom:789.280060pt;}
.ybd{bottom:791.680054pt;}
.y192{bottom:793.440064pt;}
.y153{bottom:796.640046pt;}
.y88{bottom:797.120057pt;}
.y49{bottom:797.280060pt;}
.y104{bottom:800.640046pt;}
.y21{bottom:801.760071pt;}
.y191{bottom:805.280060pt;}
.y152{bottom:808.640046pt;}
.ybc{bottom:810.400055pt;}
.y102{bottom:811.520050pt;}
.ye3{bottom:814.720063pt;}
.y87{bottom:816.000061pt;}
.y190{bottom:817.120057pt;}
.y151{bottom:820.480072pt;}
.y20{bottom:826.560059pt;}
.y18f{bottom:828.960053pt;}
.ybb{bottom:829.280060pt;}
.y86{bottom:834.720063pt;}
.y150{bottom:836.800049pt;}
.ye2{bottom:840.160065pt;}
.y18e{bottom:844.800049pt;}
.yba{bottom:848.000061pt;}
.y1f{bottom:851.680054pt;}
.y85{bottom:853.440064pt;}
.y18d{bottom:856.640046pt;}
.y14f{bottom:865.440064pt;}
.ye1{bottom:865.600068pt;}
.yb9{bottom:866.880066pt;}
.y84{bottom:872.320054pt;}
.y18c{bottom:872.640061pt;}
.y14e{bottom:877.280060pt;}
.y1e{bottom:882.720063pt;}
.y18b{bottom:884.480057pt;}
.yb8{bottom:885.600052pt;}
.y14d{bottom:889.120057pt;}
.y83{bottom:891.040055pt;}
.y18a{bottom:896.320054pt;}
.y14c{bottom:900.960053pt;}
.y1d{bottom:902.080063pt;}
.yb7{bottom:904.480057pt;}
.y189{bottom:908.160065pt;}
.y82{bottom:909.920060pt;}
.y1c{bottom:923.200058pt;}
.y188{bottom:924.000061pt;}
.y14b{bottom:926.080063pt;}
.y81{bottom:928.640061pt;}
.y187{bottom:935.840058pt;}
.y14a{bottom:937.920060pt;}
.yb6{bottom:941.920060pt;}
.y80{bottom:947.360062pt;}
.y186{bottom:947.680054pt;}
.y149{bottom:949.760056pt;}
.y1b{bottom:952.000061pt;}
.ye0{bottom:954.080063pt;}
.y185{bottom:959.520066pt;}
.yb5{bottom:960.800064pt;}
.y148{bottom:961.600052pt;}
.y7f{bottom:966.240052pt;}
.y147{bottom:973.600052pt;}
.y184{bottom:975.360062pt;}
.yb4{bottom:979.520066pt;}
.y1a{bottom:980.960053pt;}
.y7e{bottom:984.960053pt;}
.y183{bottom:987.200058pt;}
.yb3{bottom:998.400055pt;}
.y182{bottom:999.040062pt;}
.y146{bottom:1003.200058pt;}
.y7d{bottom:1003.840058pt;}
.yd{bottom:1006.080056pt;}
.y181{bottom:1014.880059pt;}
.yb2{bottom:1017.120057pt;}
.yc{bottom:1021.920060pt;}
.y180{bottom:1026.720063pt;}
.y145{bottom:1032.960061pt;}
.y7c{bottom:1035.680062pt;}
.yb1{bottom:1035.840058pt;}
.y17f{bottom:1038.560059pt;}
.ya{bottom:1043.360062pt;}
.y9{bottom:1047.520058pt;}
.y4{bottom:1055.360062pt;}
.yb0{bottom:1055.680062pt;}
.y7{bottom:1063.680058pt;}
.y6{bottom:1067.840058pt;}
.y7b{bottom:1068.000058pt;}
.y3{bottom:1068.160057pt;}
.yaf{bottom:1068.480057pt;}
.y2{bottom:1080.640061pt;}
.y7a{bottom:1080.960061pt;}
.yae{bottom:1081.440060pt;}
.y5{bottom:1087.840058pt;}
.y79{bottom:1093.600060pt;}
.y1{bottom:1093.760060pt;}
.h1e{height:6.240051pt;}
.h15{height:11.839997pt;}
.h14{height:12.160034pt;}
.h24{height:15.680024pt;}
.h23{height:15.680053pt;}
.h8{height:19.999996pt;}
.h6{height:20.000000pt;}
.h19{height:21.268362pt;}
.h18{height:21.268482pt;}
.h1c{height:22.579000pt;}
.h1a{height:22.740098pt;}
.h1b{height:24.132172pt;}
.hb{height:25.918463pt;}
.h4{height:29.941742pt;}
.hf{height:32.314834pt;}
.h17{height:34.708546pt;}
.h1d{height:36.119161pt;}
.h12{height:37.700696pt;}
.h16{height:39.232917pt;}
.h26{height:39.844797pt;}
.h2{height:40.094296pt;}
.h13{height:40.737520pt;}
.h1f{height:40.823283pt;}
.h3{height:41.680915pt;}
.h11{height:42.374525pt;}
.h20{height:43.144971pt;}
.h21{height:48.033900pt;}
.h25{height:50.465900pt;}
.h10{height:51.687706pt;}
.he{height:55.055044pt;}
.h27{height:55.702458pt;}
.hd{height:60.930289pt;}
.h5{height:63.367405pt;}
.h7{height:64.765215pt;}
.h9{height:68.362453pt;}
.h22{height:68.706660pt;}
.hc{height:91.395427pt;}
.ha{height:112.895135pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w5{width:4.959992pt;}
.w6{width:4.959999pt;}
.w8{width:5.279999pt;}
.wa{width:5.280029pt;}
.w13{width:5.599975pt;}
.w12{width:5.599976pt;}
.wc{width:5.599998pt;}
.we{width:5.600006pt;}
.w2{width:7.200012pt;}
.w10{width:7.359985pt;}
.wd{width:15.679993pt;}
.w11{width:19.360016pt;}
.w14{width:20.319946pt;}
.wf{width:20.320007pt;}
.w7{width:30.400025pt;}
.wb{width:30.720002pt;}
.w9{width:43.359986pt;}
.w4{width:72.320007pt;}
.w3{width:133.600037pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:48.000000pt;}
.x46{left:62.240002pt;}
.xa{left:72.639999pt;}
.x31{left:75.199997pt;}
.x12{left:77.760002pt;}
.x1{left:79.680000pt;}
.x32{left:84.000000pt;}
.x7{left:91.519997pt;}
.x13{left:95.040001pt;}
.x22{left:104.160004pt;}
.x23{left:108.320000pt;}
.x11{left:110.559998pt;}
.x21{left:116.000000pt;}
.x20{left:119.360001pt;}
.x1f{left:140.639999pt;}
.x10{left:145.600006pt;}
.x34{left:163.679993pt;}
.x47{left:166.240005pt;}
.x15{left:170.080002pt;}
.x24{left:184.320007pt;}
.x16{left:188.960007pt;}
.x33{left:192.160004pt;}
.x25{left:200.000000pt;}
.xb{left:207.839996pt;}
.x8{left:217.122745pt;}
.x6b{left:230.240005pt;}
.xc{left:236.800003pt;}
.xd{left:239.360001pt;}
.x4a{left:241.600006pt;}
.x4b{left:245.600006pt;}
.x4c{left:255.360001pt;}
.x1e{left:261.760010pt;}
.x66{left:263.040009pt;}
.x60{left:264.000000pt;}
.x36{left:265.279999pt;}
.x48{left:267.839996pt;}
.x1d{left:282.880005pt;}
.x17{left:289.760010pt;}
.x1a{left:291.359985pt;}
.x35{left:293.760010pt;}
.x4e{left:295.359985pt;}
.x19{left:297.760010pt;}
.x4f{left:299.200012pt;}
.x26{left:303.839996pt;}
.x18{left:306.559998pt;}
.x50{left:308.959991pt;}
.xe{left:322.399994pt;}
.x67{left:346.720001pt;}
.x39{left:356.320007pt;}
.x38{left:359.040009pt;}
.x58{left:362.880005pt;}
.x27{left:364.640015pt;}
.x37{left:368.320007pt;}
.x28{left:372.000000pt;}
.x5a{left:373.760010pt;}
.x51{left:376.480011pt;}
.x5b{left:377.600006pt;}
.x5c{left:387.359985pt;}
.x5d{left:399.839996pt;}
.x5e{left:403.839996pt;}
.x55{left:405.760010pt;}
.x49{left:410.880005pt;}
.x5f{left:413.600006pt;}
.x14{left:418.559998pt;}
.x45{left:420.799988pt;}
.x3a{left:423.679993pt;}
.x61{left:427.519989pt;}
.x29{left:431.839996pt;}
.x62{left:441.119995pt;}
.x2a{left:451.200012pt;}
.x1b{left:465.440002pt;}
.x2{left:499.200012pt;}
.x3c{left:506.559998pt;}
.x1c{left:508.799988pt;}
.x3d{left:511.839996pt;}
.x3{left:519.840027pt;}
.x2b{left:527.200012pt;}
.x6c{left:528.640015pt;}
.x6a{left:533.119995pt;}
.x3b{left:535.039978pt;}
.x4d{left:536.159973pt;}
.x2c{left:542.880005pt;}
.x5{left:556.320007pt;}
.x63{left:558.719971pt;}
.x68{left:560.000000pt;}
.x64{left:562.559998pt;}
.x52{left:564.159973pt;}
.x53{left:568.159973pt;}
.x56{left:571.520020pt;}
.x65{left:572.799988pt;}
.x69{left:574.400024pt;}
.x54{left:577.919983pt;}
.x59{left:579.679993pt;}
.x57{left:581.280029pt;}
.x3f{left:601.440002pt;}
.x43{left:604.000000pt;}
.x40{left:606.719971pt;}
.x2d{left:619.840027pt;}
.x3e{left:629.919983pt;}
.x2e{left:640.000000pt;}
.x9{left:643.520020pt;}
.xf{left:660.159973pt;}
.x44{left:700.320007pt;}
.x42{left:702.239990pt;}
.x2f{left:707.840027pt;}
.x41{left:711.520020pt;}
.x4{left:714.080017pt;}
.x30{left:715.200012pt;}
}




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