
    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_8126c1c506400c7110b009ab.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_0838743d5a018ba35322b7bb.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_a18b3c51c7ddcd138c91d7f3.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_82e500484c15369236db8ce8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.692871;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_686be5ca5c88199c5415d231.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ec0cebd1b1345b5a1e3e9fe1.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v6{vertical-align:-84.239870px;}
.v3{vertical-align:-15.120072px;}
.v5{vertical-align:-2.159915px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880063px;}
.v2{vertical-align:15.119932px;}
.v1{vertical-align:23.759995px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.214214px;}
.ls1{letter-spacing:0.327797px;}
.ls3{letter-spacing:535.992680px;}
.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:-180.007191px;}
.ws1{word-spacing:-15.875132px;}
.ws0{word-spacing:-15.500719px;}
.ws4{word-spacing:-12.370786px;}
.wsa{word-spacing:-11.336823px;}
.wsb{word-spacing:-11.165801px;}
.ws5{word-spacing:-10.564954px;}
.ws6{word-spacing:-9.934234px;}
.ws7{word-spacing:-9.000349px;}
.ws8{word-spacing:-8.644655px;}
.ws3{word-spacing:-8.515045px;}
.ws9{word-spacing:0.000000px;}
._12{margin-left:-12.833112px;}
._40{margin-left:-11.746900px;}
._a{margin-left:-6.175680px;}
._b{margin-left:-4.401901px;}
._8{margin-left:-2.907301px;}
._0{margin-left:-1.640221px;}
._1{width:1.123241px;}
._9{width:2.489854px;}
._5{width:3.925397px;}
._7{width:4.930400px;}
._6{width:6.108492px;}
._f{width:7.314818px;}
._2{width:9.098289px;}
._3{width:10.731315px;}
._20{width:11.907820px;}
._10{width:13.014542px;}
._11{width:14.148590px;}
._21{width:16.061582px;}
._14{width:17.082722px;}
._13{width:18.229719px;}
._1e{width:19.370859px;}
._c{width:20.412850px;}
._d{width:21.546898px;}
._18{width:22.577026px;}
._15{width:23.598983px;}
._1f{width:24.743779px;}
._19{width:26.393364px;}
._1b{width:27.701656px;}
._1a{width:29.066830px;}
._25{width:30.503290px;}
._26{width:32.024707px;}
._3a{width:33.603741px;}
._3c{width:34.627529px;}
._e{width:35.965498px;}
._1c{width:38.054225px;}
._1d{width:39.362517px;}
._27{width:40.443280px;}
._28{width:41.637807px;}
._3b{width:43.458039px;}
._41{width:44.722876px;}
._23{width:54.606960px;}
._24{width:55.815892px;}
._3e{width:62.684240px;}
._3d{width:63.765002px;}
._3f{width:78.440623px;}
._22{width:126.200549px;}
._16{width:136.331327px;}
._17{width:202.519076px;}
._2e{width:321.821048px;}
._2a{width:323.750720px;}
._2f{width:385.467474px;}
._2b{width:386.901049px;}
._34{width:395.148584px;}
._36{width:396.331760px;}
._37{width:397.707478px;}
._38{width:407.305517px;}
._29{width:421.672384px;}
._39{width:440.744322px;}
._35{width:458.923876px;}
._31{width:472.817882px;}
._2c{width:511.893740px;}
._32{width:518.448449px;}
._33{width:536.448449px;}
._2d{width:557.283098px;}
._30{width:575.283098px;}
._4{width:1196.879058px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(219,65,67);}
.fc2{color:rgb(1,3,2);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:27.361080px;}
.fse{font-size:36.001395px;}
.fs9{font-size:38.881485px;}
.fs5{font-size:41.759538px;}
.fsc{font-size:41.761620px;}
.fsb{font-size:45.361800px;}
.fs0{font-size:48.241800px;}
.fsf{font-size:50.985391px;}
.fsa{font-size:54.002250px;}
.fs7{font-size:56.882250px;}
.fs2{font-size:59.762250px;}
.fs11{font-size:60.117237px;}
.fs12{font-size:63.362250px;}
.fs8{font-size:66.242700px;}
.fs1{font-size:74.882700px;}
.fs3{font-size:77.763154px;}
.fs10{font-size:81.363150px;}
.fs6{font-size:95.763600px;}
.fs4{font-size:180.007191px;}
.y0{bottom:0.000000px;}
.y4b{bottom:2.879998px;}
.y4d{bottom:2.880014px;}
.yb{bottom:4.679995px;}
.y8{bottom:4.680000px;}
.yd3{bottom:5.760012px;}
.yda{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;}
.y148{bottom:108.720016px;}
.y123{bottom:110.160049px;}
.yd0{bottom:112.320099px;}
.y139{bottom:115.200096px;}
.y10{bottom:115.572842px;}
.y162{bottom:123.660049px;}
.y140{bottom:124.380066px;}
.yfc{bottom:125.640060px;}
.y9e{bottom:127.080093px;}
.ye{bottom:127.800041px;}
.y147{bottom:129.960091px;}
.y122{bottom:131.220085px;}
.ycf{bottom:133.380066px;}
.y196{bottom:133.740074px;}
.y138{bottom:136.440033px;}
.y161{bottom:136.980079px;}
.y13f{bottom:145.440033px;}
.yfb{bottom:146.700096px;}
.y195{bottom:147.960091px;}
.y9d{bottom:148.320099px;}
.y160{bottom:150.300041px;}
.y146{bottom:151.020058px;}
.y121{bottom:152.280052px;}
.yce{bottom:154.440033px;}
.y137{bottom:157.500068px;}
.y15f{bottom:163.620072px;}
.y13e{bottom:166.680039px;}
.yfa{bottom:167.760064px;}
.y9c{bottom:169.380066px;}
.y194{bottom:169.560036px;}
.y145{bottom:172.080093px;}
.y120{bottom:173.520058px;}
.ycd{bottom:175.680039px;}
.y136{bottom:178.560036px;}
.y15e{bottom:181.980079px;}
.y13d{bottom:187.740074px;}
.yf9{bottom:189.000068px;}
.y9b{bottom:190.440033px;}
.y193{bottom:191.340088px;}
.y144{bottom:193.320099px;}
.y11f{bottom:194.580093px;}
.ycc{bottom:196.740074px;}
.y135{bottom:199.800041px;}
.y10b{bottom:205.560036px;}
.y13c{bottom:208.800041px;}
.yf8{bottom:210.060036px;}
.y9a{bottom:211.680039px;}
.y15d{bottom:214.200096px;}
.y143{bottom:214.380066px;}
.y11e{bottom:215.820099px;}
.ycb{bottom:217.800041px;}
.y134{bottom:220.860077px;}
.y10a{bottom:226.620072px;}
.y192{bottom:227.340088px;}
.y15c{bottom:227.520058px;}
.yf7{bottom:231.300041px;}
.y99{bottom:232.740074px;}
.y142{bottom:235.620072px;}
.y11d{bottom:236.880066px;}
.y15b{bottom:240.840088px;}
.y191{bottom:241.560036px;}
.y133{bottom:242.100083px;}
.y13b{bottom:248.220085px;}
.yca{bottom:250.920043px;}
.yf6{bottom:252.360077px;}
.y98{bottom:253.980079px;}
.y15a{bottom:254.160049px;}
.y190{bottom:255.780052px;}
.y141{bottom:256.680039px;}
.y11c{bottom:257.940033px;}
.y132{bottom:263.160049px;}
.y4a{bottom:264.420043px;}
.y49{bottom:267.300041px;}
.y159{bottom:267.480079px;}
.yf5{bottom:273.420043px;}
.y97{bottom:275.040047px;}
.y18f{bottom:277.380066px;}
.y109{bottom:277.740074px;}
.y11b{bottom:279.180039px;}
.y158{bottom:280.800041px;}
.y48{bottom:281.520058px;}
.yc9{bottom:284.220085px;}
.y18e{bottom:291.600083px;}
.y13a{bottom:293.220085px;}
.y157{bottom:294.120072px;}
.yf4{bottom:294.660049px;}
.y47{bottom:295.740074px;}
.y96{bottom:296.100083px;}
.y108{bottom:298.980079px;}
.y11a{bottom:300.240074px;}
.yc8{bottom:305.280052px;}
.y131{bottom:305.460091px;}
.y46{bottom:310.320099px;}
.y156{bottom:312.480079px;}
.y18d{bottom:313.380066px;}
.yf3{bottom:315.720085px;}
.y95{bottom:317.340088px;}
.y107{bottom:320.040047px;}
.y119{bottom:321.480079px;}
.yc7{bottom:326.520058px;}
.y45{bottom:326.700096px;}
.y18c{bottom:327.600083px;}
.y155{bottom:329.760064px;}
.y94{bottom:338.400055px;}
.y106{bottom:341.280052px;}
.y18b{bottom:341.820099px;}
.y118{bottom:342.540047px;}
.y154{bottom:343.080093px;}
.y44{bottom:344.700096px;}
.yc6{bottom:347.580093px;}
.y130{bottom:347.760064px;}
.yf2{bottom:348.840088px;}
.y153{bottom:356.400055px;}
.y93{bottom:359.640060px;}
.y43{bottom:360.720085px;}
.y105{bottom:362.340088px;}
.y117{bottom:363.600083px;}
.yc5{bottom:368.640060px;}
.y12f{bottom:368.820099px;}
.y152{bottom:369.720085px;}
.yf1{bottom:370.080093px;}
.y42{bottom:376.740074px;}
.y18a{bottom:377.820099px;}
.y92{bottom:380.700096px;}
.y151{bottom:383.040047px;}
.y104{bottom:383.400055px;}
.y116{bottom:384.840088px;}
.yc4{bottom:389.880066px;}
.yf0{bottom:391.140060px;}
.y189{bottom:392.040047px;}
.y41{bottom:392.580093px;}
.y150{bottom:396.360077px;}
.y91{bottom:401.760064px;}
.y103{bottom:404.640060px;}
.y115{bottom:405.900055px;}
.y40{bottom:408.600083px;}
.y14f{bottom:409.680039px;}
.yc3{bottom:410.940033px;}
.y12e{bottom:411.120072px;}
.yef{bottom:412.200096px;}
.y188{bottom:413.640060px;}
.y90{bottom:423.000068px;}
.y3f{bottom:424.620072px;}
.y102{bottom:425.700096px;}
.y114{bottom:427.140060px;}
.y187{bottom:427.860077px;}
.yc2{bottom:432.180039px;}
.yee{bottom:433.440033px;}
.y14e{bottom:436.320099px;}
.y3e{bottom:440.640060px;}
.y8f{bottom:444.060036px;}
.y101{bottom:446.940033px;}
.y113{bottom:448.200096px;}
.y14d{bottom:449.640060px;}
.yc1{bottom:453.240074px;}
.y12d{bottom:453.420043px;}
.yed{bottom:454.500068px;}
.y3d{bottom:456.660049px;}
.y14c{bottom:462.960091px;}
.y186{bottom:463.860077px;}
.y8e{bottom:465.300041px;}
.y6b{bottom:467.820099px;}
.y100{bottom:468.000068px;}
.y112{bottom:469.260064px;}
.y3c{bottom:472.680039px;}
.yc0{bottom:474.300041px;}
.y12c{bottom:474.480079px;}
.yec{bottom:475.740074px;}
.y14b{bottom:476.280052px;}
.y185{bottom:478.080093px;}
.y6a{bottom:482.040047px;}
.y8d{bottom:486.360077px;}
.y3b{bottom:488.700096px;}
.yff{bottom:489.060036px;}
.y111{bottom:490.500068px;}
.y14a{bottom:494.640060px;}
.y69{bottom:495.360077px;}
.y12b{bottom:495.720085px;}
.yeb{bottom:496.800041px;}
.y184{bottom:499.860077px;}
.y3a{bottom:504.720085px;}
.y8c{bottom:507.420043px;}
.yfe{bottom:510.300041px;}
.y110{bottom:511.560036px;}
.y183{bottom:514.080093px;}
.y12a{bottom:516.780052px;}
.y68{bottom:517.320099px;}
.yea{bottom:517.860077px;}
.y39{bottom:520.560036px;}
.y8b{bottom:528.660049px;}
.yfd{bottom:531.360077px;}
.y10f{bottom:532.800041px;}
.y182{bottom:535.680039px;}
.y38{bottom:536.580093px;}
.y129{bottom:537.840088px;}
.ye9{bottom:539.100083px;}
.y67{bottom:539.280052px;}
.ybf{bottom:546.840088px;}
.y149{bottom:549.180039px;}
.y8a{bottom:549.720085px;}
.y181{bottom:549.900055px;}
.y37{bottom:552.600083px;}
.y10e{bottom:553.860077px;}
.y128{bottom:559.080093px;}
.ye8{bottom:560.160049px;}
.y66{bottom:561.060036px;}
.y36{bottom:568.620072px;}
.y89{bottom:570.960091px;}
.y180{bottom:571.680039px;}
.ybe{bottom:573.660049px;}
.y127{bottom:580.140060px;}
.ye7{bottom:581.400055px;}
.y65{bottom:583.200096px;}
.y35{bottom:584.640060px;}
.y10d{bottom:585.540047px;}
.y17f{bottom:585.900055px;}
.y88{bottom:592.020058px;}
.ybd{bottom:594.720085px;}
.y34{bottom:600.660049px;}
.ye6{bottom:602.460091px;}
.y126{bottom:604.260064px;}
.y64{bottom:605.520058px;}
.y17e{bottom:607.680039px;}
.y10c{bottom:609.480079px;}
.y87{bottom:613.080093px;}
.ybc{bottom:615.960091px;}
.y33{bottom:620.640060px;}
.y17d{bottom:621.900055px;}
.ye5{bottom:623.700096px;}
.y63{bottom:628.200096px;}
.y1b2{bottom:630.000068px;}
.y86{bottom:634.320099px;}
.y17c{bottom:636.120072px;}
.ybb{bottom:637.020058px;}
.ye4{bottom:648.360077px;}
.y62{bottom:650.880066px;}
.y32{bottom:654.120072px;}
.y85{bottom:655.380066px;}
.y1b1{bottom:656.460091px;}
.y17b{bottom:657.720085px;}
.yba{bottom:658.260064px;}
.y31{bottom:670.500068px;}
.ye3{bottom:671.940033px;}
.y61{bottom:672.840088px;}
.y84{bottom:676.620072px;}
.yb9{bottom:679.320099px;}
.y1b0{bottom:679.500068px;}
.y17a{bottom:686.160049px;}
.y30{bottom:688.500068px;}
.y60{bottom:692.100083px;}
.ye2{bottom:695.520058px;}
.y83{bottom:697.680073px;}
.yb8{bottom:700.380066px;}
.y1af{bottom:700.560070px;}
.y2f{bottom:704.520058px;}
.y179{bottom:707.940067px;}
.y5f{bottom:709.560070px;}
.y1ae{bottom:714.780052px;}
.y82{bottom:718.920078px;}
.y2e{bottom:720.540081px;}
.yb7{bottom:721.620072px;}
.y178{bottom:722.160049px;}
.y2d{bottom:736.380066px;}
.y81{bottom:739.980079px;}
.y5e{bottom:742.500068px;}
.yb6{bottom:742.680073px;}
.y1ad{bottom:750.600083px;}
.y2c{bottom:752.400055px;}
.ye1{bottom:760.320065px;}
.y80{bottom:761.040081px;}
.y177{bottom:762.120072px;}
.yb5{bottom:763.920078px;}
.ye0{bottom:766.080059px;}
.y5d{bottom:767.160049px;}
.y2b{bottom:768.420078px;}
.y1ac{bottom:772.380066px;}
.y5c{bottom:776.700061px;}
.y7f{bottom:782.280052px;}
.y2a{bottom:784.440067px;}
.yb4{bottom:784.980079px;}
.y1ab{bottom:786.600083px;}
.ydf{bottom:789.660049px;}
.y5b{bottom:790.020058px;}
.y29{bottom:800.460056px;}
.y176{bottom:802.440067px;}
.y7e{bottom:803.340054px;}
.yb3{bottom:806.040081px;}
.y5a{bottom:807.120072px;}
.y1aa{bottom:808.380066px;}
.yde{bottom:813.240074px;}
.y28{bottom:816.480079px;}
.y59{bottom:816.660049px;}
.y1a9{bottom:822.600083px;}
.y7d{bottom:824.580059px;}
.yb2{bottom:827.280052px;}
.y58{bottom:829.800076px;}
.y175{bottom:830.880066px;}
.y27{bottom:832.500068px;}
.ydd{bottom:836.820065px;}
.y57{bottom:842.400055px;}
.y1a8{bottom:844.200061px;}
.y174{bottom:845.100083px;}
.y7c{bottom:845.640060px;}
.yb1{bottom:848.340054px;}
.y26{bottom:848.520058px;}
.y56{bottom:855.720051px;}
.y1a7{bottom:858.420078px;}
.ydc{bottom:860.220051px;}
.y25{bottom:864.360077px;}
.y7b{bottom:866.700061px;}
.y55{bottom:869.040081px;}
.yb0{bottom:869.580059px;}
.y125{bottom:872.460056px;}
.y1a6{bottom:880.200061px;}
.y24{bottom:880.380066px;}
.y173{bottom:882.360077px;}
.y54{bottom:882.540081px;}
.ydb{bottom:883.800076px;}
.y7a{bottom:887.940067px;}
.yaf{bottom:890.640060px;}
.y124{bottom:892.440067px;}
.y1a5{bottom:894.420078px;}
.y53{bottom:895.860077px;}
.y23{bottom:896.400055px;}
.yd9{bottom:901.620072px;}
.yd8{bottom:907.380066px;}
.y52{bottom:909.000068px;}
.yae{bottom:911.700061px;}
.y22{bottom:912.420078px;}
.y1a4{bottom:916.200061px;}
.y172{bottom:917.280052px;}
.y51{bottom:922.680073px;}
.y21{bottom:928.440067px;}
.y79{bottom:930.240074px;}
.y1a3{bottom:930.420078px;}
.yd7{bottom:930.960056px;}
.yad{bottom:932.940067px;}
.y171{bottom:936.180073px;}
.y50{bottom:936.540081px;}
.y20{bottom:944.460056px;}
.y4f{bottom:950.400055px;}
.y78{bottom:951.300076px;}
.y1a2{bottom:952.020058px;}
.yac{bottom:954.000068px;}
.yd6{bottom:954.540081px;}
.y4e{bottom:963.540081px;}
.y1f{bottom:964.440067px;}
.y1a1{bottom:966.240074px;}
.y170{bottom:968.400055px;}
.y77{bottom:972.360077px;}
.y4c{bottom:974.520058px;}
.yab{bottom:975.240074px;}
.yd5{bottom:978.120072px;}
.y16f{bottom:981.720068px;}
.y1a0{bottom:988.020058px;}
.y76{bottom:993.600065px;}
.y16e{bottom:995.040064px;}
.yaa{bottom:996.300058px;}
.y1e{bottom:1000.440067px;}
.yd4{bottom:1001.520058px;}
.y19f{bottom:1002.240074px;}
.y16d{bottom:1013.400072px;}
.y75{bottom:1014.660067px;}
.ya9{bottom:1017.540064px;}
.yd2{bottom:1018.800058px;}
.y19e{bottom:1024.020058px;}
.y1d{bottom:1027.620072px;}
.y16c{bottom:1035.720068px;}
.y74{bottom:1035.900072px;}
.y19d{bottom:1038.240074px;}
.ya8{bottom:1038.600065px;}
.yd1{bottom:1047.600065px;}
.y16b{bottom:1052.820065px;}
.y73{bottom:1056.960074px;}
.y1c{bottom:1058.040064px;}
.ya7{bottom:1059.660067px;}
.y19c{bottom:1059.840070px;}
.y16a{bottom:1066.140060px;}
.y1b{bottom:1077.480063px;}
.y72{bottom:1078.020058px;}
.y169{bottom:1079.460074px;}
.ya6{bottom:1080.900072px;}
.y19b{bottom:1081.620072px;}
.y168{bottom:1092.960074px;}
.y19a{bottom:1095.840070px;}
.y71{bottom:1099.260064px;}
.ya5{bottom:1101.960074px;}
.y167{bottom:1106.280069px;}
.y1a{bottom:1106.460074px;}
.y199{bottom:1117.620072px;}
.y166{bottom:1119.600065px;}
.y70{bottom:1120.320065px;}
.ya4{bottom:1123.200061px;}
.yd{bottom:1131.840063px;}
.y165{bottom:1132.920069px;}
.ya3{bottom:1144.260064px;}
.yc{bottom:1149.660067px;}
.y164{bottom:1151.280069px;}
.y198{bottom:1153.440067px;}
.y6f{bottom:1159.560070px;}
.ya2{bottom:1165.320065px;}
.y197{bottom:1167.660067px;}
.y163{bottom:1168.380066px;}
.ya{bottom:1173.780069px;}
.y9{bottom:1178.460065px;}
.y4{bottom:1187.280069px;}
.ya1{bottom:1187.640069px;}
.y7{bottom:1196.640065px;}
.y6{bottom:1201.320065px;}
.y6e{bottom:1201.500065px;}
.y3{bottom:1201.680064px;}
.ya0{bottom:1202.040064px;}
.y2{bottom:1215.720068px;}
.y6d{bottom:1216.080068px;}
.y9f{bottom:1216.620067px;}
.y5{bottom:1223.820065px;}
.y6c{bottom:1230.300067px;}
.y1{bottom:1230.480067px;}
.h13{height:13.320012px;}
.h11{height:14.940034px;}
.h1f{height:17.100014px;}
.h27{height:17.639991px;}
.h25{height:17.639992px;}
.h8{height:22.499995px;}
.h6{height:22.500000px;}
.h19{height:25.137693px;}
.h17{height:27.293211px;}
.h18{height:27.293350px;}
.hb{height:29.158271px;}
.h4{height:33.684460px;}
.h16{height:39.047115px;}
.h12{height:39.315115px;}
.h1a{height:40.634056px;}
.h14{height:42.413283px;}
.h15{height:44.137031px;}
.h2{height:45.106083px;}
.h20{height:45.829710px;}
.h1b{height:45.926194px;}
.h3{height:46.891030px;}
.h2d{height:47.671340px;}
.h2a{height:47.989620px;}
.h23{height:47.989625px;}
.h22{height:47.989692px;}
.h24{height:47.989760px;}
.h29{height:47.989895px;}
.h1c{height:48.538092px;}
.h26{height:48.709638px;}
.h28{height:48.709643px;}
.h21{height:48.709773px;}
.h10{height:50.492104px;}
.h2b{height:51.302138px;}
.hd{height:54.038138px;}
.h2c{height:56.774138px;}
.h1e{height:57.111375px;}
.hf{height:58.148669px;}
.he{height:61.936925px;}
.h2e{height:62.665265px;}
.h5{height:71.288330px;}
.h7{height:72.860867px;}
.h9{height:76.907760px;}
.h1d{height:77.294993px;}
.hc{height:91.166947px;}
.ha{height:121.909167px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w5{width:5.579991px;}
.w12{width:5.939999px;}
.w14{width:5.940033px;}
.we{width:6.299972px;}
.w7{width:6.299990px;}
.w9{width:6.300007px;}
.w10{width:6.300040px;}
.w2{width:8.100014px;}
.w13{width:12.059967px;}
.w11{width:12.060001px;}
.wc{width:18.180003px;}
.w8{width:18.539995px;}
.w15{width:31.500000px;}
.wa{width:43.020022px;}
.wf{width:66.960023px;}
.wd{width:74.160016px;}
.wb{width:78.120003px;}
.w6{width:79.560006px;}
.w4{width:81.360008px;}
.w3{width:157.320030px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:54.000000px;}
.x27{left:57.420001px;}
.x1b{left:70.020002px;}
.xa{left:75.239997px;}
.x10{left:82.439999px;}
.x13{left:87.659998px;}
.x1{left:89.640000px;}
.x7{left:102.959997px;}
.x15{left:106.920001px;}
.x1c{left:149.400003px;}
.x14{left:162.180005px;}
.x11{left:163.800007px;}
.x12{left:183.240006px;}
.x17{left:191.340002px;}
.x1d{left:207.360008px;}
.x18{left:213.300007px;}
.x1e{left:225.719999px;}
.x4f{left:233.819996px;}
.x8{left:244.263088px;}
.x65{left:245.699993px;}
.x36{left:251.819996px;}
.x4c{left:255.060001px;}
.x41{left:257.219999px;}
.x2f{left:265.139992px;}
.xc{left:266.400003px;}
.x39{left:273.060001px;}
.x50{left:275.580008px;}
.x5d{left:282.780001px;}
.x46{left:287.460005px;}
.x67{left:291.240006px;}
.x1f{left:299.339985px;}
.x6a{left:306.180005px;}
.x37{left:307.800007px;}
.x40{left:309.959988px;}
.x4e{left:312.120002px;}
.x6f{left:316.800007px;}
.x66{left:324.000000px;}
.x61{left:328.680005px;}
.x35{left:340.379998px;}
.x20{left:342.180005px;}
.x3b{left:345.420010px;}
.x3f{left:346.860008px;}
.x33{left:350.100014px;}
.x45{left:354.779983px;}
.x31{left:357.120002px;}
.x5e{left:369.899987px;}
.xe{left:372.420010px;}
.x60{left:383.759994px;}
.x43{left:385.379998px;}
.x6b{left:387.180005px;}
.x21{left:392.759994px;}
.xb{left:404.639992px;}
.x5f{left:409.319996px;}
.x53{left:411.839985px;}
.x59{left:422.279983px;}
.x28{left:434.699993px;}
.x4a{left:438.660015px;}
.x57{left:442.800007px;}
.x29{left:446.759994px;}
.x16{left:470.879998px;}
.x47{left:472.319996px;}
.x19{left:473.399987px;}
.x51{left:474.839985px;}
.x48{left:476.100014px;}
.x22{left:488.879998px;}
.x72{left:493.019989px;}
.x62{left:498.420010px;}
.x5b{left:518.220017px;}
.x4d{left:520.019989px;}
.x49{left:522.000000px;}
.x6d{left:523.800007px;}
.x70{left:537.660015px;}
.x3d{left:540.360008px;}
.x23{left:546.660015px;}
.x30{left:548.279983px;}
.xd{left:552.600014px;}
.x3e{left:559.980011px;}
.x2{left:561.600014px;}
.x2c{left:567.899987px;}
.x2a{left:577.620002px;}
.x4b{left:579.600014px;}
.x6c{left:582.480011px;}
.x3{left:584.820030px;}
.x2b{left:589.679970px;}
.x5a{left:590.940033px;}
.x55{left:598.320030px;}
.x2d{left:599.399987px;}
.x64{left:607.500000px;}
.x38{left:618.299973px;}
.x24{left:620.460023px;}
.x5{left:625.860008px;}
.x69{left:634.139992px;}
.x68{left:638.460023px;}
.x54{left:644.580025px;}
.x71{left:645.659981px;}
.x1a{left:648.000000px;}
.x44{left:649.080025px;}
.x58{left:650.340019px;}
.x34{left:653.759994px;}
.x42{left:657.179970px;}
.x32{left:659.519989px;}
.x56{left:662.399987px;}
.x3c{left:673.740006px;}
.x52{left:676.620002px;}
.x73{left:679.860008px;}
.x63{left:682.919975px;}
.x6e{left:689.580025px;}
.x5c{left:694.620002px;}
.x25{left:714.779983px;}
.x9{left:723.960023px;}
.x2e{left:734.399987px;}
.xf{left:735.659981px;}
.x26{left:781.559967px;}
.x3a{left:786.600014px;}
.x4{left:803.340019px;}
@media print{
.v6{vertical-align:-74.879884pt;}
.v3{vertical-align:-13.440064pt;}
.v5{vertical-align:-1.919924pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560056pt;}
.v2{vertical-align:13.439940pt;}
.v1{vertical-align:21.119996pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.190413pt;}
.ls1{letter-spacing:0.291376pt;}
.ls3{letter-spacing:476.437938pt;}
.ws2{word-spacing:-160.006392pt;}
.ws1{word-spacing:-14.111229pt;}
.ws0{word-spacing:-13.778417pt;}
.ws4{word-spacing:-10.996254pt;}
.wsa{word-spacing:-10.077176pt;}
.wsb{word-spacing:-9.925156pt;}
.ws5{word-spacing:-9.391070pt;}
.ws6{word-spacing:-8.830430pt;}
.ws7{word-spacing:-8.000310pt;}
.ws8{word-spacing:-7.684138pt;}
.ws3{word-spacing:-7.568929pt;}
.ws9{word-spacing:0.000000pt;}
._12{margin-left:-11.407211pt;}
._40{margin-left:-10.441689pt;}
._a{margin-left:-5.489493pt;}
._b{margin-left:-3.912801pt;}
._8{margin-left:-2.584268pt;}
._0{margin-left:-1.457974pt;}
._1{width:0.998436pt;}
._9{width:2.213203pt;}
._5{width:3.489241pt;}
._7{width:4.382577pt;}
._6{width:5.429770pt;}
._f{width:6.502060pt;}
._2{width:8.087368pt;}
._3{width:9.538947pt;}
._20{width:10.584729pt;}
._10{width:11.568482pt;}
._11{width:12.576524pt;}
._21{width:14.276962pt;}
._14{width:15.184642pt;}
._13{width:16.204194pt;}
._1e{width:17.218541pt;}
._c{width:18.144756pt;}
._d{width:19.152798pt;}
._18{width:20.068468pt;}
._15{width:20.976874pt;}
._1f{width:21.994470pt;}
._19{width:23.460768pt;}
._1b{width:24.623694pt;}
._1a{width:25.837182pt;}
._25{width:27.114036pt;}
._26{width:28.466406pt;}
._3a{width:29.869992pt;}
._3c{width:30.780025pt;}
._e{width:31.969332pt;}
._1c{width:33.825978pt;}
._1d{width:34.988904pt;}
._27{width:35.949582pt;}
._28{width:37.011384pt;}
._3b{width:38.629368pt;}
._41{width:39.753668pt;}
._23{width:48.539520pt;}
._24{width:49.614126pt;}
._3e{width:55.719324pt;}
._3d{width:56.680002pt;}
._3f{width:69.724998pt;}
._22{width:112.178266pt;}
._16{width:121.183402pt;}
._17{width:180.016957pt;}
._2e{width:286.063154pt;}
._2a{width:287.778418pt;}
._2f{width:342.637754pt;}
._2b{width:343.912043pt;}
._34{width:351.243186pt;}
._36{width:352.294898pt;}
._37{width:353.517758pt;}
._38{width:362.049349pt;}
._29{width:374.819897pt;}
._39{width:391.772730pt;}
._35{width:407.932334pt;}
._31{width:420.282562pt;}
._2c{width:455.016658pt;}
._32{width:460.843066pt;}
._33{width:476.843066pt;}
._2d{width:495.362754pt;}
._30{width:511.362754pt;}
._4{width:1063.892496pt;}
.fsd{font-size:24.320960pt;}
.fse{font-size:32.001240pt;}
.fs9{font-size:34.561320pt;}
.fs5{font-size:37.119590pt;}
.fsc{font-size:37.121440pt;}
.fsb{font-size:40.321600pt;}
.fs0{font-size:42.881600pt;}
.fsf{font-size:45.320347pt;}
.fsa{font-size:48.002000pt;}
.fs7{font-size:50.562000pt;}
.fs2{font-size:53.122000pt;}
.fs11{font-size:53.437544pt;}
.fs12{font-size:56.322000pt;}
.fs8{font-size:58.882400pt;}
.fs1{font-size:66.562400pt;}
.fs3{font-size:69.122804pt;}
.fs10{font-size:72.322800pt;}
.fs6{font-size:85.123200pt;}
.fs4{font-size:160.006392pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:2.559998pt;}
.y4d{bottom:2.560012pt;}
.yb{bottom:4.159996pt;}
.y8{bottom:4.160000pt;}
.yd3{bottom:5.120011pt;}
.yda{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;}
.y148{bottom:96.640015pt;}
.y123{bottom:97.920044pt;}
.yd0{bottom:99.840088pt;}
.y139{bottom:102.400086pt;}
.y10{bottom:102.731415pt;}
.y162{bottom:109.920044pt;}
.y140{bottom:110.560059pt;}
.yfc{bottom:111.680054pt;}
.y9e{bottom:112.960083pt;}
.ye{bottom:113.600037pt;}
.y147{bottom:115.520081pt;}
.y122{bottom:116.640076pt;}
.ycf{bottom:118.560059pt;}
.y196{bottom:118.880066pt;}
.y138{bottom:121.280030pt;}
.y161{bottom:121.760071pt;}
.y13f{bottom:129.280030pt;}
.yfb{bottom:130.400086pt;}
.y195{bottom:131.520081pt;}
.y9d{bottom:131.840088pt;}
.y160{bottom:133.600037pt;}
.y146{bottom:134.240052pt;}
.y121{bottom:135.360047pt;}
.yce{bottom:137.280030pt;}
.y137{bottom:140.000061pt;}
.y15f{bottom:145.440064pt;}
.y13e{bottom:148.160035pt;}
.yfa{bottom:149.120057pt;}
.y9c{bottom:150.560059pt;}
.y194{bottom:150.720032pt;}
.y145{bottom:152.960083pt;}
.y120{bottom:154.240052pt;}
.ycd{bottom:156.160035pt;}
.y136{bottom:158.720032pt;}
.y15e{bottom:161.760071pt;}
.y13d{bottom:166.880066pt;}
.yf9{bottom:168.000061pt;}
.y9b{bottom:169.280030pt;}
.y193{bottom:170.080079pt;}
.y144{bottom:171.840088pt;}
.y11f{bottom:172.960083pt;}
.ycc{bottom:174.880066pt;}
.y135{bottom:177.600037pt;}
.y10b{bottom:182.720032pt;}
.y13c{bottom:185.600037pt;}
.yf8{bottom:186.720032pt;}
.y9a{bottom:188.160035pt;}
.y15d{bottom:190.400086pt;}
.y143{bottom:190.560059pt;}
.y11e{bottom:191.840088pt;}
.ycb{bottom:193.600037pt;}
.y134{bottom:196.320069pt;}
.y10a{bottom:201.440064pt;}
.y192{bottom:202.080079pt;}
.y15c{bottom:202.240052pt;}
.yf7{bottom:205.600037pt;}
.y99{bottom:206.880066pt;}
.y142{bottom:209.440064pt;}
.y11d{bottom:210.560059pt;}
.y15b{bottom:214.080079pt;}
.y191{bottom:214.720032pt;}
.y133{bottom:215.200074pt;}
.y13b{bottom:220.640076pt;}
.yca{bottom:223.040039pt;}
.yf6{bottom:224.320069pt;}
.y98{bottom:225.760071pt;}
.y15a{bottom:225.920044pt;}
.y190{bottom:227.360047pt;}
.y141{bottom:228.160035pt;}
.y11c{bottom:229.280030pt;}
.y132{bottom:233.920044pt;}
.y4a{bottom:235.040039pt;}
.y49{bottom:237.600037pt;}
.y159{bottom:237.760071pt;}
.yf5{bottom:243.040039pt;}
.y97{bottom:244.480042pt;}
.y18f{bottom:246.560059pt;}
.y109{bottom:246.880066pt;}
.y11b{bottom:248.160035pt;}
.y158{bottom:249.600037pt;}
.y48{bottom:250.240052pt;}
.yc9{bottom:252.640076pt;}
.y18e{bottom:259.200074pt;}
.y13a{bottom:260.640076pt;}
.y157{bottom:261.440064pt;}
.yf4{bottom:261.920044pt;}
.y47{bottom:262.880066pt;}
.y96{bottom:263.200074pt;}
.y108{bottom:265.760071pt;}
.y11a{bottom:266.880066pt;}
.yc8{bottom:271.360047pt;}
.y131{bottom:271.520081pt;}
.y46{bottom:275.840088pt;}
.y156{bottom:277.760071pt;}
.y18d{bottom:278.560059pt;}
.yf3{bottom:280.640076pt;}
.y95{bottom:282.080079pt;}
.y107{bottom:284.480042pt;}
.y119{bottom:285.760071pt;}
.yc7{bottom:290.240052pt;}
.y45{bottom:290.400086pt;}
.y18c{bottom:291.200074pt;}
.y155{bottom:293.120057pt;}
.y94{bottom:300.800049pt;}
.y106{bottom:303.360047pt;}
.y18b{bottom:303.840088pt;}
.y118{bottom:304.480042pt;}
.y154{bottom:304.960083pt;}
.y44{bottom:306.400086pt;}
.yc6{bottom:308.960083pt;}
.y130{bottom:309.120057pt;}
.yf2{bottom:310.080079pt;}
.y153{bottom:316.800049pt;}
.y93{bottom:319.680054pt;}
.y43{bottom:320.640076pt;}
.y105{bottom:322.080079pt;}
.y117{bottom:323.200074pt;}
.yc5{bottom:327.680054pt;}
.y12f{bottom:327.840088pt;}
.y152{bottom:328.640076pt;}
.yf1{bottom:328.960083pt;}
.y42{bottom:334.880066pt;}
.y18a{bottom:335.840088pt;}
.y92{bottom:338.400086pt;}
.y151{bottom:340.480042pt;}
.y104{bottom:340.800049pt;}
.y116{bottom:342.080079pt;}
.yc4{bottom:346.560059pt;}
.yf0{bottom:347.680054pt;}
.y189{bottom:348.480042pt;}
.y41{bottom:348.960083pt;}
.y150{bottom:352.320069pt;}
.y91{bottom:357.120057pt;}
.y103{bottom:359.680054pt;}
.y115{bottom:360.800049pt;}
.y40{bottom:363.200074pt;}
.y14f{bottom:364.160035pt;}
.yc3{bottom:365.280030pt;}
.y12e{bottom:365.440064pt;}
.yef{bottom:366.400086pt;}
.y188{bottom:367.680054pt;}
.y90{bottom:376.000061pt;}
.y3f{bottom:377.440064pt;}
.y102{bottom:378.400086pt;}
.y114{bottom:379.680054pt;}
.y187{bottom:380.320069pt;}
.yc2{bottom:384.160035pt;}
.yee{bottom:385.280030pt;}
.y14e{bottom:387.840088pt;}
.y3e{bottom:391.680054pt;}
.y8f{bottom:394.720032pt;}
.y101{bottom:397.280030pt;}
.y113{bottom:398.400086pt;}
.y14d{bottom:399.680054pt;}
.yc1{bottom:402.880066pt;}
.y12d{bottom:403.040039pt;}
.yed{bottom:404.000061pt;}
.y3d{bottom:405.920044pt;}
.y14c{bottom:411.520081pt;}
.y186{bottom:412.320069pt;}
.y8e{bottom:413.600037pt;}
.y6b{bottom:415.840088pt;}
.y100{bottom:416.000061pt;}
.y112{bottom:417.120057pt;}
.y3c{bottom:420.160035pt;}
.yc0{bottom:421.600037pt;}
.y12c{bottom:421.760071pt;}
.yec{bottom:422.880066pt;}
.y14b{bottom:423.360047pt;}
.y185{bottom:424.960083pt;}
.y6a{bottom:428.480042pt;}
.y8d{bottom:432.320069pt;}
.y3b{bottom:434.400086pt;}
.yff{bottom:434.720032pt;}
.y111{bottom:436.000061pt;}
.y14a{bottom:439.680054pt;}
.y69{bottom:440.320069pt;}
.y12b{bottom:440.640076pt;}
.yeb{bottom:441.600037pt;}
.y184{bottom:444.320069pt;}
.y3a{bottom:448.640076pt;}
.y8c{bottom:451.040039pt;}
.yfe{bottom:453.600037pt;}
.y110{bottom:454.720032pt;}
.y183{bottom:456.960083pt;}
.y12a{bottom:459.360047pt;}
.y68{bottom:459.840088pt;}
.yea{bottom:460.320069pt;}
.y39{bottom:462.720032pt;}
.y8b{bottom:469.920044pt;}
.yfd{bottom:472.320069pt;}
.y10f{bottom:473.600037pt;}
.y182{bottom:476.160035pt;}
.y38{bottom:476.960083pt;}
.y129{bottom:478.080079pt;}
.ye9{bottom:479.200074pt;}
.y67{bottom:479.360047pt;}
.ybf{bottom:486.080079pt;}
.y149{bottom:488.160035pt;}
.y8a{bottom:488.640076pt;}
.y181{bottom:488.800049pt;}
.y37{bottom:491.200074pt;}
.y10e{bottom:492.320069pt;}
.y128{bottom:496.960083pt;}
.ye8{bottom:497.920044pt;}
.y66{bottom:498.720032pt;}
.y36{bottom:505.440064pt;}
.y89{bottom:507.520081pt;}
.y180{bottom:508.160035pt;}
.ybe{bottom:509.920044pt;}
.y127{bottom:515.680054pt;}
.ye7{bottom:516.800049pt;}
.y65{bottom:518.400086pt;}
.y35{bottom:519.680054pt;}
.y10d{bottom:520.480042pt;}
.y17f{bottom:520.800049pt;}
.y88{bottom:526.240052pt;}
.ybd{bottom:528.640076pt;}
.y34{bottom:533.920044pt;}
.ye6{bottom:535.520081pt;}
.y126{bottom:537.120057pt;}
.y64{bottom:538.240052pt;}
.y17e{bottom:540.160035pt;}
.y10c{bottom:541.760071pt;}
.y87{bottom:544.960083pt;}
.ybc{bottom:547.520081pt;}
.y33{bottom:551.680054pt;}
.y17d{bottom:552.800049pt;}
.ye5{bottom:554.400086pt;}
.y63{bottom:558.400086pt;}
.y1b2{bottom:560.000061pt;}
.y86{bottom:563.840088pt;}
.y17c{bottom:565.440064pt;}
.ybb{bottom:566.240052pt;}
.ye4{bottom:576.320069pt;}
.y62{bottom:578.560059pt;}
.y32{bottom:581.440064pt;}
.y85{bottom:582.560059pt;}
.y1b1{bottom:583.520081pt;}
.y17b{bottom:584.640076pt;}
.yba{bottom:585.120057pt;}
.y31{bottom:596.000061pt;}
.ye3{bottom:597.280030pt;}
.y61{bottom:598.080079pt;}
.y84{bottom:601.440064pt;}
.yb9{bottom:603.840088pt;}
.y1b0{bottom:604.000061pt;}
.y17a{bottom:609.920044pt;}
.y30{bottom:612.000061pt;}
.y60{bottom:615.200074pt;}
.ye2{bottom:618.240052pt;}
.y83{bottom:620.160065pt;}
.yb8{bottom:622.560059pt;}
.y1af{bottom:622.720063pt;}
.y2f{bottom:626.240052pt;}
.y179{bottom:629.280060pt;}
.y5f{bottom:630.720063pt;}
.y1ae{bottom:635.360047pt;}
.y82{bottom:639.040070pt;}
.y2e{bottom:640.480072pt;}
.yb7{bottom:641.440064pt;}
.y178{bottom:641.920044pt;}
.y2d{bottom:654.560059pt;}
.y81{bottom:657.760071pt;}
.y5e{bottom:660.000061pt;}
.yb6{bottom:660.160065pt;}
.y1ad{bottom:667.200074pt;}
.y2c{bottom:668.800049pt;}
.ye1{bottom:675.840058pt;}
.y80{bottom:676.480072pt;}
.y177{bottom:677.440064pt;}
.yb5{bottom:679.040070pt;}
.ye0{bottom:680.960053pt;}
.y5d{bottom:681.920044pt;}
.y2b{bottom:683.040070pt;}
.y1ac{bottom:686.560059pt;}
.y5c{bottom:690.400055pt;}
.y7f{bottom:695.360047pt;}
.y2a{bottom:697.280060pt;}
.yb4{bottom:697.760071pt;}
.y1ab{bottom:699.200074pt;}
.ydf{bottom:701.920044pt;}
.y5b{bottom:702.240052pt;}
.y29{bottom:711.520050pt;}
.y176{bottom:713.280060pt;}
.y7e{bottom:714.080048pt;}
.yb3{bottom:716.480072pt;}
.y5a{bottom:717.440064pt;}
.y1aa{bottom:718.560059pt;}
.yde{bottom:722.880066pt;}
.y28{bottom:725.760071pt;}
.y59{bottom:725.920044pt;}
.y1a9{bottom:731.200074pt;}
.y7d{bottom:732.960053pt;}
.yb2{bottom:735.360047pt;}
.y58{bottom:737.600068pt;}
.y175{bottom:738.560059pt;}
.y27{bottom:740.000061pt;}
.ydd{bottom:743.840058pt;}
.y57{bottom:748.800049pt;}
.y1a8{bottom:750.400055pt;}
.y174{bottom:751.200074pt;}
.y7c{bottom:751.680054pt;}
.yb1{bottom:754.080048pt;}
.y26{bottom:754.240052pt;}
.y56{bottom:760.640046pt;}
.y1a7{bottom:763.040070pt;}
.ydc{bottom:764.640046pt;}
.y25{bottom:768.320069pt;}
.y7b{bottom:770.400055pt;}
.y55{bottom:772.480072pt;}
.yb0{bottom:772.960053pt;}
.y125{bottom:775.520050pt;}
.y1a6{bottom:782.400055pt;}
.y24{bottom:782.560059pt;}
.y173{bottom:784.320069pt;}
.y54{bottom:784.480072pt;}
.ydb{bottom:785.600068pt;}
.y7a{bottom:789.280060pt;}
.yaf{bottom:791.680054pt;}
.y124{bottom:793.280060pt;}
.y1a5{bottom:795.040070pt;}
.y53{bottom:796.320069pt;}
.y23{bottom:796.800049pt;}
.yd9{bottom:801.440064pt;}
.yd8{bottom:806.560059pt;}
.y52{bottom:808.000061pt;}
.yae{bottom:810.400055pt;}
.y22{bottom:811.040070pt;}
.y1a4{bottom:814.400055pt;}
.y172{bottom:815.360047pt;}
.y51{bottom:820.160065pt;}
.y21{bottom:825.280060pt;}
.y79{bottom:826.880066pt;}
.y1a3{bottom:827.040070pt;}
.yd7{bottom:827.520050pt;}
.yad{bottom:829.280060pt;}
.y171{bottom:832.160065pt;}
.y50{bottom:832.480072pt;}
.y20{bottom:839.520050pt;}
.y4f{bottom:844.800049pt;}
.y78{bottom:845.600068pt;}
.y1a2{bottom:846.240052pt;}
.yac{bottom:848.000061pt;}
.yd6{bottom:848.480072pt;}
.y4e{bottom:856.480072pt;}
.y1f{bottom:857.280060pt;}
.y1a1{bottom:858.880066pt;}
.y170{bottom:860.800049pt;}
.y77{bottom:864.320069pt;}
.y4c{bottom:866.240052pt;}
.yab{bottom:866.880066pt;}
.yd5{bottom:869.440064pt;}
.y16f{bottom:872.640061pt;}
.y1a0{bottom:878.240052pt;}
.y76{bottom:883.200058pt;}
.y16e{bottom:884.480057pt;}
.yaa{bottom:885.600052pt;}
.y1e{bottom:889.280060pt;}
.yd4{bottom:890.240052pt;}
.y19f{bottom:890.880066pt;}
.y16d{bottom:900.800064pt;}
.y75{bottom:901.920060pt;}
.ya9{bottom:904.480057pt;}
.yd2{bottom:905.600052pt;}
.y19e{bottom:910.240052pt;}
.y1d{bottom:913.440064pt;}
.y16c{bottom:920.640061pt;}
.y74{bottom:920.800064pt;}
.y19d{bottom:922.880066pt;}
.ya8{bottom:923.200058pt;}
.yd1{bottom:931.200058pt;}
.y16b{bottom:935.840058pt;}
.y73{bottom:939.520066pt;}
.y1c{bottom:940.480057pt;}
.ya7{bottom:941.920060pt;}
.y19c{bottom:942.080063pt;}
.y16a{bottom:947.680054pt;}
.y1b{bottom:957.760056pt;}
.y72{bottom:958.240052pt;}
.y169{bottom:959.520066pt;}
.ya6{bottom:960.800064pt;}
.y19b{bottom:961.440064pt;}
.y168{bottom:971.520066pt;}
.y19a{bottom:974.080063pt;}
.y71{bottom:977.120057pt;}
.ya5{bottom:979.520066pt;}
.y167{bottom:983.360062pt;}
.y1a{bottom:983.520066pt;}
.y199{bottom:993.440064pt;}
.y166{bottom:995.200058pt;}
.y70{bottom:995.840058pt;}
.ya4{bottom:998.400055pt;}
.yd{bottom:1006.080056pt;}
.y165{bottom:1007.040062pt;}
.ya3{bottom:1017.120057pt;}
.yc{bottom:1021.920060pt;}
.y164{bottom:1023.360062pt;}
.y198{bottom:1025.280060pt;}
.y6f{bottom:1030.720063pt;}
.ya2{bottom:1035.840058pt;}
.y197{bottom:1037.920060pt;}
.y163{bottom:1038.560059pt;}
.ya{bottom:1043.360062pt;}
.y9{bottom:1047.520058pt;}
.y4{bottom:1055.360062pt;}
.ya1{bottom:1055.680062pt;}
.y7{bottom:1063.680058pt;}
.y6{bottom:1067.840058pt;}
.y6e{bottom:1068.000058pt;}
.y3{bottom:1068.160057pt;}
.ya0{bottom:1068.480057pt;}
.y2{bottom:1080.640061pt;}
.y6d{bottom:1080.960061pt;}
.y9f{bottom:1081.440060pt;}
.y5{bottom:1087.840058pt;}
.y6c{bottom:1093.600060pt;}
.y1{bottom:1093.760060pt;}
.h13{height:11.840011pt;}
.h11{height:13.280030pt;}
.h1f{height:15.200012pt;}
.h27{height:15.679992pt;}
.h25{height:15.679993pt;}
.h8{height:19.999996pt;}
.h6{height:20.000000pt;}
.h19{height:22.344616pt;}
.h17{height:24.260632pt;}
.h18{height:24.260756pt;}
.hb{height:25.918463pt;}
.h4{height:29.941742pt;}
.h16{height:34.708546pt;}
.h12{height:34.946769pt;}
.h1a{height:36.119161pt;}
.h14{height:37.700696pt;}
.h15{height:39.232917pt;}
.h2{height:40.094296pt;}
.h20{height:40.737520pt;}
.h1b{height:40.823283pt;}
.h3{height:41.680915pt;}
.h2d{height:42.374525pt;}
.h2a{height:42.657440pt;}
.h23{height:42.657444pt;}
.h22{height:42.657504pt;}
.h24{height:42.657564pt;}
.h29{height:42.657684pt;}
.h1c{height:43.144971pt;}
.h26{height:43.297456pt;}
.h28{height:43.297460pt;}
.h21{height:43.297576pt;}
.h10{height:44.881870pt;}
.h2b{height:45.601900pt;}
.hd{height:48.033900pt;}
.h2c{height:50.465900pt;}
.h1e{height:50.765667pt;}
.hf{height:51.687706pt;}
.he{height:55.055044pt;}
.h2e{height:55.702458pt;}
.h5{height:63.367405pt;}
.h7{height:64.765215pt;}
.h9{height:68.362453pt;}
.h1d{height:68.706660pt;}
.hc{height:81.037286pt;}
.ha{height:108.363704pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w5{width:4.959992pt;}
.w12{width:5.279999pt;}
.w14{width:5.280029pt;}
.we{width:5.599975pt;}
.w7{width:5.599991pt;}
.w9{width:5.600006pt;}
.w10{width:5.600036pt;}
.w2{width:7.200012pt;}
.w13{width:10.719971pt;}
.w11{width:10.720001pt;}
.wc{width:16.160003pt;}
.w8{width:16.479996pt;}
.w15{width:28.000000pt;}
.wa{width:38.240020pt;}
.wf{width:59.520020pt;}
.wd{width:65.920014pt;}
.wb{width:69.440003pt;}
.w6{width:70.720005pt;}
.w4{width:72.320007pt;}
.w3{width:139.840027pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:48.000000pt;}
.x27{left:51.040001pt;}
.x1b{left:62.240002pt;}
.xa{left:66.879997pt;}
.x10{left:73.279999pt;}
.x13{left:77.919998pt;}
.x1{left:79.680000pt;}
.x7{left:91.519997pt;}
.x15{left:95.040001pt;}
.x1c{left:132.800003pt;}
.x14{left:144.160004pt;}
.x11{left:145.600006pt;}
.x12{left:162.880005pt;}
.x17{left:170.080002pt;}
.x1d{left:184.320007pt;}
.x18{left:189.600006pt;}
.x1e{left:200.639999pt;}
.x4f{left:207.839996pt;}
.x8{left:217.122745pt;}
.x65{left:218.399994pt;}
.x36{left:223.839996pt;}
.x4c{left:226.720001pt;}
.x41{left:228.639999pt;}
.x2f{left:235.679993pt;}
.xc{left:236.800003pt;}
.x39{left:242.720001pt;}
.x50{left:244.960007pt;}
.x5d{left:251.360001pt;}
.x46{left:255.520004pt;}
.x67{left:258.880005pt;}
.x1f{left:266.079987pt;}
.x6a{left:272.160004pt;}
.x37{left:273.600006pt;}
.x40{left:275.519989pt;}
.x4e{left:277.440002pt;}
.x6f{left:281.600006pt;}
.x66{left:288.000000pt;}
.x61{left:292.160004pt;}
.x35{left:302.559998pt;}
.x20{left:304.160004pt;}
.x3b{left:307.040009pt;}
.x3f{left:308.320007pt;}
.x33{left:311.200012pt;}
.x45{left:315.359985pt;}
.x31{left:317.440002pt;}
.x5e{left:328.799988pt;}
.xe{left:331.040009pt;}
.x60{left:341.119995pt;}
.x43{left:342.559998pt;}
.x6b{left:344.160004pt;}
.x21{left:349.119995pt;}
.xb{left:359.679993pt;}
.x5f{left:363.839996pt;}
.x53{left:366.079987pt;}
.x59{left:375.359985pt;}
.x28{left:386.399994pt;}
.x4a{left:389.920013pt;}
.x57{left:393.600006pt;}
.x29{left:397.119995pt;}
.x16{left:418.559998pt;}
.x47{left:419.839996pt;}
.x19{left:420.799988pt;}
.x51{left:422.079987pt;}
.x48{left:423.200012pt;}
.x22{left:434.559998pt;}
.x72{left:438.239990pt;}
.x62{left:443.040009pt;}
.x5b{left:460.640015pt;}
.x4d{left:462.239990pt;}
.x49{left:464.000000pt;}
.x6d{left:465.600006pt;}
.x70{left:477.920013pt;}
.x3d{left:480.320007pt;}
.x23{left:485.920013pt;}
.x30{left:487.359985pt;}
.xd{left:491.200012pt;}
.x3e{left:497.760010pt;}
.x2{left:499.200012pt;}
.x2c{left:504.799988pt;}
.x2a{left:513.440002pt;}
.x4b{left:515.200012pt;}
.x6c{left:517.760010pt;}
.x3{left:519.840027pt;}
.x2b{left:524.159973pt;}
.x5a{left:525.280029pt;}
.x55{left:531.840027pt;}
.x2d{left:532.799988pt;}
.x64{left:540.000000pt;}
.x38{left:549.599976pt;}
.x24{left:551.520020pt;}
.x5{left:556.320007pt;}
.x69{left:563.679993pt;}
.x68{left:567.520020pt;}
.x54{left:572.960022pt;}
.x71{left:573.919983pt;}
.x1a{left:576.000000pt;}
.x44{left:576.960022pt;}
.x58{left:578.080017pt;}
.x34{left:581.119995pt;}
.x42{left:584.159973pt;}
.x32{left:586.239990pt;}
.x56{left:588.799988pt;}
.x3c{left:598.880005pt;}
.x52{left:601.440002pt;}
.x73{left:604.320007pt;}
.x63{left:607.039978pt;}
.x6e{left:612.960022pt;}
.x5c{left:617.440002pt;}
.x25{left:635.359985pt;}
.x9{left:643.520020pt;}
.x2e{left:652.799988pt;}
.xf{left:653.919983pt;}
.x26{left:694.719971pt;}
.x3a{left:699.200012pt;}
.x4{left:714.080017pt;}
}




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