
    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_289a7cabc9f67dfa76c10f00.woff')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_3b1eaf11a10337c4b73c9aff.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_5205cd4504cb03c95e33776a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.100098;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_3b7aaced6986970243916724.woff')format("woff");}.ff4{font-family:ff4;line-height:0.962402;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_5e69ca8d7dfe14e5d0f3b602.woff')format("woff");}.ff5{font-family:ff5;line-height:0.949219;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_776a1144b64f583aa24e90d3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.948242;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_6e5a76594ddb324e3b02c00b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_36566cd23b0e3b52738c3b40.woff')format("woff");}.ff8{font-family:ff8;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-28.816436px;}
.v4{vertical-align:-27.360076px;}
.v2{vertical-align:-9.360295px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760063px;}
.ls9{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.010969px;}
.lsa{letter-spacing:0.059908px;}
.ls3{letter-spacing:0.090293px;}
.ls0{letter-spacing:0.092628px;}
.lsb{letter-spacing:0.215999px;}
.ls1{letter-spacing:0.271015px;}
.lse{letter-spacing:0.317021px;}
.ls2{letter-spacing:0.812506px;}
.ls8{letter-spacing:53.650772px;}
.ls6{letter-spacing:73.810754px;}
.ls4{letter-spacing:92.375215px;}
.lsc{letter-spacing:105.144456px;}
.lsd{letter-spacing:112.535264px;}
.ls5{letter-spacing:1864.295120px;}
.lsf{letter-spacing:2086.559288px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-23.335351px;}
.ws2{word-spacing:-19.944749px;}
.ws8{word-spacing:-19.038271px;}
.ws9{word-spacing:-13.505645px;}
.ws0{word-spacing:-13.362979px;}
.wsa{word-spacing:-12.203968px;}
.ws3{word-spacing:0.000000px;}
.ws5{word-spacing:12.959967px;}
.ws6{word-spacing:92.231762px;}
.ws4{word-spacing:111.671712px;}
.ws7{word-spacing:154.871600px;}
._26{margin-left:-6.161931px;}
._25{margin-left:-4.863671px;}
._1b{margin-left:-3.140315px;}
._0{margin-left:-1.513949px;}
._3{width:1.661729px;}
._2{width:2.782188px;}
._4{width:3.842401px;}
._1{width:5.233140px;}
._7{width:6.314534px;}
._f{width:7.487156px;}
._5{width:8.652991px;}
._23{width:9.713574px;}
._6{width:10.769873px;}
._17{width:11.973982px;}
._20{width:13.247373px;}
._24{width:14.296637px;}
._14{width:15.913205px;}
._15{width:16.995598px;}
._1a{width:18.125063px;}
._2c{width:20.866451px;}
._11{width:21.988629px;}
._12{width:23.327751px;}
._13{width:24.383808px;}
._e{width:26.262664px;}
._27{width:27.804013px;}
._16{width:29.881889px;}
._c{width:31.143379px;}
._19{width:33.472625px;}
._18{width:34.859716px;}
._31{width:36.012407px;}
._2d{width:39.359291px;}
._22{width:42.499197px;}
._21{width:46.071769px;}
._1e{width:48.667241px;}
._1f{width:50.228192px;}
._a{width:52.593757px;}
._10{width:62.941333px;}
._9{width:64.298978px;}
._2b{width:65.888111px;}
._8{width:72.360468px;}
._1c{width:76.782687px;}
._1d{width:78.072870px;}
._2e{width:94.617287px;}
._29{width:166.161764px;}
._b{width:174.431589px;}
._28{width:203.230534px;}
._2f{width:204.500212px;}
._2a{width:236.374137px;}
._d{width:546.566020px;}
._30{width:844.087705px;}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(0,105,55);}
.fc3{color:transparent;}
.fc1{color:rgb(231,220,118);}
.fc5{color:rgb(64,64,64);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(28,28,28);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:30.241170px;}
.fs2{font-size:48.241800px;}
.fs8{font-size:53.999861px;}
.fs7{font-size:54.002250px;}
.fsa{font-size:59.759492px;}
.fs5{font-size:66.242700px;}
.fs0{font-size:72.002705px;}
.fs9{font-size:84.240136px;}
.fs3{font-size:84.243145px;}
.fs6{font-size:144.005409px;}
.fs4{font-size:216.008550px;}
.y0{bottom:0.000000px;}
.yfa{bottom:3.599997px;}
.y106{bottom:3.600013px;}
.ye4{bottom:3.600015px;}
.y21{bottom:3.779983px;}
.y1c{bottom:3.780018px;}
.y27{bottom:3.959954px;}
.y24{bottom:3.960022px;}
.yd{bottom:4.500000px;}
.y8{bottom:50.760132px;}
.y5{bottom:50.940033px;}
.y7{bottom:59.940033px;}
.y4{bottom:60.120072px;}
.y6{bottom:69.120072px;}
.y3{bottom:69.300110px;}
.y2{bottom:131.400055px;}
.y107{bottom:152.460091px;}
.y3c{bottom:153.720085px;}
.ycb{bottom:155.880066px;}
.y57{bottom:156.240074px;}
.yae{bottom:163.620072px;}
.y3b{bottom:174.420043px;}
.yca{bottom:176.220085px;}
.y56{bottom:176.940033px;}
.y111{bottom:181.260064px;}
.yf8{bottom:183.240074px;}
.yad{bottom:184.320099px;}
.y8f{bottom:184.680039px;}
.yf7{bottom:186.840088px;}
.y3a{bottom:195.120072px;}
.y55{bottom:197.640060px;}
.y8e{bottom:201.600083px;}
.yac{bottom:205.020058px;}
.yf6{bottom:207.180039px;}
.yc9{bottom:209.880066px;}
.y39{bottom:215.820099px;}
.y54{bottom:218.340088px;}
.yab{bottom:225.720085px;}
.yf5{bottom:227.520058px;}
.y110{bottom:234.720085px;}
.y12b{bottom:235.080093px;}
.y38{bottom:236.520058px;}
.y53{bottom:239.040047px;}
.yc8{bottom:244.620072px;}
.yaa{bottom:246.420043px;}
.yf4{bottom:247.860077px;}
.y37{bottom:257.220085px;}
.y52{bottom:259.020058px;}
.yc7{bottom:266.220085px;}
.ya9{bottom:267.120072px;}
.y10f{bottom:267.840088px;}
.yf3{bottom:268.020058px;}
.y137{bottom:271.260064px;}
.y51{bottom:274.500068px;}
.y36{bottom:277.920043px;}
.yc6{bottom:286.920043px;}
.ya8{bottom:287.820099px;}
.yf2{bottom:288.360077px;}
.y50{bottom:289.980079px;}
.y14a{bottom:294.480079px;}
.y35{bottom:298.620072px;}
.y10e{bottom:300.780052px;}
.y4f{bottom:305.460091px;}
.yc5{bottom:307.620072px;}
.ya7{bottom:308.520058px;}
.yf1{bottom:308.700096px;}
.y149{bottom:312.480079px;}
.y105{bottom:317.880066px;}
.y34{bottom:319.320099px;}
.y10d{bottom:321.120072px;}
.y104{bottom:321.480079px;}
.y4e{bottom:321.840088px;}
.yc4{bottom:328.320099px;}
.yf0{bottom:329.040047px;}
.ya6{bottom:329.220085px;}
.y4d{bottom:338.760064px;}
.y10c{bottom:341.460091px;}
.y103{bottom:341.820099px;}
.yc3{bottom:349.020058px;}
.yef{bottom:349.380066px;}
.ya5{bottom:349.920043px;}
.y148{bottom:351.360077px;}
.y33{bottom:352.620072px;}
.y102{bottom:362.160049px;}
.y147{bottom:369.360077px;}
.yc2{bottom:369.720085px;}
.ya4{bottom:370.620072px;}
.y7b{bottom:374.584121px;}
.y12a{bottom:374.760064px;}
.y10b{bottom:375.120072px;}
.yee{bottom:382.500068px;}
.y6d{bottom:385.922030px;}
.y146{bottom:387.360077px;}
.yc1{bottom:390.420043px;}
.ya3{bottom:391.320099px;}
.y129{bottom:395.100083px;}
.y10a{bottom:396.540047px;}
.y7a{bottom:401.585716px;}
.y6c{bottom:402.302588px;}
.yed{bottom:402.840088px;}
.y6f{bottom:403.208153px;}
.yc0{bottom:411.120072px;}
.ya2{bottom:412.020058px;}
.y145{bottom:412.740074px;}
.y70{bottom:412.928607px;}
.y101{bottom:415.440033px;}
.y109{bottom:417.240074px;}
.y79{bottom:417.958065px;}
.y6b{bottom:418.860331px;}
.yec{bottom:423.000068px;}
.y32{bottom:423.720085px;}
.y144{bottom:426.420043px;}
.y68{bottom:427.864815px;}
.y128{bottom:428.760064px;}
.ybf{bottom:431.820099px;}
.ya1{bottom:432.720085px;}
.y108{bottom:434.160049px;}
.y100{bottom:435.780052px;}
.yeb{bottom:443.340088px;}
.y78{bottom:444.959660px;}
.y143{bottom:447.120072px;}
.y31{bottom:448.200096px;}
.y127{bottom:450.180039px;}
.y71{bottom:451.983446px;}
.ybe{bottom:452.520058px;}
.ya0{bottom:453.420043px;}
.y67{bottom:455.047252px;}
.yff{bottom:456.120072px;}
.y77{bottom:461.340217px;}
.yea{bottom:463.680039px;}
.y30{bottom:467.820099px;}
.y126{bottom:470.880066px;}
.y76{bottom:471.779965px;}
.y2f{bottom:471.780052px;}
.ybd{bottom:473.220085px;}
.y6e{bottom:473.767668px;}
.y9f{bottom:474.120072px;}
.yfe{bottom:476.460091px;}
.y72{bottom:479.886286px;}
.y75{bottom:488.337708px;}
.y142{bottom:488.520058px;}
.y125{bottom:491.400055px;}
.y6a{bottom:493.203250px;}
.ybc{bottom:493.920043px;}
.y9e{bottom:494.820099px;}
.y2d{bottom:495.360077px;}
.ye9{bottom:496.800041px;}
.y74{bottom:504.718266px;}
.y2e{bottom:508.320099px;}
.y141{bottom:509.220085px;}
.y2c{bottom:513.360077px;}
.ybb{bottom:514.620072px;}
.y9d{bottom:515.520058px;}
.ye8{bottom:517.140060px;}
.y124{bottom:524.340088px;}
.y140{bottom:529.920043px;}
.yba{bottom:535.320099px;}
.y9c{bottom:536.040047px;}
.ye7{bottom:537.480079px;}
.y2b{bottom:537.840088px;}
.y13f{bottom:550.620072px;}
.y69{bottom:555.118181px;}
.y73{bottom:555.304527px;}
.yb9{bottom:556.020058px;}
.y9b{bottom:556.740074px;}
.y123{bottom:557.280052px;}
.y2a{bottom:557.640060px;}
.ye6{bottom:557.820099px;}
.y29{bottom:561.600083px;}
.y136{bottom:567.720085px;}
.y13e{bottom:571.320099px;}
.yb8{bottom:576.540047px;}
.y9a{bottom:577.440033px;}
.ye5{bottom:577.980079px;}
.y28{bottom:585.180039px;}
.y122{bottom:586.800041px;}
.y4c{bottom:590.040047px;}
.y121{bottom:590.400055px;}
.yfd{bottom:590.760064px;}
.y13d{bottom:592.020058px;}
.yb7{bottom:597.240074px;}
.y99{bottom:598.140060px;}
.y135{bottom:601.920043px;}
.y4b{bottom:603.000068px;}
.y4a{bottom:606.960091px;}
.ye3{bottom:607.500068px;}
.y25{bottom:608.760064px;}
.ye2{bottom:611.100083px;}
.y13c{bottom:612.540047px;}
.yb6{bottom:617.940033px;}
.y98{bottom:618.840088px;}
.y65{bottom:620.465803px;}
.y5b{bottom:620.997241px;}
.y26{bottom:621.720085px;}
.y120{bottom:623.520058px;}
.y23{bottom:628.380066px;}
.ye1{bottom:631.440033px;}
.y22{bottom:632.340088px;}
.y13b{bottom:633.240074px;}
.y134{bottom:636.120072px;}
.y64{bottom:637.023506px;}
.y97{bottom:639.540047px;}
.y20{bottom:650.520058px;}
.yb5{bottom:651.420043px;}
.ye0{bottom:651.780052px;}
.y63{bottom:653.581249px;}
.y13a{bottom:653.940033px;}
.y11f{bottom:656.460091px;}
.y96{bottom:660.240074px;}
.y5a{bottom:664.741933px;}
.ydf{bottom:672.120072px;}
.y139{bottom:674.640060px;}
.y1f{bottom:675.000068px;}
.y95{bottom:680.940033px;}
.y61{bottom:685.440138px;}
.y11e{bottom:689.580059px;}
.yde{bottom:692.460056px;}
.y138{bottom:695.340054px;}
.y1e{bottom:695.700061px;}
.y5f{bottom:702.722961px;}
.y5d{bottom:705.063035px;}
.y58{bottom:706.678029px;}
.y11d{bottom:709.920078px;}
.ydd{bottom:712.620072px;}
.y8d{bottom:716.040081px;}
.y1d{bottom:716.400055px;}
.y5e{bottom:721.258239px;}
.y133{bottom:722.700061px;}
.yb4{bottom:725.040081px;}
.yfc{bottom:725.400055px;}
.ydc{bottom:732.960056px;}
.y1b{bottom:734.400055px;}
.y8c{bottom:736.740074px;}
.y11c{bottom:743.040081px;}
.y94{bottom:744.480079px;}
.yb3{bottom:745.740074px;}
.y59{bottom:748.622333px;}
.y62{bottom:752.223109px;}
.y8b{bottom:757.440067px;}
.y1a{bottom:758.880066px;}
.y93{bottom:765.180073px;}
.ydb{bottom:766.080059px;}
.yb2{bottom:766.440067px;}
.y11b{bottom:775.980079px;}
.y8a{bottom:778.140060px;}
.y19{bottom:782.460056px;}
.y60{bottom:783.003318px;}
.y92{bottom:785.880066px;}
.yda{bottom:786.420078px;}
.yb1{bottom:787.140060px;}
.y11a{bottom:796.320065px;}
.y89{bottom:798.840054px;}
.y18{bottom:804.240074px;}
.y91{bottom:806.580059px;}
.yd9{bottom:806.760064px;}
.yb0{bottom:807.840054px;}
.y66{bottom:808.557126px;}
.y5c{bottom:814.315735px;}
.y119{bottom:816.660049px;}
.y88{bottom:819.540081px;}
.y17{bottom:824.940067px;}
.yd8{bottom:827.100083px;}
.y90{bottom:827.280052px;}
.yaf{bottom:828.540081px;}
.y132{bottom:829.440067px;}
.y87{bottom:840.240074px;}
.y16{bottom:845.640060px;}
.yd7{bottom:847.440067px;}
.y49{bottom:849.240074px;}
.y118{bottom:849.780052px;}
.y86{bottom:860.940067px;}
.y131{bottom:862.560070px;}
.y15{bottom:866.340054px;}
.yd6{bottom:867.600083px;}
.y48{bottom:869.940067px;}
.y117{bottom:870.120072px;}
.y85{bottom:881.640060px;}
.y130{bottom:882.900055px;}
.y14{bottom:887.040081px;}
.yfb{bottom:887.940067px;}
.y47{bottom:890.640060px;}
.yd5{bottom:900.720051px;}
.y84{bottom:902.340054px;}
.y116{bottom:903.060070px;}
.y13{bottom:907.740074px;}
.y46{bottom:911.340054px;}
.y12f{bottom:915.840054px;}
.yd4{bottom:921.060070px;}
.y83{bottom:923.040081px;}
.y115{bottom:923.400055px;}
.y12{bottom:928.440067px;}
.y45{bottom:932.040081px;}
.yd3{bottom:941.400055px;}
.y82{bottom:943.740074px;}
.y12e{bottom:948.960056px;}
.y11{bottom:949.140060px;}
.y44{bottom:952.740074px;}
.y114{bottom:956.520058px;}
.yd2{bottom:961.740074px;}
.y81{bottom:964.440067px;}
.y12d{bottom:969.300076px;}
.y10{bottom:969.840054px;}
.y43{bottom:973.440067px;}
.y113{bottom:976.860060px;}
.yd1{bottom:982.080059px;}
.y80{bottom:985.140060px;}
.y12c{bottom:989.640060px;}
.yf{bottom:990.540064px;}
.y42{bottom:994.140060px;}
.yd0{bottom:1002.240074px;}
.y7f{bottom:1005.840070px;}
.y112{bottom:1009.980063px;}
.y41{bottom:1014.840070px;}
.ycf{bottom:1022.580059px;}
.y7e{bottom:1026.540064px;}
.ye{bottom:1027.980063px;}
.y40{bottom:1035.540064px;}
.yf9{bottom:1039.320065px;}
.yce{bottom:1042.920061px;}
.y7d{bottom:1047.240074px;}
.y3f{bottom:1056.240074px;}
.ycd{bottom:1063.260064px;}
.y3e{bottom:1076.940067px;}
.y7c{bottom:1080.720068px;}
.ycc{bottom:1096.920061px;}
.y3d{bottom:1097.640060px;}
.y1{bottom:1118.340070px;}
.yb{bottom:1132.560070px;}
.ya{bottom:1146.420069px;}
.y9{bottom:1160.280069px;}
.yc{bottom:1179.900064px;}
.hd{height:3.959954px;}
.h19{height:18.539978px;}
.h17{height:18.539979px;}
.h18{height:18.539996px;}
.h1a{height:18.540047px;}
.hb{height:19.980010px;}
.ha{height:19.980011px;}
.hc{height:20.159981px;}
.h5{height:23.940002px;}
.h3{height:30.078742px;}
.h1c{height:33.496015px;}
.h10{height:40.580792px;}
.h4{height:43.248020px;}
.h1d{height:46.698235px;}
.hf{height:48.412173px;}
.h1e{height:49.994065px;}
.h15{height:53.123089px;}
.h12{height:53.709822px;}
.h11{height:55.291849px;}
.h16{height:59.385546px;}
.h14{height:61.189284px;}
.h6{height:63.346897px;}
.h2{height:64.549300px;}
.h9{height:67.008015px;}
.h8{height:67.008083px;}
.h1b{height:67.008150px;}
.h13{height:86.255648px;}
.he{height:108.285317px;}
.h7{height:162.428304px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w15{width:1.620003px;}
.w14{width:2.340019px;}
.w7{width:2.700028px;}
.w6{width:4.860008px;}
.w8{width:5.939999px;}
.w18{width:6.120003px;}
.w11{width:7.560035px;}
.w16{width:8.459988px;}
.w17{width:8.820030px;}
.wf{width:10.079956px;}
.w13{width:10.079991px;}
.wb{width:10.080025px;}
.w4{width:11.699993px;}
.w9{width:21.060001px;}
.w10{width:23.040046px;}
.we{width:25.020057px;}
.wd{width:67.140060px;}
.w3{width:71.280018px;}
.w2{width:116.640001px;}
.w12{width:266.219999px;}
.wa{width:399.239988px;}
.w5{width:502.379980px;}
.wc{width:509.940016px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.200002px;}
.x7{left:107.459997px;}
.x4{left:109.079999px;}
.x38{left:113.219999px;}
.x1b{left:118.619079px;}
.x17{left:130.860019px;}
.x2a{left:140.936693px;}
.x2b{left:142.196365px;}
.x37{left:160.199993px;}
.x1c{left:165.600968px;}
.x18{left:168.841863px;}
.x33{left:175.139992px;}
.x34{left:177.120002px;}
.x8{left:180.539996px;}
.x35{left:192.780001px;}
.x29{left:200.521115px;}
.xc{left:207.539996px;}
.xd{left:213.479994px;}
.x5{left:226.439999px;}
.xe{left:234.539996px;}
.x19{left:244.620960px;}
.x3b{left:246.240006px;}
.x39{left:263.340002px;}
.x2c{left:275.938493px;}
.x1a{left:282.596195px;}
.x6{left:297.720017px;}
.x3e{left:322.199993px;}
.x36{left:349.740006px;}
.x21{left:350.997134px;}
.x20{left:353.341707px;}
.x1d{left:354.960755px;}
.x2{left:362.699993px;}
.x30{left:374.401753px;}
.x1e{left:421.016997px;}
.x2f{left:425.159036px;}
.x2e{left:431.454504px;}
.x14{left:446.759994px;}
.x1f{left:453.955297px;}
.x2d{left:492.475981px;}
.x24{left:574.382982px;}
.x25{left:578.700590px;}
.x31{left:589.140338px;}
.x22{left:593.635091px;}
.x3{left:614.340019px;}
.x26{left:624.056172px;}
.x28{left:631.801062px;}
.xf{left:633.779983px;}
.x23{left:642.237117px;}
.x9{left:682.919975px;}
.xa{left:687.779983px;}
.xb{left:691.559967px;}
.x12{left:714.600014px;}
.x11{left:716.580025px;}
.x27{left:722.516782px;}
.x10{left:758.700027px;}
.x13{left:772.559967px;}
.x3c{left:777.059967px;}
.x3d{left:780.120002px;}
.x3a{left:784.259994px;}
.x15{left:785.519989px;}
.x32{left:786.600014px;}
.x16{left:890.639992px;}
@media print{
.v3{vertical-align:-25.614609pt;}
.v4{vertical-align:-24.320068pt;}
.v2{vertical-align:-8.320263pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120056pt;}
.ls9{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.009750pt;}
.lsa{letter-spacing:0.053252pt;}
.ls3{letter-spacing:0.080261pt;}
.ls0{letter-spacing:0.082336pt;}
.lsb{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.240902pt;}
.lse{letter-spacing:0.281797pt;}
.ls2{letter-spacing:0.722228pt;}
.ls8{letter-spacing:47.689575pt;}
.ls6{letter-spacing:65.609559pt;}
.ls4{letter-spacing:82.111302pt;}
.lsc{letter-spacing:93.461738pt;}
.lsd{letter-spacing:100.031346pt;}
.ls5{letter-spacing:1657.151218pt;}
.lsf{letter-spacing:1854.719367pt;}
.ws1{word-spacing:-20.742534pt;}
.ws2{word-spacing:-17.728666pt;}
.ws8{word-spacing:-16.922907pt;}
.ws9{word-spacing:-12.005018pt;}
.ws0{word-spacing:-11.878203pt;}
.wsa{word-spacing:-10.847972pt;}
.ws3{word-spacing:0.000000pt;}
.ws5{word-spacing:11.519970pt;}
.ws6{word-spacing:81.983788pt;}
.ws4{word-spacing:99.263744pt;}
.ws7{word-spacing:137.663645pt;}
._26{margin-left:-5.477272pt;}
._25{margin-left:-4.323263pt;}
._1b{margin-left:-2.791391pt;}
._0{margin-left:-1.345732pt;}
._3{width:1.477092pt;}
._2{width:2.473056pt;}
._4{width:3.415467pt;}
._1{width:4.651680pt;}
._7{width:5.612919pt;}
._f{width:6.655250pt;}
._5{width:7.691548pt;}
._23{width:8.634288pt;}
._6{width:9.573220pt;}
._17{width:10.643539pt;}
._20{width:11.775442pt;}
._24{width:12.708122pt;}
._14{width:14.145071pt;}
._15{width:15.107198pt;}
._1a{width:16.111167pt;}
._2c{width:18.547956pt;}
._11{width:19.545448pt;}
._12{width:20.735779pt;}
._13{width:21.674496pt;}
._e{width:23.344590pt;}
._27{width:24.714678pt;}
._16{width:26.561679pt;}
._c{width:27.683003pt;}
._19{width:29.753444pt;}
._18{width:30.986414pt;}
._31{width:32.011029pt;}
._2d{width:34.986036pt;}
._22{width:37.777064pt;}
._21{width:40.952683pt;}
._1e{width:43.259770pt;}
._1f{width:44.647282pt;}
._a{width:46.750006pt;}
._10{width:55.947851pt;}
._9{width:57.154647pt;}
._2b{width:58.567210pt;}
._8{width:64.320416pt;}
._1c{width:68.251277pt;}
._1d{width:69.398107pt;}
._2e{width:84.104255pt;}
._29{width:147.699345pt;}
._b{width:155.050301pt;}
._28{width:180.649363pt;}
._2f{width:181.777966pt;}
._2a{width:210.110344pt;}
._d{width:485.836462pt;}
._30{width:750.300182pt;}
.fs1{font-size:26.881040pt;}
.fs2{font-size:42.881600pt;}
.fs8{font-size:47.999876pt;}
.fs7{font-size:48.002000pt;}
.fsa{font-size:53.119548pt;}
.fs5{font-size:58.882400pt;}
.fs0{font-size:64.002404pt;}
.fs9{font-size:74.880121pt;}
.fs3{font-size:74.882796pt;}
.fs6{font-size:128.004808pt;}
.fs4{font-size:192.007600pt;}
.y0{bottom:0.000000pt;}
.yfa{bottom:3.199997pt;}
.y106{bottom:3.200012pt;}
.ye4{bottom:3.200013pt;}
.y21{bottom:3.359985pt;}
.y1c{bottom:3.360016pt;}
.y27{bottom:3.519959pt;}
.y24{bottom:3.520020pt;}
.yd{bottom:4.000000pt;}
.y8{bottom:45.120118pt;}
.y5{bottom:45.280030pt;}
.y7{bottom:53.280030pt;}
.y4{bottom:53.440064pt;}
.y6{bottom:61.440064pt;}
.y3{bottom:61.600098pt;}
.y2{bottom:116.800049pt;}
.y107{bottom:135.520081pt;}
.y3c{bottom:136.640076pt;}
.ycb{bottom:138.560059pt;}
.y57{bottom:138.880066pt;}
.yae{bottom:145.440064pt;}
.y3b{bottom:155.040039pt;}
.yca{bottom:156.640076pt;}
.y56{bottom:157.280030pt;}
.y111{bottom:161.120057pt;}
.yf8{bottom:162.880066pt;}
.yad{bottom:163.840088pt;}
.y8f{bottom:164.160035pt;}
.yf7{bottom:166.080079pt;}
.y3a{bottom:173.440064pt;}
.y55{bottom:175.680054pt;}
.y8e{bottom:179.200074pt;}
.yac{bottom:182.240052pt;}
.yf6{bottom:184.160035pt;}
.yc9{bottom:186.560059pt;}
.y39{bottom:191.840088pt;}
.y54{bottom:194.080079pt;}
.yab{bottom:200.640076pt;}
.yf5{bottom:202.240052pt;}
.y110{bottom:208.640076pt;}
.y12b{bottom:208.960083pt;}
.y38{bottom:210.240052pt;}
.y53{bottom:212.480042pt;}
.yc8{bottom:217.440064pt;}
.yaa{bottom:219.040039pt;}
.yf4{bottom:220.320069pt;}
.y37{bottom:228.640076pt;}
.y52{bottom:230.240052pt;}
.yc7{bottom:236.640076pt;}
.ya9{bottom:237.440064pt;}
.y10f{bottom:238.080079pt;}
.yf3{bottom:238.240052pt;}
.y137{bottom:241.120057pt;}
.y51{bottom:244.000061pt;}
.y36{bottom:247.040039pt;}
.yc6{bottom:255.040039pt;}
.ya8{bottom:255.840088pt;}
.yf2{bottom:256.320069pt;}
.y50{bottom:257.760071pt;}
.y14a{bottom:261.760071pt;}
.y35{bottom:265.440064pt;}
.y10e{bottom:267.360047pt;}
.y4f{bottom:271.520081pt;}
.yc5{bottom:273.440064pt;}
.ya7{bottom:274.240052pt;}
.yf1{bottom:274.400086pt;}
.y149{bottom:277.760071pt;}
.y105{bottom:282.560059pt;}
.y34{bottom:283.840088pt;}
.y10d{bottom:285.440064pt;}
.y104{bottom:285.760071pt;}
.y4e{bottom:286.080079pt;}
.yc4{bottom:291.840088pt;}
.yf0{bottom:292.480042pt;}
.ya6{bottom:292.640076pt;}
.y4d{bottom:301.120057pt;}
.y10c{bottom:303.520081pt;}
.y103{bottom:303.840088pt;}
.yc3{bottom:310.240052pt;}
.yef{bottom:310.560059pt;}
.ya5{bottom:311.040039pt;}
.y148{bottom:312.320069pt;}
.y33{bottom:313.440064pt;}
.y102{bottom:321.920044pt;}
.y147{bottom:328.320069pt;}
.yc2{bottom:328.640076pt;}
.ya4{bottom:329.440064pt;}
.y7b{bottom:332.963663pt;}
.y12a{bottom:333.120057pt;}
.y10b{bottom:333.440064pt;}
.yee{bottom:340.000061pt;}
.y6d{bottom:343.041805pt;}
.y146{bottom:344.320069pt;}
.yc1{bottom:347.040039pt;}
.ya3{bottom:347.840088pt;}
.y129{bottom:351.200074pt;}
.y10a{bottom:352.480042pt;}
.y7a{bottom:356.965080pt;}
.y6c{bottom:357.602300pt;}
.yed{bottom:358.080079pt;}
.y6f{bottom:358.407247pt;}
.yc0{bottom:365.440064pt;}
.ya2{bottom:366.240052pt;}
.y145{bottom:366.880066pt;}
.y70{bottom:367.047651pt;}
.y101{bottom:369.280030pt;}
.y109{bottom:370.880066pt;}
.y79{bottom:371.518280pt;}
.y6b{bottom:372.320294pt;}
.yec{bottom:376.000061pt;}
.y32{bottom:376.640076pt;}
.y144{bottom:379.040039pt;}
.y68{bottom:380.324280pt;}
.y128{bottom:381.120057pt;}
.ybf{bottom:383.840088pt;}
.ya1{bottom:384.640076pt;}
.y108{bottom:385.920044pt;}
.y100{bottom:387.360047pt;}
.yeb{bottom:394.080079pt;}
.y78{bottom:395.519698pt;}
.y143{bottom:397.440064pt;}
.y31{bottom:398.400086pt;}
.y127{bottom:400.160035pt;}
.y71{bottom:401.763063pt;}
.ybe{bottom:402.240052pt;}
.ya0{bottom:403.040039pt;}
.y67{bottom:404.486446pt;}
.yff{bottom:405.440064pt;}
.y77{bottom:410.080193pt;}
.yea{bottom:412.160035pt;}
.y30{bottom:415.840088pt;}
.y126{bottom:418.560059pt;}
.y76{bottom:419.359969pt;}
.y2f{bottom:419.360047pt;}
.ybd{bottom:420.640076pt;}
.y6e{bottom:421.126816pt;}
.y9f{bottom:421.440064pt;}
.yfe{bottom:423.520081pt;}
.y72{bottom:426.565587pt;}
.y75{bottom:434.077963pt;}
.y142{bottom:434.240052pt;}
.y125{bottom:436.800049pt;}
.y6a{bottom:438.402889pt;}
.ybc{bottom:439.040039pt;}
.y9e{bottom:439.840088pt;}
.y2d{bottom:440.320069pt;}
.ye9{bottom:441.600037pt;}
.y74{bottom:448.638458pt;}
.y2e{bottom:451.840088pt;}
.y141{bottom:452.640076pt;}
.y2c{bottom:456.320069pt;}
.ybb{bottom:457.440064pt;}
.y9d{bottom:458.240052pt;}
.ye8{bottom:459.680054pt;}
.y124{bottom:466.080079pt;}
.y140{bottom:471.040039pt;}
.yba{bottom:475.840088pt;}
.y9c{bottom:476.480042pt;}
.ye7{bottom:477.760071pt;}
.y2b{bottom:478.080079pt;}
.y13f{bottom:489.440064pt;}
.y69{bottom:493.438383pt;}
.y73{bottom:493.604024pt;}
.yb9{bottom:494.240052pt;}
.y9b{bottom:494.880066pt;}
.y123{bottom:495.360047pt;}
.y2a{bottom:495.680054pt;}
.ye6{bottom:495.840088pt;}
.y29{bottom:499.200074pt;}
.y136{bottom:504.640076pt;}
.y13e{bottom:507.840088pt;}
.yb8{bottom:512.480042pt;}
.y9a{bottom:513.280030pt;}
.ye5{bottom:513.760071pt;}
.y28{bottom:520.160035pt;}
.y122{bottom:521.600037pt;}
.y4c{bottom:524.480042pt;}
.y121{bottom:524.800049pt;}
.yfd{bottom:525.120057pt;}
.y13d{bottom:526.240052pt;}
.yb7{bottom:530.880066pt;}
.y99{bottom:531.680054pt;}
.y135{bottom:535.040039pt;}
.y4b{bottom:536.000061pt;}
.y4a{bottom:539.520081pt;}
.ye3{bottom:540.000061pt;}
.y25{bottom:541.120057pt;}
.ye2{bottom:543.200074pt;}
.y13c{bottom:544.480042pt;}
.yb6{bottom:549.280030pt;}
.y98{bottom:550.080079pt;}
.y65{bottom:551.525158pt;}
.y5b{bottom:551.997547pt;}
.y26{bottom:552.640076pt;}
.y120{bottom:554.240052pt;}
.y23{bottom:558.560059pt;}
.ye1{bottom:561.280030pt;}
.y22{bottom:562.080079pt;}
.y13b{bottom:562.880066pt;}
.y134{bottom:565.440064pt;}
.y64{bottom:566.243116pt;}
.y97{bottom:568.480042pt;}
.y20{bottom:578.240052pt;}
.yb5{bottom:579.040039pt;}
.ye0{bottom:579.360047pt;}
.y63{bottom:580.961111pt;}
.y13a{bottom:581.280030pt;}
.y11f{bottom:583.520081pt;}
.y96{bottom:586.880066pt;}
.y5a{bottom:590.881718pt;}
.ydf{bottom:597.440064pt;}
.y139{bottom:599.680054pt;}
.y1f{bottom:600.000061pt;}
.y95{bottom:605.280030pt;}
.y61{bottom:609.280123pt;}
.y11e{bottom:612.960053pt;}
.yde{bottom:615.520050pt;}
.y138{bottom:618.080048pt;}
.y1e{bottom:618.400055pt;}
.y5f{bottom:624.642632pt;}
.y5d{bottom:626.722698pt;}
.y58{bottom:628.158248pt;}
.y11d{bottom:631.040070pt;}
.ydd{bottom:633.440064pt;}
.y8d{bottom:636.480072pt;}
.y1d{bottom:636.800049pt;}
.y5e{bottom:641.118434pt;}
.y133{bottom:642.400055pt;}
.yb4{bottom:644.480072pt;}
.yfc{bottom:644.800049pt;}
.ydc{bottom:651.520050pt;}
.y1b{bottom:652.800049pt;}
.y8c{bottom:654.880066pt;}
.y11c{bottom:660.480072pt;}
.y94{bottom:661.760071pt;}
.yb3{bottom:662.880066pt;}
.y59{bottom:665.442074pt;}
.y62{bottom:668.642764pt;}
.y8b{bottom:673.280060pt;}
.y1a{bottom:674.560059pt;}
.y93{bottom:680.160065pt;}
.ydb{bottom:680.960053pt;}
.yb2{bottom:681.280060pt;}
.y11b{bottom:689.760071pt;}
.y8a{bottom:691.680054pt;}
.y19{bottom:695.520050pt;}
.y60{bottom:696.002949pt;}
.y92{bottom:698.560059pt;}
.yda{bottom:699.040070pt;}
.yb1{bottom:699.680054pt;}
.y11a{bottom:707.840058pt;}
.y89{bottom:710.080048pt;}
.y18{bottom:714.880066pt;}
.y91{bottom:716.960053pt;}
.yd9{bottom:717.120057pt;}
.yb0{bottom:718.080048pt;}
.y66{bottom:718.717445pt;}
.y5c{bottom:723.836209pt;}
.y119{bottom:725.920044pt;}
.y88{bottom:728.480072pt;}
.y17{bottom:733.280060pt;}
.yd8{bottom:735.200074pt;}
.y90{bottom:735.360047pt;}
.yaf{bottom:736.480072pt;}
.y132{bottom:737.280060pt;}
.y87{bottom:746.880066pt;}
.y16{bottom:751.680054pt;}
.yd7{bottom:753.280060pt;}
.y49{bottom:754.880066pt;}
.y118{bottom:755.360047pt;}
.y86{bottom:765.280060pt;}
.y131{bottom:766.720063pt;}
.y15{bottom:770.080048pt;}
.yd6{bottom:771.200074pt;}
.y48{bottom:773.280060pt;}
.y117{bottom:773.440064pt;}
.y85{bottom:783.680054pt;}
.y130{bottom:784.800049pt;}
.y14{bottom:788.480072pt;}
.yfb{bottom:789.280060pt;}
.y47{bottom:791.680054pt;}
.yd5{bottom:800.640046pt;}
.y84{bottom:802.080048pt;}
.y116{bottom:802.720063pt;}
.y13{bottom:806.880066pt;}
.y46{bottom:810.080048pt;}
.y12f{bottom:814.080048pt;}
.yd4{bottom:818.720063pt;}
.y83{bottom:820.480072pt;}
.y115{bottom:820.800049pt;}
.y12{bottom:825.280060pt;}
.y45{bottom:828.480072pt;}
.yd3{bottom:836.800049pt;}
.y82{bottom:838.880066pt;}
.y12e{bottom:843.520050pt;}
.y11{bottom:843.680054pt;}
.y44{bottom:846.880066pt;}
.y114{bottom:850.240052pt;}
.yd2{bottom:854.880066pt;}
.y81{bottom:857.280060pt;}
.y12d{bottom:861.600068pt;}
.y10{bottom:862.080048pt;}
.y43{bottom:865.280060pt;}
.y113{bottom:868.320054pt;}
.yd1{bottom:872.960053pt;}
.y80{bottom:875.680054pt;}
.y12c{bottom:879.680054pt;}
.yf{bottom:880.480057pt;}
.y42{bottom:883.680054pt;}
.yd0{bottom:890.880066pt;}
.y7f{bottom:894.080063pt;}
.y112{bottom:897.760056pt;}
.y41{bottom:902.080063pt;}
.ycf{bottom:908.960053pt;}
.y7e{bottom:912.480057pt;}
.ye{bottom:913.760056pt;}
.y40{bottom:920.480057pt;}
.yf9{bottom:923.840058pt;}
.yce{bottom:927.040055pt;}
.y7d{bottom:930.880066pt;}
.y3f{bottom:938.880066pt;}
.ycd{bottom:945.120057pt;}
.y3e{bottom:957.280060pt;}
.y7c{bottom:960.640061pt;}
.ycc{bottom:975.040055pt;}
.y3d{bottom:975.680054pt;}
.y1{bottom:994.080063pt;}
.yb{bottom:1006.720063pt;}
.ya{bottom:1019.040062pt;}
.y9{bottom:1031.360062pt;}
.yc{bottom:1048.800057pt;}
.hd{height:3.519959pt;}
.h19{height:16.479980pt;}
.h17{height:16.479981pt;}
.h18{height:16.479996pt;}
.h1a{height:16.480042pt;}
.hb{height:17.760009pt;}
.ha{height:17.760010pt;}
.hc{height:17.919983pt;}
.h5{height:21.280002pt;}
.h3{height:26.736659pt;}
.h1c{height:29.774236pt;}
.h10{height:36.071815pt;}
.h4{height:38.442684pt;}
.h1d{height:41.509542pt;}
.hf{height:43.033043pt;}
.h1e{height:44.439169pt;}
.h15{height:47.220524pt;}
.h12{height:47.742064pt;}
.h11{height:49.148311pt;}
.h16{height:52.787152pt;}
.h14{height:54.390475pt;}
.h6{height:56.308352pt;}
.h2{height:57.377155pt;}
.h9{height:59.562680pt;}
.h8{height:59.562740pt;}
.h1b{height:59.562800pt;}
.h13{height:76.671687pt;}
.he{height:96.253615pt;}
.h7{height:144.380715pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w15{width:1.440003pt;}
.w14{width:2.080017pt;}
.w7{width:2.400025pt;}
.w6{width:4.320007pt;}
.w8{width:5.279999pt;}
.w18{width:5.440003pt;}
.w11{width:6.720031pt;}
.w16{width:7.519989pt;}
.w17{width:7.840027pt;}
.wf{width:8.959961pt;}
.w13{width:8.959992pt;}
.wb{width:8.960022pt;}
.w4{width:10.399994pt;}
.w9{width:18.720001pt;}
.w10{width:20.480041pt;}
.we{width:22.240051pt;}
.wd{width:59.680053pt;}
.w3{width:63.360016pt;}
.w2{width:103.680001pt;}
.w12{width:236.639999pt;}
.wa{width:354.879989pt;}
.w5{width:446.559982pt;}
.wc{width:453.280014pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.400002pt;}
.x7{left:95.519997pt;}
.x4{left:96.959999pt;}
.x38{left:100.639999pt;}
.x1b{left:105.439181pt;}
.x17{left:116.320017pt;}
.x2a{left:125.277060pt;}
.x2b{left:126.396769pt;}
.x37{left:142.399994pt;}
.x1c{left:147.200860pt;}
.x18{left:150.081656pt;}
.x33{left:155.679993pt;}
.x34{left:157.440002pt;}
.x8{left:160.479996pt;}
.x35{left:171.360001pt;}
.x29{left:178.240991pt;}
.xc{left:184.479996pt;}
.xd{left:189.759995pt;}
.x5{left:201.279999pt;}
.xe{left:208.479996pt;}
.x19{left:217.440853pt;}
.x3b{left:218.880005pt;}
.x39{left:234.080002pt;}
.x2c{left:245.278660pt;}
.x1a{left:251.196618pt;}
.x6{left:264.640015pt;}
.x3e{left:286.399994pt;}
.x36{left:310.880005pt;}
.x21{left:311.997453pt;}
.x20{left:314.081518pt;}
.x1d{left:315.520671pt;}
.x2{left:322.399994pt;}
.x30{left:332.801558pt;}
.x1e{left:374.237330pt;}
.x2f{left:377.919143pt;}
.x2e{left:383.515114pt;}
.x14{left:397.119995pt;}
.x1f{left:403.515820pt;}
.x2d{left:437.756427pt;}
.x24{left:510.562651pt;}
.x25{left:514.400524pt;}
.x31{left:523.680300pt;}
.x22{left:527.675637pt;}
.x3{left:546.080017pt;}
.x26{left:554.716598pt;}
.x28{left:561.600944pt;}
.xf{left:563.359985pt;}
.x23{left:570.877438pt;}
.x9{left:607.039978pt;}
.xa{left:611.359985pt;}
.xb{left:614.719971pt;}
.x12{left:635.200012pt;}
.x11{left:636.960022pt;}
.x27{left:642.237140pt;}
.x10{left:674.400024pt;}
.x13{left:686.719971pt;}
.x3c{left:690.719971pt;}
.x3d{left:693.440002pt;}
.x3a{left:697.119995pt;}
.x15{left:698.239990pt;}
.x32{left:699.200012pt;}
.x16{left:791.679993pt;}
}




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