
    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_fa579473ea36f2083b832341.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107422;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_f5a15a6bb366a98f00cb9d0a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104492;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_2400d299947ed6fc7364668d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.119629;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_c5defbeaf4de40f8c809f3f2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.117676;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_0bd9502ebd8c48cc259df51f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.912109;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_a3434311ed389172d3b5a668.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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);}
.v2{vertical-align:-3.599946px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:10.799973px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010969px;}
.ls4{letter-spacing:0.017251px;}
.ls3{letter-spacing:0.161377px;}
.ls2{letter-spacing:0.215300px;}
.lsc{letter-spacing:0.286460px;}
.lsb{letter-spacing:31.895201px;}
.ls5{letter-spacing:224.801507px;}
.ls9{letter-spacing:1012.481341px;}
.ls7{letter-spacing:1013.201359px;}
.ls6{letter-spacing:1230.641390px;}
.lsa{letter-spacing:1388.321431px;}
.ls8{letter-spacing:1473.281314px;}
.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;}
}
.ws5{word-spacing:-72.002705px;}
.ws6{word-spacing:-54.002250px;}
.ws3{word-spacing:-19.955718px;}
.ws2{word-spacing:-19.944749px;}
.ws0{word-spacing:-16.554143px;}
.ws4{word-spacing:-14.958623px;}
.ws1{word-spacing:0.000000px;}
._5{margin-left:-7.852615px;}
._6{margin-left:-5.995859px;}
._3{margin-left:-4.405874px;}
._4{margin-left:-2.397350px;}
._1{margin-left:-1.231921px;}
._0{width:1.042070px;}
._2{width:2.298279px;}
._9{width:3.341741px;}
._8{width:4.558109px;}
._b{width:6.067915px;}
._e{width:7.316713px;}
._13{width:8.684482px;}
._12{width:10.618993px;}
._17{width:12.479531px;}
._f{width:13.783737px;}
._a{width:15.324482px;}
._19{width:16.406210px;}
._14{width:17.519721px;}
._18{width:18.533103px;}
._28{width:20.155762px;}
._c{width:21.236860px;}
._d{width:22.951706px;}
._16{width:24.509608px;}
._11{width:25.681902px;}
._10{width:26.903136px;}
._1a{width:28.523478px;}
._60{width:29.771712px;}
._22{width:31.619594px;}
._21{width:33.154714px;}
._61{width:34.285382px;}
._53{width:35.327676px;}
._20{width:36.337740px;}
._3c{width:37.543465px;}
._1b{width:38.568699px;}
._1c{width:40.003447px;}
._38{width:41.292799px;}
._56{width:42.516225px;}
._4b{width:44.739388px;}
._7b{width:45.801106px;}
._15{width:46.969102px;}
._42{width:48.572704px;}
._1f{width:50.132992px;}
._5e{width:52.307086px;}
._4c{width:53.778018px;}
._43{width:56.519683px;}
._4f{width:58.221809px;}
._5c{width:59.237937px;}
._41{width:61.237708px;}
._57{width:62.568357px;}
._47{width:63.918413px;}
._70{width:65.292807px;}
._44{width:66.393446px;}
._5a{width:67.511887px;}
._3d{width:69.770485px;}
._68{width:70.900071px;}
._54{width:75.716634px;}
._45{width:77.202967px;}
._4d{width:78.813964px;}
._69{width:82.047498px;}
._50{width:92.772912px;}
._40{width:95.933103px;}
._58{width:98.300549px;}
._3f{width:100.108570px;}
._3e{width:102.432358px;}
._49{width:113.421601px;}
._6f{width:117.994449px;}
._5d{width:119.107869px;}
._4e{width:120.890365px;}
._2a{width:131.342360px;}
._4a{width:136.011417px;}
._55{width:141.701060px;}
._7a{width:153.881874px;}
._79{width:155.043761px;}
._5f{width:172.632326px;}
._24{width:182.114860px;}
._77{width:187.866025px;}
._76{width:189.025663px;}
._2e{width:191.500866px;}
._6d{width:194.045644px;}
._26{width:203.175738px;}
._51{width:204.541542px;}
._52{width:214.962706px;}
._1e{width:220.780102px;}
._59{width:225.368269px;}
._25{width:230.230865px;}
._1d{width:235.846730px;}
._27{width:245.135486px;}
._46{width:247.101850px;}
._30{width:248.194109px;}
._78{width:252.603341px;}
._39{width:254.113236px;}
._6c{width:261.672031px;}
._48{width:262.808278px;}
._2f{width:268.029151px;}
._6a{width:279.005527px;}
._65{width:280.428801px;}
._5b{width:294.490723px;}
._29{width:299.235355px;}
._34{width:314.461164px;}
._23{width:320.090609px;}
._31{width:332.443913px;}
._3b{width:348.782735px;}
._33{width:362.030852px;}
._6e{width:378.032112px;}
._75{width:379.930907px;}
._71{width:381.212694px;}
._72{width:382.263765px;}
._3a{width:388.341114px;}
._36{width:392.056103px;}
._32{width:405.950897px;}
._35{width:435.976148px;}
._74{width:443.824671px;}
._2c{width:559.850214px;}
._67{width:583.597432px;}
._62{width:631.443426px;}
._37{width:672.026089px;}
._63{width:688.352351px;}
._6b{width:717.657448px;}
._66{width:755.178608px;}
._64{width:817.319170px;}
._73{width:821.250753px;}
._2d{width:850.922341px;}
._2b{width:1070.403513px;}
._7{width:1476.236573px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:54.002250px;}
.fs1{font-size:59.762250px;}
.fs4{font-size:66.242700px;}
.fs0{font-size:72.002705px;}
.fs3{font-size:84.243145px;}
.fs2{font-size:95.763600px;}
.y0{bottom:0.000000px;}
.y62{bottom:2.879997px;}
.y65{bottom:2.879998px;}
.y95{bottom:2.880015px;}
.ya8{bottom:2.880031px;}
.yd3{bottom:3.059967px;}
.ya3{bottom:3.060001px;}
.ycf{bottom:3.060035px;}
.y31{bottom:57.420043px;}
.y8{bottom:57.960022px;}
.y30{bottom:78.120072px;}
.y7{bottom:78.300110px;}
.y6{bottom:95.760132px;}
.y5{bottom:113.220085px;}
.y4{bottom:130.860077px;}
.y176{bottom:131.400055px;}
.y1a5{bottom:141.120072px;}
.y1cd{bottom:141.480079px;}
.ye5{bottom:142.020058px;}
.y6e{bottom:145.440033px;}
.y1ce{bottom:145.620072px;}
.yc7{bottom:148.500068px;}
.y175{bottom:152.100083px;}
.y11b{bottom:156.960091px;}
.ye4{bottom:157.500068px;}
.y6d{bottom:160.920043px;}
.y1a4{bottom:161.820099px;}
.y92{bottom:162.180039px;}
.y60{bottom:166.320099px;}
.yc6{bottom:169.200096px;}
.y147{bottom:170.460091px;}
.y174{bottom:172.800041px;}
.ye3{bottom:172.980079px;}
.y6c{bottom:177.120072px;}
.y11a{bottom:177.660049px;}
.y1a3{bottom:182.520058px;}
.y91{bottom:182.880066px;}
.y146{bottom:186.120072px;}
.y5f{bottom:187.020058px;}
.ye2{bottom:188.640060px;}
.yc5{bottom:189.900055px;}
.y6b{bottom:192.780052px;}
.y173{bottom:193.500068px;}
.y119{bottom:198.360077px;}
.y145{bottom:201.600083px;}
.ye0{bottom:201.960091px;}
.y1a2{bottom:203.220085px;}
.y90{bottom:203.580093px;}
.y69{bottom:206.100083px;}
.y5e{bottom:207.720085px;}
.y6a{bottom:208.980079px;}
.yc4{bottom:210.600083px;}
.y172{bottom:214.200096px;}
.y144{bottom:217.080093px;}
.y118{bottom:219.060036px;}
.ye1{bottom:219.420043px;}
.ydf{bottom:220.320099px;}
.y1a1{bottom:223.920043px;}
.y8f{bottom:224.280052px;}
.y68{bottom:225.180039px;}
.y5d{bottom:228.420043px;}
.yc3{bottom:231.300041px;}
.y143{bottom:232.560036px;}
.y171{bottom:234.900055px;}
.yde{bottom:237.600083px;}
.y117{bottom:239.760064px;}
.y67{bottom:240.840088px;}
.y1a0{bottom:244.620072px;}
.y8e{bottom:244.980079px;}
.y2f{bottom:245.520058px;}
.y142{bottom:248.040047px;}
.y5c{bottom:249.120072px;}
.yc2{bottom:251.820099px;}
.y64{bottom:254.160049px;}
.ydd{bottom:254.880066px;}
.y170{bottom:255.600083px;}
.y66{bottom:257.040047px;}
.y116{bottom:260.460091px;}
.y141{bottom:263.700096px;}
.y8d{bottom:264.960091px;}
.y19f{bottom:265.320099px;}
.y1cc{bottom:265.680039px;}
.y2e{bottom:266.220085px;}
.ydb{bottom:268.560036px;}
.y5b{bottom:269.820099px;}
.y61{bottom:270.360077px;}
.ydc{bottom:271.440033px;}
.yda{bottom:272.160049px;}
.yc1{bottom:272.520058px;}
.y63{bottom:273.240074px;}
.y16f{bottom:276.300041px;}
.y140{bottom:279.180039px;}
.y8c{bottom:280.440033px;}
.y115{bottom:281.160049px;}
.yd8{bottom:285.660049px;}
.y19e{bottom:286.020058px;}
.y1cb{bottom:286.380066px;}
.y2d{bottom:286.920043px;}
.y5a{bottom:290.520058px;}
.y8b{bottom:293.040047px;}
.yc0{bottom:293.220085px;}
.y13f{bottom:294.660049px;}
.y16e{bottom:297.000068px;}
.y114{bottom:301.860077px;}
.yd9{bottom:303.120072px;}
.yd7{bottom:304.020058px;}
.y19d{bottom:306.720085px;}
.y1ca{bottom:307.080093px;}
.y2c{bottom:307.620072px;}
.y13e{bottom:311.040047px;}
.y59{bottom:311.220085px;}
.ybf{bottom:313.920043px;}
.y16d{bottom:317.700096px;}
.yd6{bottom:321.300041px;}
.y113{bottom:322.560036px;}
.y13d{bottom:326.520058px;}
.y19c{bottom:327.420043px;}
.y1c9{bottom:327.780052px;}
.y2b{bottom:328.320099px;}
.y58{bottom:331.920043px;}
.ybe{bottom:334.620072px;}
.yd4{bottom:337.680039px;}
.y16c{bottom:338.400055px;}
.y13c{bottom:342.000068px;}
.y112{bottom:343.260064px;}
.y19b{bottom:348.120072px;}
.y1c8{bottom:348.480079px;}
.y2a{bottom:349.020058px;}
.yd5{bottom:352.260064px;}
.y57{bottom:352.620072px;}
.yd2{bottom:353.160049px;}
.ybd{bottom:355.320099px;}
.y13b{bottom:357.480079px;}
.y16b{bottom:359.100083px;}
.y111{bottom:363.960091px;}
.yd1{bottom:366.480079px;}
.y19a{bottom:368.820099px;}
.y1c7{bottom:369.180039px;}
.y29{bottom:369.720085px;}
.y13a{bottom:373.140060px;}
.y56{bottom:373.320099px;}
.ybc{bottom:376.020058px;}
.y16a{bottom:379.800041px;}
.yce{bottom:382.680039px;}
.y110{bottom:384.660049px;}
.yd0{bottom:385.740074px;}
.y139{bottom:388.620072px;}
.y199{bottom:389.520058px;}
.y1c6{bottom:389.880066px;}
.y28{bottom:390.420043px;}
.y55{bottom:394.020058px;}
.ybb{bottom:396.720085px;}
.y169{bottom:400.500068px;}
.ycd{bottom:401.220085px;}
.y138{bottom:404.100083px;}
.y10f{bottom:405.360077px;}
.y198{bottom:410.220085px;}
.y1c5{bottom:410.580093px;}
.y27{bottom:411.120072px;}
.y54{bottom:414.720085px;}
.ycc{bottom:416.700096px;}
.yba{bottom:417.420043px;}
.y137{bottom:419.580093px;}
.y168{bottom:421.200096px;}
.y10e{bottom:426.060036px;}
.y197{bottom:430.920043px;}
.y1c4{bottom:431.280052px;}
.y26{bottom:431.820099px;}
.ycb{bottom:432.180039px;}
.y53{bottom:435.420043px;}
.y136{bottom:435.960091px;}
.yb9{bottom:438.120072px;}
.y167{bottom:441.900055px;}
.y10d{bottom:445.860077px;}
.yca{bottom:447.840088px;}
.y135{bottom:451.440033px;}
.y196{bottom:451.620072px;}
.y1c3{bottom:451.980079px;}
.y25{bottom:452.520058px;}
.y52{bottom:456.120072px;}
.yb8{bottom:458.820099px;}
.yc9{bottom:461.160049px;}
.y166{bottom:462.600083px;}
.y10c{bottom:466.020058px;}
.y134{bottom:466.920043px;}
.y195{bottom:472.320099px;}
.y1c2{bottom:472.680039px;}
.y24{bottom:473.220085px;}
.y51{bottom:476.820099px;}
.yc8{bottom:477.360077px;}
.yb7{bottom:479.520058px;}
.y133{bottom:482.400055px;}
.y165{bottom:483.300041px;}
.y10b{bottom:486.180039px;}
.y194{bottom:493.020058px;}
.y1c1{bottom:493.380066px;}
.y23{bottom:493.920043px;}
.y50{bottom:497.520058px;}
.y132{bottom:498.060036px;}
.yb6{bottom:500.220085px;}
.y164{bottom:504.000068px;}
.y10a{bottom:506.160049px;}
.y131{bottom:513.540047px;}
.y193{bottom:513.720085px;}
.y1c0{bottom:514.080093px;}
.y22{bottom:514.620072px;}
.y4f{bottom:518.220085px;}
.yb5{bottom:520.920043px;}
.y163{bottom:524.700096px;}
.y109{bottom:526.320099px;}
.y130{bottom:529.740074px;}
.y192{bottom:534.420043px;}
.y1bf{bottom:534.780052px;}
.y21{bottom:535.320099px;}
.y4e{bottom:538.920043px;}
.yb4{bottom:541.620072px;}
.y108{bottom:543.420043px;}
.y12f{bottom:545.400055px;}
.y191{bottom:555.120072px;}
.y1be{bottom:555.300041px;}
.y20{bottom:556.020058px;}
.y4d{bottom:559.620072px;}
.y12e{bottom:560.880066px;}
.yb3{bottom:562.320099px;}
.y107{bottom:564.120072px;}
.y162{bottom:566.100083px;}
.y8a{bottom:573.480079px;}
.y190{bottom:574.920043px;}
.y1bd{bottom:576.000068px;}
.y12d{bottom:576.360077px;}
.y1f{bottom:576.720085px;}
.y4c{bottom:580.320099px;}
.yb2{bottom:583.020058px;}
.y106{bottom:584.820099px;}
.y161{bottom:586.800041px;}
.y12c{bottom:591.840088px;}
.y89{bottom:594.180039px;}
.y18f{bottom:595.260064px;}
.y1bc{bottom:596.700096px;}
.y1e{bottom:597.420043px;}
.y4b{bottom:601.020058px;}
.yb1{bottom:603.720085px;}
.y105{bottom:605.520058px;}
.y12b{bottom:607.500068px;}
.y88{bottom:614.880066px;}
.y18e{bottom:615.420043px;}
.y1bb{bottom:617.400055px;}
.y1d{bottom:618.120072px;}
.y4a{bottom:621.540047px;}
.y12a{bottom:622.980079px;}
.yb0{bottom:624.420043px;}
.y104{bottom:626.220085px;}
.y160{bottom:628.200096px;}
.y87{bottom:635.580093px;}
.y18d{bottom:635.760064px;}
.y1ba{bottom:637.380066px;}
.y129{bottom:638.460091px;}
.y1c{bottom:638.820099px;}
.y49{bottom:642.240074px;}
.yaf{bottom:645.120072px;}
.y103{bottom:646.920043px;}
.y15f{bottom:648.900055px;}
.y18c{bottom:652.860077px;}
.y128{bottom:653.940033px;}
.y86{bottom:656.280052px;}
.y1b9{bottom:657.540047px;}
.y1b{bottom:659.520058px;}
.y48{bottom:662.940033px;}
.yae{bottom:665.820099px;}
.y102{bottom:667.620072px;}
.y127{bottom:669.600083px;}
.y18b{bottom:673.560036px;}
.y85{bottom:676.980079px;}
.y1b8{bottom:677.880066px;}
.y1a{bottom:680.220085px;}
.y47{bottom:683.640060px;}
.y126{bottom:685.800041px;}
.yad{bottom:686.520058px;}
.y101{bottom:688.320065px;}
.y15e{bottom:690.300076px;}
.y18a{bottom:694.260064px;}
.y84{bottom:697.680073px;}
.y1b7{bottom:698.040081px;}
.y125{bottom:701.280052px;}
.y19{bottom:701.820065px;}
.y46{bottom:704.340054px;}
.yac{bottom:707.220051px;}
.y100{bottom:709.020058px;}
.y15d{bottom:711.000068px;}
.y189{bottom:714.960056px;}
.y1b6{bottom:715.140060px;}
.y124{bottom:716.760064px;}
.y83{bottom:718.380066px;}
.y45{bottom:725.040081px;}
.y18{bottom:725.940067px;}
.yab{bottom:727.920078px;}
.yff{bottom:729.720051px;}
.y15c{bottom:731.700061px;}
.y123{bottom:732.420078px;}
.y188{bottom:735.660049px;}
.y1b5{bottom:735.840054px;}
.y82{bottom:739.080059px;}
.y44{bottom:745.740074px;}
.y15b{bottom:747.180073px;}
.yaa{bottom:747.900055px;}
.y17{bottom:750.060070px;}
.yfe{bottom:750.420078px;}
.y187{bottom:756.360077px;}
.y1b4{bottom:756.540081px;}
.y81{bottom:759.780052px;}
.ya7{bottom:761.220051px;}
.y15a{bottom:762.660049px;}
.ya9{bottom:764.100083px;}
.y43{bottom:766.440067px;}
.yfd{bottom:771.120072px;}
.y16{bottom:774.180073px;}
.y186{bottom:777.060070px;}
.y1b3{bottom:777.240074px;}
.ya5{bottom:777.420078px;}
.y159{bottom:778.140060px;}
.y122{bottom:779.760064px;}
.ya6{bottom:780.300076px;}
.y80{bottom:780.480079px;}
.y42{bottom:787.140060px;}
.yfc{bottom:791.820065px;}
.ya2{bottom:793.620072px;}
.y121{bottom:795.240074px;}
.ya4{bottom:796.680073px;}
.y15{bottom:797.400055px;}
.y185{bottom:797.760064px;}
.y1b2{bottom:797.940067px;}
.y7f{bottom:801.180073px;}
.y41{bottom:807.840054px;}
.y158{bottom:809.280052px;}
.y120{bottom:810.720051px;}
.yfb{bottom:812.520058px;}
.ya1{bottom:812.880066px;}
.y14{bottom:817.380066px;}
.y184{bottom:818.460056px;}
.y1b1{bottom:818.640060px;}
.y7e{bottom:821.880066px;}
.y157{bottom:824.760064px;}
.y11f{bottom:826.200061px;}
.ya0{bottom:828.360077px;}
.y40{bottom:828.540081px;}
.yfa{bottom:832.320065px;}
.y183{bottom:839.160049px;}
.y1b0{bottom:839.340054px;}
.y156{bottom:840.240074px;}
.y13{bottom:841.500068px;}
.y11e{bottom:841.860077px;}
.y7d{bottom:842.580059px;}
.y9f{bottom:844.740074px;}
.y3f{bottom:849.240074px;}
.yf9{bottom:849.600083px;}
.y11d{bottom:855.180073px;}
.y155{bottom:856.620072px;}
.y182{bottom:859.860077px;}
.y1af{bottom:860.040081px;}
.y9e{bottom:860.220051px;}
.y7c{bottom:863.280052px;}
.y12{bottom:865.080059px;}
.yf8{bottom:866.880066px;}
.y3e{bottom:869.940067px;}
.y154{bottom:872.100083px;}
.y11c{bottom:873.540081px;}
.y9d{bottom:875.700061px;}
.y181{bottom:880.560070px;}
.y1ae{bottom:880.740074px;}
.y7b{bottom:883.980079px;}
.yf7{bottom:884.160049px;}
.y153{bottom:887.580059px;}
.y11{bottom:889.920078px;}
.y3d{bottom:890.640060px;}
.y9c{bottom:892.080059px;}
.y180{bottom:900.360077px;}
.yf6{bottom:901.440067px;}
.y152{bottom:903.060070px;}
.y7a{bottom:904.680073px;}
.y9b{bottom:907.560070px;}
.y3c{bottom:911.340054px;}
.y10{bottom:914.040081px;}
.yf4{bottom:915.120072px;}
.yf5{bottom:918.000068px;}
.yf3{bottom:918.720051px;}
.y17f{bottom:920.520058px;}
.y1ad{bottom:921.420078px;}
.y9a{bottom:923.040081px;}
.y79{bottom:925.380066px;}
.y3b{bottom:932.040081px;}
.yf1{bottom:932.400055px;}
.y151{bottom:934.920078px;}
.yf2{bottom:935.280052px;}
.yf0{bottom:936.000068px;}
.yf{bottom:937.620072px;}
.y1ac{bottom:939.060070px;}
.y99{bottom:939.420078px;}
.y17e{bottom:940.680073px;}
.y78{bottom:946.080059px;}
.yee{bottom:949.680073px;}
.y150{bottom:950.400055px;}
.yef{bottom:952.560070px;}
.y3a{bottom:952.740074px;}
.yed{bottom:953.280053px;}
.y98{bottom:954.900055px;}
.y1ab{bottom:956.880066px;}
.y17d{bottom:960.660049px;}
.ye{bottom:962.100083px;}
.y14f{bottom:965.880066px;}
.y77{bottom:966.780053px;}
.y97{bottom:971.100083px;}
.y39{bottom:973.440067px;}
.y1aa{bottom:974.700061px;}
.y17c{bottom:980.820065px;}
.y14e{bottom:981.540064px;}
.yec{bottom:982.980063px;}
.yd{bottom:986.220068px;}
.y96{bottom:986.580059px;}
.y76{bottom:987.480063px;}
.y1a9{bottom:992.520058px;}
.y38{bottom:994.140060px;}
.y14d{bottom:997.020058px;}
.y94{bottom:1000.080059px;}
.y17b{bottom:1000.980063px;}
.yeb{bottom:1001.520058px;}
.y75{bottom:1008.180073px;}
.y1a8{bottom:1010.160067px;}
.yc{bottom:1010.340070px;}
.y14c{bottom:1013.220068px;}
.y37{bottom:1014.840070px;}
.yea{bottom:1017.000068px;}
.y93{bottom:1018.440067px;}
.y17a{bottom:1020.960074px;}
.y1a7{bottom:1027.980063px;}
.y74{bottom:1028.880066px;}
.ye9{bottom:1032.480063px;}
.y36{bottom:1035.540064px;}
.yb{bottom:1039.500068px;}
.y179{bottom:1041.120072px;}
.y14b{bottom:1044.360060px;}
.y1a6{bottom:1045.800058px;}
.ye8{bottom:1047.960074px;}
.y73{bottom:1049.580059px;}
.y35{bottom:1056.240074px;}
.y14a{bottom:1059.840070px;}
.ye7{bottom:1064.340070px;}
.y178{bottom:1065.060070px;}
.ya{bottom:1067.040064px;}
.y72{bottom:1070.280069px;}
.y149{bottom:1075.320065px;}
.y34{bottom:1076.940067px;}
.ye6{bottom:1077.660067px;}
.y177{bottom:1080.540064px;}
.y71{bottom:1090.080059px;}
.y148{bottom:1090.980063px;}
.y9{bottom:1094.580059px;}
.y33{bottom:1097.640060px;}
.y70{bottom:1106.460074px;}
.y32{bottom:1118.340070px;}
.y6f{bottom:1121.940067px;}
.y3{bottom:1151.460065px;}
.y2{bottom:1172.160067px;}
.y1{bottom:1192.860064px;}
.h1a{height:15.120002px;}
.h14{height:15.120003px;}
.h1b{height:15.120019px;}
.h18{height:15.479943px;}
.h11{height:15.479976px;}
.h19{height:15.479993px;}
.hf{height:15.480010px;}
.hc{height:15.480011px;}
.h10{height:15.659981px;}
.h12{height:15.660049px;}
.h1c{height:16.199993px;}
.h16{height:16.200028px;}
.h17{height:35.992711px;}
.h15{height:48.280332px;}
.he{height:48.438542px;}
.hd{height:48.860434px;}
.h13{height:48.992276px;}
.h3{height:53.605104px;}
.h7{height:59.223820px;}
.ha{height:64.373512px;}
.h2{height:64.584457px;}
.h9{height:65.146978px;}
.hb{height:65.322766px;}
.h5{height:75.316992px;}
.h8{height:75.563798px;}
.h6{height:76.221948px;}
.h4{height:86.645484px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.wb{width:3.780001px;}
.w12{width:7.559966px;}
.w10{width:7.559967px;}
.w3{width:7.560001px;}
.w7{width:7.560002px;}
.w1a{width:7.560036px;}
.w15{width:8.099946px;}
.w14{width:8.100014px;}
.w11{width:12.779984px;}
.wf{width:20.340019px;}
.w2{width:39.060002px;}
.w4{width:41.220000px;}
.w18{width:54.000000px;}
.w8{width:57.780001px;}
.w6{width:58.500000px;}
.w13{width:63.720000px;}
.w9{width:68.220000px;}
.wa{width:68.939999px;}
.w5{width:75.780001px;}
.w19{width:77.220016px;}
.w16{width:135.000000px;}
.wc{width:304.560001px;}
.wd{width:380.520007px;}
.we{width:579.959971px;}
.w17{width:583.740024px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:127.439999px;}
.x3{left:131.219999px;}
.x9{left:134.099997px;}
.x11{left:135.719999px;}
.x7{left:151.919992px;}
.x6{left:153.719999px;}
.x12{left:174.780001px;}
.x14{left:176.939999px;}
.x10{left:181.620002px;}
.x2c{left:191.520006px;}
.x18{left:194.219999px;}
.x22{left:199.439999px;}
.x19{left:203.939999px;}
.x1a{left:208.439999px;}
.x15{left:211.500000px;}
.x5{left:219.599997px;}
.x2{left:222.659998px;}
.x17{left:235.979994px;}
.x13{left:238.139992px;}
.x28{left:263.699993px;}
.x25{left:270.719999px;}
.x8{left:297.180005px;}
.xa{left:302.939999px;}
.x2a{left:392.759994px;}
.x29{left:426.240006px;}
.xf{left:431.279983px;}
.x1{left:446.399987px;}
.xe{left:477.180005px;}
.x1b{left:513.000000px;}
.x1c{left:516.240006px;}
.xc{left:543.600014px;}
.xb{left:565.740006px;}
.x2b{left:587.340019px;}
.x27{left:591.299973px;}
.x1e{left:645.659981px;}
.x23{left:653.759994px;}
.x1f{left:666.000000px;}
.x16{left:667.980011px;}
.x20{left:713.700027px;}
.x1d{left:715.679970px;}
.x26{left:719.460023px;}
.x24{left:721.799973px;}
.x21{left:726.480011px;}
.xd{left:765.360008px;}
@media print{
.v2{vertical-align:-3.199952pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:9.599976pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009750pt;}
.ls4{letter-spacing:0.015334pt;}
.ls3{letter-spacing:0.143446pt;}
.ls2{letter-spacing:0.191378pt;}
.lsc{letter-spacing:0.254631pt;}
.lsb{letter-spacing:28.351290pt;}
.ls5{letter-spacing:199.823562pt;}
.ls9{letter-spacing:899.983414pt;}
.ls7{letter-spacing:900.623430pt;}
.ls6{letter-spacing:1093.903458pt;}
.lsa{letter-spacing:1234.063494pt;}
.ls8{letter-spacing:1309.583390pt;}
.ws5{word-spacing:-64.002404pt;}
.ws6{word-spacing:-48.002000pt;}
.ws3{word-spacing:-17.738416pt;}
.ws2{word-spacing:-17.728666pt;}
.ws0{word-spacing:-14.714794pt;}
.ws4{word-spacing:-13.296554pt;}
.ws1{word-spacing:0.000000pt;}
._5{margin-left:-6.980102pt;}
._6{margin-left:-5.329653pt;}
._3{margin-left:-3.916332pt;}
._4{margin-left:-2.130978pt;}
._1{margin-left:-1.095041pt;}
._0{width:0.926285pt;}
._2{width:2.042914pt;}
._9{width:2.970436pt;}
._8{width:4.051652pt;}
._b{width:5.393703pt;}
._e{width:6.503744pt;}
._13{width:7.719539pt;}
._12{width:9.439105pt;}
._17{width:11.092917pt;}
._f{width:12.252210pt;}
._a{width:13.621762pt;}
._19{width:14.583298pt;}
._14{width:15.573085pt;}
._18{width:16.473869pt;}
._28{width:17.916232pt;}
._c{width:18.877209pt;}
._d{width:20.401516pt;}
._16{width:21.786318pt;}
._11{width:22.828357pt;}
._10{width:23.913898pt;}
._1a{width:25.354202pt;}
._60{width:26.463744pt;}
._22{width:28.106306pt;}
._21{width:29.470857pt;}
._61{width:30.475895pt;}
._53{width:31.402379pt;}
._20{width:32.300213pt;}
._3c{width:33.371969pt;}
._1b{width:34.283288pt;}
._1c{width:35.558619pt;}
._38{width:36.704711pt;}
._56{width:37.792200pt;}
._4b{width:39.768344pt;}
._7b{width:40.712095pt;}
._15{width:41.750313pt;}
._42{width:43.175736pt;}
._1f{width:44.562660pt;}
._5e{width:46.495187pt;}
._4c{width:47.802683pt;}
._43{width:50.239718pt;}
._4f{width:51.752719pt;}
._5c{width:52.655944pt;}
._41{width:54.433518pt;}
._57{width:55.616317pt;}
._47{width:56.816367pt;}
._70{width:58.038051pt;}
._44{width:59.016396pt;}
._5a{width:60.010567pt;}
._3d{width:62.018209pt;}
._68{width:63.022285pt;}
._54{width:67.303675pt;}
._45{width:68.624859pt;}
._4d{width:70.056856pt;}
._69{width:72.931109pt;}
._50{width:82.464811pt;}
._40{width:85.273869pt;}
._58{width:87.378266pt;}
._3f{width:88.985395pt;}
._3e{width:91.050985pt;}
._49{width:100.819201pt;}
._6f{width:104.883954pt;}
._5d{width:105.873661pt;}
._4e{width:107.458102pt;}
._2a{width:116.748764pt;}
._4a{width:120.899037pt;}
._55{width:125.956498pt;}
._7a{width:136.783888pt;}
._79{width:137.816677pt;}
._5f{width:153.450956pt;}
._24{width:161.879876pt;}
._77{width:166.992022pt;}
._76{width:168.022811pt;}
._2e{width:170.222992pt;}
._6d{width:172.485017pt;}
._26{width:180.600656pt;}
._51{width:181.814704pt;}
._52{width:191.077961pt;}
._1e{width:196.248980pt;}
._59{width:200.327350pt;}
._25{width:204.649658pt;}
._1d{width:209.641538pt;}
._27{width:217.898210pt;}
._46{width:219.646089pt;}
._30{width:220.616986pt;}
._78{width:224.536303pt;}
._39{width:225.878432pt;}
._6c{width:232.597361pt;}
._48{width:233.607358pt;}
._2f{width:238.248134pt;}
._6a{width:248.004913pt;}
._65{width:249.270045pt;}
._5b{width:261.769532pt;}
._29{width:265.986982pt;}
._34{width:279.521034pt;}
._23{width:284.524986pt;}
._31{width:295.505700pt;}
._3b{width:310.029098pt;}
._33{width:321.805202pt;}
._6e{width:336.028544pt;}
._75{width:337.716361pt;}
._71{width:338.855728pt;}
._72{width:339.790013pt;}
._3a{width:345.192101pt;}
._36{width:348.494314pt;}
._32{width:360.845242pt;}
._35{width:387.534354pt;}
._74{width:394.510818pt;}
._2c{width:497.644634pt;}
._67{width:518.753273pt;}
._62{width:561.283045pt;}
._37{width:597.356523pt;}
._63{width:611.868756pt;}
._6b{width:637.917732pt;}
._66{width:671.269874pt;}
._64{width:726.505929pt;}
._73{width:730.000670pt;}
._2d{width:756.375414pt;}
._2b{width:951.469789pt;}
._7{width:1312.210287pt;}
.fs5{font-size:48.002000pt;}
.fs1{font-size:53.122000pt;}
.fs4{font-size:58.882400pt;}
.fs0{font-size:64.002404pt;}
.fs3{font-size:74.882796pt;}
.fs2{font-size:85.123200pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:2.559997pt;}
.y65{bottom:2.559998pt;}
.y95{bottom:2.560013pt;}
.ya8{bottom:2.560028pt;}
.yd3{bottom:2.719971pt;}
.ya3{bottom:2.720001pt;}
.ycf{bottom:2.720031pt;}
.y31{bottom:51.040039pt;}
.y8{bottom:51.520020pt;}
.y30{bottom:69.440064pt;}
.y7{bottom:69.600098pt;}
.y6{bottom:85.120118pt;}
.y5{bottom:100.640076pt;}
.y4{bottom:116.320069pt;}
.y176{bottom:116.800049pt;}
.y1a5{bottom:125.440064pt;}
.y1cd{bottom:125.760071pt;}
.ye5{bottom:126.240052pt;}
.y6e{bottom:129.280030pt;}
.y1ce{bottom:129.440064pt;}
.yc7{bottom:132.000061pt;}
.y175{bottom:135.200074pt;}
.y11b{bottom:139.520081pt;}
.ye4{bottom:140.000061pt;}
.y6d{bottom:143.040039pt;}
.y1a4{bottom:143.840088pt;}
.y92{bottom:144.160035pt;}
.y60{bottom:147.840088pt;}
.yc6{bottom:150.400086pt;}
.y147{bottom:151.520081pt;}
.y174{bottom:153.600037pt;}
.ye3{bottom:153.760071pt;}
.y6c{bottom:157.440064pt;}
.y11a{bottom:157.920044pt;}
.y1a3{bottom:162.240052pt;}
.y91{bottom:162.560059pt;}
.y146{bottom:165.440064pt;}
.y5f{bottom:166.240052pt;}
.ye2{bottom:167.680054pt;}
.yc5{bottom:168.800049pt;}
.y6b{bottom:171.360047pt;}
.y173{bottom:172.000061pt;}
.y119{bottom:176.320069pt;}
.y145{bottom:179.200074pt;}
.ye0{bottom:179.520081pt;}
.y1a2{bottom:180.640076pt;}
.y90{bottom:180.960083pt;}
.y69{bottom:183.200074pt;}
.y5e{bottom:184.640076pt;}
.y6a{bottom:185.760071pt;}
.yc4{bottom:187.200074pt;}
.y172{bottom:190.400086pt;}
.y144{bottom:192.960083pt;}
.y118{bottom:194.720032pt;}
.ye1{bottom:195.040039pt;}
.ydf{bottom:195.840088pt;}
.y1a1{bottom:199.040039pt;}
.y8f{bottom:199.360047pt;}
.y68{bottom:200.160035pt;}
.y5d{bottom:203.040039pt;}
.yc3{bottom:205.600037pt;}
.y143{bottom:206.720032pt;}
.y171{bottom:208.800049pt;}
.yde{bottom:211.200074pt;}
.y117{bottom:213.120057pt;}
.y67{bottom:214.080079pt;}
.y1a0{bottom:217.440064pt;}
.y8e{bottom:217.760071pt;}
.y2f{bottom:218.240052pt;}
.y142{bottom:220.480042pt;}
.y5c{bottom:221.440064pt;}
.yc2{bottom:223.840088pt;}
.y64{bottom:225.920044pt;}
.ydd{bottom:226.560059pt;}
.y170{bottom:227.200074pt;}
.y66{bottom:228.480042pt;}
.y116{bottom:231.520081pt;}
.y141{bottom:234.400086pt;}
.y8d{bottom:235.520081pt;}
.y19f{bottom:235.840088pt;}
.y1cc{bottom:236.160035pt;}
.y2e{bottom:236.640076pt;}
.ydb{bottom:238.720032pt;}
.y5b{bottom:239.840088pt;}
.y61{bottom:240.320069pt;}
.ydc{bottom:241.280030pt;}
.yda{bottom:241.920044pt;}
.yc1{bottom:242.240052pt;}
.y63{bottom:242.880066pt;}
.y16f{bottom:245.600037pt;}
.y140{bottom:248.160035pt;}
.y8c{bottom:249.280030pt;}
.y115{bottom:249.920044pt;}
.yd8{bottom:253.920044pt;}
.y19e{bottom:254.240052pt;}
.y1cb{bottom:254.560059pt;}
.y2d{bottom:255.040039pt;}
.y5a{bottom:258.240052pt;}
.y8b{bottom:260.480042pt;}
.yc0{bottom:260.640076pt;}
.y13f{bottom:261.920044pt;}
.y16e{bottom:264.000061pt;}
.y114{bottom:268.320069pt;}
.yd9{bottom:269.440064pt;}
.yd7{bottom:270.240052pt;}
.y19d{bottom:272.640076pt;}
.y1ca{bottom:272.960083pt;}
.y2c{bottom:273.440064pt;}
.y13e{bottom:276.480042pt;}
.y59{bottom:276.640076pt;}
.ybf{bottom:279.040039pt;}
.y16d{bottom:282.400086pt;}
.yd6{bottom:285.600037pt;}
.y113{bottom:286.720032pt;}
.y13d{bottom:290.240052pt;}
.y19c{bottom:291.040039pt;}
.y1c9{bottom:291.360047pt;}
.y2b{bottom:291.840088pt;}
.y58{bottom:295.040039pt;}
.ybe{bottom:297.440064pt;}
.yd4{bottom:300.160035pt;}
.y16c{bottom:300.800049pt;}
.y13c{bottom:304.000061pt;}
.y112{bottom:305.120057pt;}
.y19b{bottom:309.440064pt;}
.y1c8{bottom:309.760071pt;}
.y2a{bottom:310.240052pt;}
.yd5{bottom:313.120057pt;}
.y57{bottom:313.440064pt;}
.yd2{bottom:313.920044pt;}
.ybd{bottom:315.840088pt;}
.y13b{bottom:317.760071pt;}
.y16b{bottom:319.200074pt;}
.y111{bottom:323.520081pt;}
.yd1{bottom:325.760071pt;}
.y19a{bottom:327.840088pt;}
.y1c7{bottom:328.160035pt;}
.y29{bottom:328.640076pt;}
.y13a{bottom:331.680054pt;}
.y56{bottom:331.840088pt;}
.ybc{bottom:334.240052pt;}
.y16a{bottom:337.600037pt;}
.yce{bottom:340.160035pt;}
.y110{bottom:341.920044pt;}
.yd0{bottom:342.880066pt;}
.y139{bottom:345.440064pt;}
.y199{bottom:346.240052pt;}
.y1c6{bottom:346.560059pt;}
.y28{bottom:347.040039pt;}
.y55{bottom:350.240052pt;}
.ybb{bottom:352.640076pt;}
.y169{bottom:356.000061pt;}
.ycd{bottom:356.640076pt;}
.y138{bottom:359.200074pt;}
.y10f{bottom:360.320069pt;}
.y198{bottom:364.640076pt;}
.y1c5{bottom:364.960083pt;}
.y27{bottom:365.440064pt;}
.y54{bottom:368.640076pt;}
.ycc{bottom:370.400086pt;}
.yba{bottom:371.040039pt;}
.y137{bottom:372.960083pt;}
.y168{bottom:374.400086pt;}
.y10e{bottom:378.720032pt;}
.y197{bottom:383.040039pt;}
.y1c4{bottom:383.360047pt;}
.y26{bottom:383.840088pt;}
.ycb{bottom:384.160035pt;}
.y53{bottom:387.040039pt;}
.y136{bottom:387.520081pt;}
.yb9{bottom:389.440064pt;}
.y167{bottom:392.800049pt;}
.y10d{bottom:396.320069pt;}
.yca{bottom:398.080079pt;}
.y135{bottom:401.280030pt;}
.y196{bottom:401.440064pt;}
.y1c3{bottom:401.760071pt;}
.y25{bottom:402.240052pt;}
.y52{bottom:405.440064pt;}
.yb8{bottom:407.840088pt;}
.yc9{bottom:409.920044pt;}
.y166{bottom:411.200074pt;}
.y10c{bottom:414.240052pt;}
.y134{bottom:415.040039pt;}
.y195{bottom:419.840088pt;}
.y1c2{bottom:420.160035pt;}
.y24{bottom:420.640076pt;}
.y51{bottom:423.840088pt;}
.yc8{bottom:424.320069pt;}
.yb7{bottom:426.240052pt;}
.y133{bottom:428.800049pt;}
.y165{bottom:429.600037pt;}
.y10b{bottom:432.160035pt;}
.y194{bottom:438.240052pt;}
.y1c1{bottom:438.560059pt;}
.y23{bottom:439.040039pt;}
.y50{bottom:442.240052pt;}
.y132{bottom:442.720032pt;}
.yb6{bottom:444.640076pt;}
.y164{bottom:448.000061pt;}
.y10a{bottom:449.920044pt;}
.y131{bottom:456.480042pt;}
.y193{bottom:456.640076pt;}
.y1c0{bottom:456.960083pt;}
.y22{bottom:457.440064pt;}
.y4f{bottom:460.640076pt;}
.yb5{bottom:463.040039pt;}
.y163{bottom:466.400086pt;}
.y109{bottom:467.840088pt;}
.y130{bottom:470.880066pt;}
.y192{bottom:475.040039pt;}
.y1bf{bottom:475.360047pt;}
.y21{bottom:475.840088pt;}
.y4e{bottom:479.040039pt;}
.yb4{bottom:481.440064pt;}
.y108{bottom:483.040039pt;}
.y12f{bottom:484.800049pt;}
.y191{bottom:493.440064pt;}
.y1be{bottom:493.600037pt;}
.y20{bottom:494.240052pt;}
.y4d{bottom:497.440064pt;}
.y12e{bottom:498.560059pt;}
.yb3{bottom:499.840088pt;}
.y107{bottom:501.440064pt;}
.y162{bottom:503.200074pt;}
.y8a{bottom:509.760071pt;}
.y190{bottom:511.040039pt;}
.y1bd{bottom:512.000061pt;}
.y12d{bottom:512.320069pt;}
.y1f{bottom:512.640076pt;}
.y4c{bottom:515.840088pt;}
.yb2{bottom:518.240052pt;}
.y106{bottom:519.840088pt;}
.y161{bottom:521.600037pt;}
.y12c{bottom:526.080079pt;}
.y89{bottom:528.160035pt;}
.y18f{bottom:529.120057pt;}
.y1bc{bottom:530.400086pt;}
.y1e{bottom:531.040039pt;}
.y4b{bottom:534.240052pt;}
.yb1{bottom:536.640076pt;}
.y105{bottom:538.240052pt;}
.y12b{bottom:540.000061pt;}
.y88{bottom:546.560059pt;}
.y18e{bottom:547.040039pt;}
.y1bb{bottom:548.800049pt;}
.y1d{bottom:549.440064pt;}
.y4a{bottom:552.480042pt;}
.y12a{bottom:553.760071pt;}
.yb0{bottom:555.040039pt;}
.y104{bottom:556.640076pt;}
.y160{bottom:558.400086pt;}
.y87{bottom:564.960083pt;}
.y18d{bottom:565.120057pt;}
.y1ba{bottom:566.560059pt;}
.y129{bottom:567.520081pt;}
.y1c{bottom:567.840088pt;}
.y49{bottom:570.880066pt;}
.yaf{bottom:573.440064pt;}
.y103{bottom:575.040039pt;}
.y15f{bottom:576.800049pt;}
.y18c{bottom:580.320069pt;}
.y128{bottom:581.280030pt;}
.y86{bottom:583.360047pt;}
.y1b9{bottom:584.480042pt;}
.y1b{bottom:586.240052pt;}
.y48{bottom:589.280030pt;}
.yae{bottom:591.840088pt;}
.y102{bottom:593.440064pt;}
.y127{bottom:595.200074pt;}
.y18b{bottom:598.720032pt;}
.y85{bottom:601.760071pt;}
.y1b8{bottom:602.560059pt;}
.y1a{bottom:604.640076pt;}
.y47{bottom:607.680054pt;}
.y126{bottom:609.600037pt;}
.yad{bottom:610.240052pt;}
.y101{bottom:611.840058pt;}
.y15e{bottom:613.600068pt;}
.y18a{bottom:617.120057pt;}
.y84{bottom:620.160065pt;}
.y1b7{bottom:620.480072pt;}
.y125{bottom:623.360047pt;}
.y19{bottom:623.840058pt;}
.y46{bottom:626.080048pt;}
.yac{bottom:628.640046pt;}
.y100{bottom:630.240052pt;}
.y15d{bottom:632.000061pt;}
.y189{bottom:635.520050pt;}
.y1b6{bottom:635.680054pt;}
.y124{bottom:637.120057pt;}
.y83{bottom:638.560059pt;}
.y45{bottom:644.480072pt;}
.y18{bottom:645.280060pt;}
.yab{bottom:647.040070pt;}
.yff{bottom:648.640046pt;}
.y15c{bottom:650.400055pt;}
.y123{bottom:651.040070pt;}
.y188{bottom:653.920044pt;}
.y1b5{bottom:654.080048pt;}
.y82{bottom:656.960053pt;}
.y44{bottom:662.880066pt;}
.y15b{bottom:664.160065pt;}
.yaa{bottom:664.800049pt;}
.y17{bottom:666.720063pt;}
.yfe{bottom:667.040070pt;}
.y187{bottom:672.320069pt;}
.y1b4{bottom:672.480072pt;}
.y81{bottom:675.360047pt;}
.ya7{bottom:676.640046pt;}
.y15a{bottom:677.920044pt;}
.ya9{bottom:679.200074pt;}
.y43{bottom:681.280060pt;}
.yfd{bottom:685.440064pt;}
.y16{bottom:688.160065pt;}
.y186{bottom:690.720063pt;}
.y1b3{bottom:690.880066pt;}
.ya5{bottom:691.040070pt;}
.y159{bottom:691.680054pt;}
.y122{bottom:693.120057pt;}
.ya6{bottom:693.600068pt;}
.y80{bottom:693.760071pt;}
.y42{bottom:699.680054pt;}
.yfc{bottom:703.840058pt;}
.ya2{bottom:705.440064pt;}
.y121{bottom:706.880066pt;}
.ya4{bottom:708.160065pt;}
.y15{bottom:708.800049pt;}
.y185{bottom:709.120057pt;}
.y1b2{bottom:709.280060pt;}
.y7f{bottom:712.160065pt;}
.y41{bottom:718.080048pt;}
.y158{bottom:719.360047pt;}
.y120{bottom:720.640046pt;}
.yfb{bottom:722.240052pt;}
.ya1{bottom:722.560059pt;}
.y14{bottom:726.560059pt;}
.y184{bottom:727.520050pt;}
.y1b1{bottom:727.680054pt;}
.y7e{bottom:730.560059pt;}
.y157{bottom:733.120057pt;}
.y11f{bottom:734.400055pt;}
.ya0{bottom:736.320069pt;}
.y40{bottom:736.480072pt;}
.yfa{bottom:739.840058pt;}
.y183{bottom:745.920044pt;}
.y1b0{bottom:746.080048pt;}
.y156{bottom:746.880066pt;}
.y13{bottom:748.000061pt;}
.y11e{bottom:748.320069pt;}
.y7d{bottom:748.960053pt;}
.y9f{bottom:750.880066pt;}
.y3f{bottom:754.880066pt;}
.yf9{bottom:755.200074pt;}
.y11d{bottom:760.160065pt;}
.y155{bottom:761.440064pt;}
.y182{bottom:764.320069pt;}
.y1af{bottom:764.480072pt;}
.y9e{bottom:764.640046pt;}
.y7c{bottom:767.360047pt;}
.y12{bottom:768.960053pt;}
.yf8{bottom:770.560059pt;}
.y3e{bottom:773.280060pt;}
.y154{bottom:775.200074pt;}
.y11c{bottom:776.480072pt;}
.y9d{bottom:778.400055pt;}
.y181{bottom:782.720063pt;}
.y1ae{bottom:782.880066pt;}
.y7b{bottom:785.760071pt;}
.yf7{bottom:785.920044pt;}
.y153{bottom:788.960053pt;}
.y11{bottom:791.040070pt;}
.y3d{bottom:791.680054pt;}
.y9c{bottom:792.960053pt;}
.y180{bottom:800.320069pt;}
.yf6{bottom:801.280060pt;}
.y152{bottom:802.720063pt;}
.y7a{bottom:804.160065pt;}
.y9b{bottom:806.720063pt;}
.y3c{bottom:810.080048pt;}
.y10{bottom:812.480072pt;}
.yf4{bottom:813.440064pt;}
.yf5{bottom:816.000061pt;}
.yf3{bottom:816.640046pt;}
.y17f{bottom:818.240052pt;}
.y1ad{bottom:819.040070pt;}
.y9a{bottom:820.480072pt;}
.y79{bottom:822.560059pt;}
.y3b{bottom:828.480072pt;}
.yf1{bottom:828.800049pt;}
.y151{bottom:831.040070pt;}
.yf2{bottom:831.360047pt;}
.yf0{bottom:832.000061pt;}
.yf{bottom:833.440064pt;}
.y1ac{bottom:834.720063pt;}
.y99{bottom:835.040070pt;}
.y17e{bottom:836.160065pt;}
.y78{bottom:840.960053pt;}
.yee{bottom:844.160065pt;}
.y150{bottom:844.800049pt;}
.yef{bottom:846.720063pt;}
.y3a{bottom:846.880066pt;}
.yed{bottom:847.360047pt;}
.y98{bottom:848.800049pt;}
.y1ab{bottom:850.560059pt;}
.y17d{bottom:853.920044pt;}
.ye{bottom:855.200074pt;}
.y14f{bottom:858.560059pt;}
.y77{bottom:859.360047pt;}
.y97{bottom:863.200074pt;}
.y39{bottom:865.280060pt;}
.y1aa{bottom:866.400055pt;}
.y17c{bottom:871.840058pt;}
.y14e{bottom:872.480057pt;}
.yec{bottom:873.760056pt;}
.yd{bottom:876.640061pt;}
.y96{bottom:876.960053pt;}
.y76{bottom:877.760056pt;}
.y1a9{bottom:882.240052pt;}
.y38{bottom:883.680054pt;}
.y14d{bottom:886.240052pt;}
.y94{bottom:888.960053pt;}
.y17b{bottom:889.760056pt;}
.yeb{bottom:890.240052pt;}
.y75{bottom:896.160065pt;}
.y1a8{bottom:897.920060pt;}
.yc{bottom:898.080063pt;}
.y14c{bottom:900.640061pt;}
.y37{bottom:902.080063pt;}
.yea{bottom:904.000061pt;}
.y93{bottom:905.280060pt;}
.y17a{bottom:907.520066pt;}
.y1a7{bottom:913.760056pt;}
.y74{bottom:914.560059pt;}
.ye9{bottom:917.760056pt;}
.y36{bottom:920.480057pt;}
.yb{bottom:924.000061pt;}
.y179{bottom:925.440064pt;}
.y14b{bottom:928.320054pt;}
.y1a6{bottom:929.600052pt;}
.ye8{bottom:931.520066pt;}
.y73{bottom:932.960053pt;}
.y35{bottom:938.880066pt;}
.y14a{bottom:942.080063pt;}
.ye7{bottom:946.080063pt;}
.y178{bottom:946.720063pt;}
.ya{bottom:948.480057pt;}
.y72{bottom:951.360062pt;}
.y149{bottom:955.840058pt;}
.y34{bottom:957.280060pt;}
.ye6{bottom:957.920060pt;}
.y177{bottom:960.480057pt;}
.y71{bottom:968.960053pt;}
.y148{bottom:969.760056pt;}
.y9{bottom:972.960053pt;}
.y33{bottom:975.680054pt;}
.y70{bottom:983.520066pt;}
.y32{bottom:994.080063pt;}
.y6f{bottom:997.280060pt;}
.y3{bottom:1023.520058pt;}
.y2{bottom:1041.920060pt;}
.y1{bottom:1060.320057pt;}
.h1a{height:13.440002pt;}
.h14{height:13.440003pt;}
.h1b{height:13.440017pt;}
.h18{height:13.759949pt;}
.h11{height:13.759979pt;}
.h19{height:13.759994pt;}
.hf{height:13.760009pt;}
.hc{height:13.760010pt;}
.h10{height:13.919983pt;}
.h12{height:13.920044pt;}
.h1c{height:14.399994pt;}
.h16{height:14.400025pt;}
.h17{height:31.993521pt;}
.h15{height:42.915851pt;}
.he{height:43.056481pt;}
.hd{height:43.431497pt;}
.h13{height:43.548689pt;}
.h3{height:47.648981pt;}
.h7{height:52.643396pt;}
.ha{height:57.220899pt;}
.h2{height:57.408406pt;}
.h9{height:57.908425pt;}
.hb{height:58.064681pt;}
.h5{height:66.948437pt;}
.h8{height:67.167820pt;}
.h6{height:67.752842pt;}
.h4{height:77.018208pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.wb{width:3.360001pt;}
.w12{width:6.719970pt;}
.w10{width:6.719971pt;}
.w3{width:6.720001pt;}
.w7{width:6.720002pt;}
.w1a{width:6.720032pt;}
.w15{width:7.199952pt;}
.w14{width:7.200012pt;}
.w11{width:11.359986pt;}
.wf{width:18.080017pt;}
.w2{width:34.720002pt;}
.w4{width:36.640000pt;}
.w18{width:48.000000pt;}
.w8{width:51.360001pt;}
.w6{width:52.000000pt;}
.w13{width:56.640000pt;}
.w9{width:60.640000pt;}
.wa{width:61.279999pt;}
.w5{width:67.360001pt;}
.w19{width:68.640014pt;}
.w16{width:120.000000pt;}
.wc{width:270.720001pt;}
.wd{width:338.240006pt;}
.we{width:515.519974pt;}
.w17{width:518.880021pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:113.279999pt;}
.x3{left:116.639999pt;}
.x9{left:119.199997pt;}
.x11{left:120.639999pt;}
.x7{left:135.039993pt;}
.x6{left:136.639999pt;}
.x12{left:155.360001pt;}
.x14{left:157.279999pt;}
.x10{left:161.440002pt;}
.x2c{left:170.240005pt;}
.x18{left:172.639999pt;}
.x22{left:177.279999pt;}
.x19{left:181.279999pt;}
.x1a{left:185.279999pt;}
.x15{left:188.000000pt;}
.x5{left:195.199997pt;}
.x2{left:197.919998pt;}
.x17{left:209.759995pt;}
.x13{left:211.679993pt;}
.x28{left:234.399994pt;}
.x25{left:240.639999pt;}
.x8{left:264.160004pt;}
.xa{left:269.279999pt;}
.x2a{left:349.119995pt;}
.x29{left:378.880005pt;}
.xf{left:383.359985pt;}
.x1{left:396.799988pt;}
.xe{left:424.160004pt;}
.x1b{left:456.000000pt;}
.x1c{left:458.880005pt;}
.xc{left:483.200012pt;}
.xb{left:502.880005pt;}
.x2b{left:522.080017pt;}
.x27{left:525.599976pt;}
.x1e{left:573.919983pt;}
.x23{left:581.119995pt;}
.x1f{left:592.000000pt;}
.x16{left:593.760010pt;}
.x20{left:634.400024pt;}
.x1d{left:636.159973pt;}
.x26{left:639.520020pt;}
.x24{left:641.599976pt;}
.x21{left:645.760010pt;}
.xd{left:680.320007pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  