
    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_b57e94fa21b2985d24daca0a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.050293;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_ad317e1d60fbd47b092d9ef8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.935059;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_5c98d878f8cd61d2c1c64512.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.065430;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_91a4b8eb8744649c12b8a669.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.676758;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;}
.m5{transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249488,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249488,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249559,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249639,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-25.200027px;}
.v2{vertical-align:-19.440032px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.463272px;}
.v1{vertical-align:22.319960px;}
.v4{vertical-align:28.080027px;}
.v5{vertical-align:31.679901px;}
.v6{vertical-align:35.999367px;}
.v8{vertical-align:38.880166px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.152543px;}
.ls0{letter-spacing:0.392027px;}
.ls4{letter-spacing:0.421040px;}
.ls1{letter-spacing:0.481019px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-16.920944px;}
.ws5{word-spacing:-16.887938px;}
.ws8{word-spacing:-15.567298px;}
.ws9{word-spacing:-14.044446px;}
.ws2{word-spacing:-14.017050px;}
.ws6{word-spacing:-11.314913px;}
.wsa{word-spacing:-9.814303px;}
.ws4{word-spacing:-9.795015px;}
.ws0{word-spacing:-8.443980px;}
.ws1{word-spacing:-7.092945px;}
.ws3{word-spacing:0.000000px;}
._f{margin-left:-2.625727px;}
._1{margin-left:-1.114274px;}
._0{width:1.195344px;}
._7{width:3.008053px;}
._5{width:4.239908px;}
._6{width:5.336879px;}
._8{width:6.950104px;}
._9{width:8.137235px;}
._c{width:9.457321px;}
._e{width:11.189242px;}
._14{width:12.218378px;}
._10{width:13.222637px;}
._1a{width:14.550803px;}
._11{width:16.783776px;}
._a{width:18.242535px;}
._b{width:19.358565px;}
._15{width:20.396756px;}
._d{width:22.095207px;}
._12{width:23.611742px;}
._1b{width:25.013415px;}
._4{width:26.110702px;}
._2{width:27.158545px;}
._3{width:28.218953px;}
._13{width:29.258201px;}
._35{width:30.265242px;}
._36{width:32.001681px;}
._1d{width:52.617433px;}
._32{width:58.749432px;}
._17{width:72.917225px;}
._2e{width:75.778505px;}
._19{width:78.725662px;}
._2d{width:80.763143px;}
._18{width:90.696631px;}
._30{width:95.959637px;}
._33{width:100.253401px;}
._25{width:104.245152px;}
._2f{width:105.857628px;}
._34{width:110.839163px;}
._1c{width:113.075445px;}
._31{width:121.424926px;}
._16{width:130.329421px;}
._1f{width:145.385471px;}
._2c{width:146.581680px;}
._22{width:152.065998px;}
._1e{width:159.100751px;}
._24{width:166.112809px;}
._23{width:211.335243px;}
._20{width:213.949987px;}
._28{width:247.644580px;}
._29{width:257.794459px;}
._26{width:258.853035px;}
._2a{width:273.984449px;}
._21{width:305.628863px;}
._27{width:312.591348px;}
._2b{width:337.934910px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc1{color:rgb(16,185,129);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:28.371780px;}
.fs4{font-size:33.775920px;}
.fs7{font-size:36.477990px;}
.fs8{font-size:39.180060px;}
.fsd{font-size:39.257210px;}
.fs9{font-size:45.259650px;}
.fs6{font-size:56.068200px;}
.fsc{font-size:56.177786px;}
.fs2{font-size:62.147700px;}
.fsb{font-size:62.269193px;}
.fs0{font-size:67.551750px;}
.fsa{font-size:67.683777px;}
.fs3{font-size:79.035746px;}
.fs1{font-size:89.843850px;}
.ybf{bottom:-3.420549px;}
.yad{bottom:-3.244762px;}
.y0{bottom:0.000000px;}
.yc4{bottom:2.159505px;}
.y63{bottom:3.248090px;}
.yb0{bottom:3.420549px;}
.y71{bottom:3.421956px;}
.y7d{bottom:3.776856px;}
.y66{bottom:3.777807px;}
.y83{bottom:3.781588px;}
.y6d{bottom:3.785416px;}
.y85{bottom:3.786321px;}
.ya3{bottom:3.786367px;}
.y89{bottom:3.786413px;}
.y1{bottom:55.080025px;}
.y62{bottom:71.092648px;}
.y2e{bottom:74.519989px;}
.yd3{bottom:104.759621px;}
.y61{bottom:113.940033px;}
.y2d{bottom:117.360008px;}
.y105{bottom:122.220017px;}
.yd0{bottom:122.931287px;}
.yd1{bottom:128.337692px;}
.y60{bottom:131.759994px;}
.yd2{bottom:132.114548px;}
.y2c{bottom:135.179970px;}
.y104{bottom:140.220017px;}
.ycf{bottom:140.756204px;}
.y5f{bottom:149.580025px;}
.y2b{bottom:153.000000px;}
.ycd{bottom:157.493084px;}
.y103{bottom:157.860008px;}
.ycc{bottom:160.913633px;}
.yce{bottom:161.274673px;}
.y5e{bottom:167.580025px;}
.y2a{bottom:171.000000px;}
.y102{bottom:175.679970px;}
.yc9{bottom:181.256454px;}
.y5d{bottom:185.399986px;}
.y8f{bottom:186.296995px;}
.yca{bottom:187.194907px;}
.y29{bottom:188.639992px;}
.ycb{bottom:190.976496px;}
.y101{bottom:193.679970px;}
.yc8{bottom:200.154932px;}
.y8e{bottom:200.335498px;}
.y5c{bottom:203.039977px;}
.y9c{bottom:204.112354px;}
.y28{bottom:206.460022px;}
.y100{bottom:211.320030px;}
.y8d{bottom:218.150857px;}
.yc5{bottom:218.872936px;}
.y5b{bottom:221.039977px;}
.y9f{bottom:221.937178px;}
.yc6{bottom:224.098775px;}
.yc7{bottom:227.875631px;}
.yff{bottom:229.320030px;}
.y27{bottom:235.080025px;}
.y8c{bottom:235.975681px;}
.yc2{bottom:236.517286px;}
.y5a{bottom:238.860008px;}
.yc3{bottom:241.543341px;}
.yfe{bottom:247.139992px;}
.ybe{bottom:251.634176px;}
.yc1{bottom:253.254260px;}
.y8b{bottom:253.976339px;}
.yc0{bottom:256.674809px;}
.y59{bottom:256.679970px;}
.y8a{bottom:257.753195px;}
.yfd{bottom:264.779983px;}
.y88{bottom:271.611132px;}
.y26{bottom:275.580025px;}
.yda{bottom:277.373844px;}
.yfc{bottom:282.779983px;}
.y58{bottom:285.120002px;}
.y87{bottom:289.621347px;}
.ybd{bottom:291.412347px;}
.y25{bottom:293.399986px;}
.ybc{bottom:295.198668px;}
.yfb{bottom:300.600013px;}
.y86{bottom:307.436706px;}
.y9e{bottom:311.213562px;}
.y24{bottom:311.220017px;}
.ybb{bottom:313.014027px;}
.yfa{bottom:318.419975px;}
.y84{bottom:325.252066px;}
.y57{bottom:325.799973px;}
.y23{bottom:329.220017px;}
.yba{bottom:330.834212px;}
.y11e{bottom:335.879998px;}
.yf9{bottom:336.240006px;}
.y82{bottom:343.076889px;}
.y56{bottom:343.440033px;}
.y81{bottom:346.858478px;}
.y22{bottom:346.860008px;}
.yb9{bottom:348.659035px;}
.y11d{bottom:353.700027px;}
.yf8{bottom:354.240006px;}
.y80{bottom:360.896981px;}
.y55{bottom:361.259994px;}
.y21{bottom:364.679970px;}
.yb8{bottom:365.039702px;}
.yb7{bottom:368.460251px;}
.yd9{bottom:368.816558px;}
.yf7{bottom:371.879998px;}
.y7f{bottom:378.897639px;}
.y54{bottom:379.259994px;}
.y20{bottom:382.679970px;}
.yb6{bottom:386.997689px;}
.yf6{bottom:389.700027px;}
.yb5{bottom:390.418238px;}
.yd8{bottom:390.774545px;}
.y11c{bottom:392.759994px;}
.y53{bottom:397.440033px;}
.y1f{bottom:400.320030px;}
.yf5{bottom:407.700027px;}
.yb4{bottom:408.775203px;}
.y11b{bottom:410.580025px;}
.yb3{bottom:412.195752px;}
.yd7{bottom:412.552059px;}
.y52{bottom:416.519989px;}
.y7e{bottom:417.777898px;}
.y1e{bottom:418.320030px;}
.y9d{bottom:421.554754px;}
.yf4{bottom:425.340019px;}
.yb2{bottom:430.552670px;}
.yb1{bottom:433.973219px;}
.yd6{bottom:434.339037px;}
.y51{bottom:434.340019px;}
.y7c{bottom:435.417469px;}
.y7b{bottom:439.194326px;}
.y11a{bottom:449.639992px;}
.yac{bottom:450.719657px;}
.y1d{bottom:451.980011px;}
.y50{bottom:452.159981px;}
.yaf{bottom:452.515436px;}
.yae{bottom:455.935985px;}
.y7a{bottom:457.194937px;}
.yf3{bottom:464.580025px;}
.y119{bottom:467.460022px;}
.y1c{bottom:469.799973px;}
.y4f{bottom:469.980011px;}
.y9b{bottom:471.233440px;}
.yd5{bottom:476.459279px;}
.yf2{bottom:484.019989px;}
.y118{bottom:485.100013px;}
.y1b{bottom:487.620002px;}
.y4e{bottom:487.799973px;}
.yab{bottom:490.497782px;}
.yaa{bottom:494.274638px;}
.yf1{bottom:503.460022px;}
.y1a{bottom:505.440033px;}
.y4d{bottom:505.620002px;}
.ya9{bottom:512.275296px;}
.yf0{bottom:521.100013px;}
.y19{bottom:523.259994px;}
.y4c{bottom:523.620002px;}
.y117{bottom:524.159981px;}
.ya8{bottom:529.914868px;}
.yef{bottom:538.919975px;}
.y18{bottom:541.080025px;}
.y4b{bottom:541.259994px;}
.y116{bottom:541.980011px;}
.ya7{bottom:547.735006px;}
.yee{bottom:556.919975px;}
.y17{bottom:558.899986px;}
.y4a{bottom:559.080025px;}
.ya6{bottom:565.735617px;}
.yed{bottom:574.559967px;}
.y16{bottom:576.899986px;}
.y49{bottom:577.080025px;}
.ya5{bottom:579.598333px;}
.y115{bottom:581.039977px;}
.yec{bottom:592.559967px;}
.y48{bottom:594.720017px;}
.ya4{bottom:597.598990px;}
.y114{bottom:598.860008px;}
.yd4{bottom:601.375846px;}
.yeb{bottom:610.379998px;}
.y47{bottom:612.720017px;}
.ya2{bottom:615.414350px;}
.y15{bottom:615.959988px;}
.y113{bottom:616.680004px;}
.ya0{bottom:619.200717px;}
.ya1{bottom:626.208454px;}
.yea{bottom:628.199993px;}
.y46{bottom:630.540012px;}
.ydb{bottom:633.416649px;}
.y14{bottom:635.399986px;}
.ye9{bottom:646.019989px;}
.y45{bottom:648.360008px;}
.y13{bottom:654.839985px;}
.y112{bottom:655.740006px;}
.ye8{bottom:663.839985px;}
.y44{bottom:666.180004px;}
.y111{bottom:673.379998px;}
.ye7{bottom:681.660015px;}
.y43{bottom:684.000000px;}
.y110{bottom:691.379998px;}
.y12{bottom:695.160015px;}
.ye6{bottom:699.480011px;}
.y42{bottom:701.819995px;}
.y11{bottom:711.360008px;}
.ye5{bottom:717.300007px;}
.y41{bottom:719.639992px;}
.y10{bottom:727.560001px;}
.y10f{bottom:730.259994px;}
.ye4{bottom:735.300007px;}
.y40{bottom:737.639992px;}
.yf{bottom:743.759994px;}
.y10e{bottom:748.079990px;}
.ye3{bottom:752.939999px;}
.y3f{bottom:755.279983px;}
.ye{bottom:759.600013px;}
.y10d{bottom:766.079990px;}
.ye2{bottom:770.939999px;}
.y3e{bottom:773.100013px;}
.yd{bottom:776.339985px;}
.y10c{bottom:783.899986px;}
.ye1{bottom:788.759994px;}
.y3d{bottom:791.100013px;}
.yc{bottom:792.360008px;}
.y79{bottom:794.697688px;}
.y10b{bottom:803.339985px;}
.ye0{bottom:806.399986px;}
.yb{bottom:808.560001px;}
.y3c{bottom:808.740006px;}
.y78{bottom:812.514926px;}
.y10a{bottom:822.779983px;}
.ydf{bottom:824.399986px;}
.y3b{bottom:826.740006px;}
.y9a{bottom:831.059838px;}
.ya{bottom:831.240006px;}
.y76{bottom:839.158709px;}
.y109{bottom:840.600013px;}
.yde{bottom:842.220017px;}
.y77{bottom:843.835625px;}
.y9{bottom:846.000000px;}
.y98{bottom:847.257580px;}
.y75{bottom:855.178167px;}
.y3a{bottom:855.180004px;}
.y8{bottom:856.980011px;}
.y108{bottom:858.420010px;}
.ydd{bottom:860.040012px;}
.y99{bottom:863.277038px;}
.y107{bottom:876.240006px;}
.ydc{bottom:877.860008px;}
.y73{bottom:880.194824px;}
.y74{bottom:884.878604px;}
.y97{bottom:888.300560px;}
.y106{bottom:894.240006px;}
.y39{bottom:895.860008px;}
.y72{bottom:896.399431px;}
.y7{bottom:896.939999px;}
.y96{bottom:913.317238px;}
.y38{bottom:913.500000px;}
.y6f{bottom:921.601258px;}
.y6{bottom:924.120002px;}
.y70{bottom:926.278174px;}
.y94{bottom:929.700129px;}
.y37{bottom:931.319996px;}
.y6e{bottom:937.799000px;}
.y95{bottom:945.897872px;}
.y5{bottom:946.800007px;}
.y36{bottom:949.319996px;}
.y92{bottom:962.821466px;}
.y35{bottom:966.960004px;}
.y6c{bottom:968.035892px;}
.y6b{bottom:971.821308px;}
.y93{bottom:977.035734px;}
.y91{bottom:980.821150px;}
.y34{bottom:984.960004px;}
.y33{bottom:1002.780001px;}
.y6a{bottom:1016.638094px;}
.y4{bottom:1017.900003px;}
.y69{bottom:1020.415902px;}
.y32{bottom:1020.419992px;}
.y68{bottom:1038.240760px;}
.y31{bottom:1038.419992px;}
.y3{bottom:1041.479994px;}
.y67{bottom:1052.280215px;}
.y90{bottom:1056.058022px;}
.y30{bottom:1056.239997px;}
.y2{bottom:1067.219999px;}
.y65{bottom:1070.279910px;}
.y64{bottom:1074.057717px;}
.y2f{bottom:1074.060001px;}
.h25{height:9.359648px;}
.h24{height:10.437481px;}
.h20{height:10.617954px;}
.h15{height:16.019437px;}
.h1a{height:17.634793px;}
.h17{height:17.634840px;}
.h1d{height:17.634886px;}
.h29{height:17.639525px;}
.h18{height:17.639572px;}
.h19{height:17.639618px;}
.h10{height:17.642425px;}
.h11{height:17.642437px;}
.h1b{height:17.644258px;}
.h23{height:17.644304px;}
.h1c{height:17.644350px;}
.hd{height:18.367919px;}
.h6{height:28.196037px;}
.h26{height:28.235288px;}
.h7{height:30.992042px;}
.h1f{height:32.759068px;}
.h12{height:44.786387px;}
.h5{height:46.612894px;}
.h9{height:46.787380px;}
.h13{height:46.878826px;}
.h8{height:47.636068px;}
.ha{height:48.585805px;}
.h2b{height:48.680764px;}
.h3{height:51.860556px;}
.hf{height:51.961939px;}
.h2c{height:52.580574px;}
.h22{height:53.387168px;}
.h21{height:53.425211px;}
.h1{height:56.370088px;}
.he{height:56.480261px;}
.h4{height:56.845534px;}
.hb{height:60.774716px;}
.h2d{height:61.494522px;}
.h2{height:64.619136px;}
.hc{height:69.447841px;}
.h14{height:79.274311px;}
.h16{height:79.301768px;}
.h27{height:87.972719px;}
.h2a{height:88.694983px;}
.h28{height:90.842105px;}
.h1e{height:123.960672px;}
.h0{height:1188.000000px;}
.w26{width:0.711602px;}
.w28{width:0.720837px;}
.w56{width:0.896591px;}
.w32{width:0.902962px;}
.w31{width:2.162556px;}
.w52{width:2.699362px;}
.w47{width:3.057929px;}
.w3d{width:3.246619px;}
.w55{width:3.415689px;}
.w45{width:3.963437px;}
.w44{width:4.134139px;}
.w10{width:4.318445px;}
.w50{width:4.492543px;}
.w35{width:4.499619px;}
.w2c{width:4.681721px;}
.w54{width:4.857841px;}
.w36{width:5.038354px;}
.w33{width:5.218997px;}
.w42{width:5.226439px;}
.w2{width:5.583751px;}
.w1c{width:5.759700px;}
.w53{width:5.939513px;}
.w4f{width:6.475577px;}
.w34{width:7.557542px;}
.w15{width:7.744827px;}
.w43{width:7.744850px;}
.w1e{width:7.750115px;}
.w2a{width:7.921769px;}
.w3{width:8.462218px;}
.w1a{width:8.821987px;}
.w41{width:9.004056px;}
.w4d{width:10.436828px;}
.w3f{width:11.522467px;}
.w38{width:12.061059px;}
.wd{width:13.142248px;}
.w3b{width:13.684334px;}
.w51{width:14.938868px;}
.w4e{width:15.294669px;}
.w1{width:17.815210px;}
.wa{width:18.181859px;}
.w2b{width:19.440196px;}
.w2f{width:22.141487px;}
.w2d{width:23.583183px;}
.w2e{width:26.102371px;}
.w3e{width:26.999853px;}
.w9{width:27.179863px;}
.w17{width:27.723388px;}
.w24{width:27.894793px;}
.w40{width:28.621275px;}
.w1b{width:29.520605px;}
.w48{width:31.679204px;}
.w3c{width:32.940331px;}
.w49{width:34.021264px;}
.w16{width:35.822835px;}
.w14{width:36.721699px;}
.w46{width:39.416485px;}
.w21{width:40.319334px;}
.we{width:44.994390px;}
.w20{width:53.816050px;}
.wc{width:54.185197px;}
.w22{width:56.154885px;}
.w1d{width:59.572363px;}
.w4b{width:61.017452px;}
.w30{width:70.742000px;}
.w4a{width:80.278142px;}
.w29{width:81.365060px;}
.w5{width:86.403751px;}
.w27{width:87.655082px;}
.w4c{width:93.779584px;}
.w25{width:98.096635px;}
.w1f{width:98.457254px;}
.w23{width:98.637471px;}
.w4{width:101.695130px;}
.w3a{width:105.121676px;}
.w19{width:128.518387px;}
.w11{width:134.464721px;}
.wf{width:138.966651px;}
.w8{width:165.241690px;}
.w6{width:171.721763px;}
.wb{width:180.364381px;}
.w18{width:194.044287px;}
.w39{width:217.621193px;}
.w7{width:222.659339px;}
.w13{width:232.384561px;}
.w37{width:306.723049px;}
.w12{width:322.562674px;}
.w0{width:918.000000px;}
.x4a{left:-545.409643px;}
.x47{left:-503.108236px;}
.x40{left:-494.470334px;}
.x41{left:-488.170283px;}
.x82{left:-404.106382px;}
.x87{left:-393.487391px;}
.x4b{left:-376.925089px;}
.x4c{left:-335.883683px;}
.x7f{left:-323.465767px;}
.x25{left:-222.476896px;}
.x36{left:-180.179817px;}
.x24{left:-171.539865px;}
.x27{left:-165.236266px;}
.x3c{left:-134.634583px;}
.x48{left:-128.705059px;}
.x81{left:-105.127317px;}
.x20{left:-86.402087px;}
.x68{left:-81.180678px;}
.x75{left:-70.553301px;}
.x38{left:-53.994034px;}
.x89{left:-39.422744px;}
.x43{left:-36.002329px;}
.x84{left:-33.122705px;}
.x8e{left:-31.680553px;}
.x85{left:-28.625390px;}
.x28{left:-27.179074px;}
.x72{left:-25.919869px;}
.x6f{left:-23.575933px;}
.x73{left:-21.960205px;}
.x69{left:-19.259748px;}
.x2e{left:-18.176621px;}
.x39{left:-13.138195px;}
.x80{left:-12.059289px;}
.x6c{left:-4.680301px;}
.x8c{left:-3.064660px;}
.x0{left:0.000000px;}
.xc{left:138.780001px;}
.x12{left:141.659998px;}
.x1a{left:143.455973px;}
.x63{left:144.541911px;}
.x1b{left:151.376314px;}
.x5{left:154.620002px;}
.x14{left:159.479075px;}
.x15{left:165.062825px;}
.x16{left:173.525043px;}
.x1d{left:181.077645px;}
.x60{left:185.577276px;}
.x5b{left:188.278566px;}
.x18{left:189.720263px;}
.xa{left:195.479994px;}
.x2{left:197.639992px;}
.x55{left:202.862511px;}
.x56{left:214.919672px;}
.x58{left:217.977595px;}
.x4f{left:222.659339px;}
.x54{left:224.821896px;}
.x59{left:228.782780px;}
.x5f{left:232.740382px;}
.x64{left:235.080728px;}
.x5c{left:242.456168px;}
.x51{left:246.781280px;}
.x9{left:257.219999px;}
.x8{left:269.460005px;}
.x17{left:275.038721px;}
.x61{left:278.642865px;}
.x50{left:280.076966px;}
.x5d{left:284.037851px;}
.x5a{left:290.700026px;}
.x3{left:292.860008px;}
.x62{left:299.881389px;}
.x5e{left:302.218476px;}
.x1e{left:307.256829px;}
.x4{left:309.600013px;}
.xb{left:313.920010px;}
.x52{left:330.840035px;}
.x19{left:334.262162px;}
.x57{left:335.339654px;}
.x13{left:338.399987px;}
.x53{left:342.001830px;}
.x1c{left:343.257913px;}
.x11{left:344.339985px;}
.x4e{left:345.420558px;}
.xf{left:348.839985px;}
.x65{left:350.280231px;}
.x10{left:353.879998px;}
.xe{left:356.579990px;}
.x1f{left:361.447459px;}
.x6{left:364.139992px;}
.x74{left:366.481164px;}
.x76{left:369.181621px;}
.x3a{left:370.258758px;}
.x70{left:372.959239px;}
.x6a{left:374.939059px;}
.x7d{left:376.918902px;}
.x2f{left:389.168139px;}
.x29{left:398.158470px;}
.x21{left:406.441848px;}
.xd{left:420.300007px;}
.x2a{left:422.280541px;}
.x2b{left:426.240182px;}
.x6d{left:438.657786px;}
.x1{left:442.439999px;}
.x77{left:445.856475px;}
.x7{left:458.459988px;}
.x33{left:486.190747px;}
.x30{left:487.991453px;}
.x34{left:489.428592px;}
.x31{left:491.404690px;}
.x32{left:494.826490px;}
.x22{left:545.228134px;}
.x23{left:549.546579px;}
.x37{left:555.481058px;}
.x2c{left:578.877770px;}
.x26{left:593.636462px;}
.x78{left:628.378318px;}
.x35{left:632.521902px;}
.x79{left:635.944895px;}
.x7a{left:644.582961px;}
.x2d{left:648.176611px;}
.x7e{left:649.978181px;}
.x6b{left:651.059114px;}
.x7c{left:652.320241px;}
.x71{left:655.378170px;}
.x6e{left:656.999593px;}
.x66{left:668.159820px;}
.x67{left:671.938387px;}
.x7b{left:680.941517px;}
.x3b{left:683.991111px;}
.x88{left:688.327768px;}
.x86{left:690.486294px;}
.x83{left:694.267235px;}
.x45{left:698.228485px;}
.x46{left:700.913250px;}
.x8a{left:708.124523px;}
.x49{left:711.905510px;}
.x3d{left:713.336427px;}
.x8d{left:716.407550px;}
.x3e{left:718.915653px;}
.x44{left:724.330051px;}
.x42{left:737.826767px;}
.x8b{left:765.009958px;}
.x4d{left:771.490307px;}
.x3f{left:778.488015px;}
@media print{
.v3{vertical-align:-22.400024pt;}
.v2{vertical-align:-17.280028pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.300686pt;}
.v1{vertical-align:19.839964pt;}
.v4{vertical-align:24.960024pt;}
.v5{vertical-align:28.159912pt;}
.v6{vertical-align:31.999437pt;}
.v8{vertical-align:34.560148pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.135594pt;}
.ls0{letter-spacing:0.348468pt;}
.ls4{letter-spacing:0.374258pt;}
.ls1{letter-spacing:0.427572pt;}
.ws7{word-spacing:-15.040839pt;}
.ws5{word-spacing:-15.011500pt;}
.ws8{word-spacing:-13.837598pt;}
.ws9{word-spacing:-12.483952pt;}
.ws2{word-spacing:-12.459600pt;}
.ws6{word-spacing:-10.057700pt;}
.wsa{word-spacing:-8.723824pt;}
.ws4{word-spacing:-8.706680pt;}
.ws0{word-spacing:-7.505760pt;}
.ws1{word-spacing:-6.304840pt;}
.ws3{word-spacing:0.000000pt;}
._f{margin-left:-2.333980pt;}
._1{margin-left:-0.990466pt;}
._0{width:1.062528pt;}
._7{width:2.673825pt;}
._5{width:3.768807pt;}
._6{width:4.743893pt;}
._8{width:6.177870pt;}
._9{width:7.233098pt;}
._c{width:8.406507pt;}
._e{width:9.945993pt;}
._14{width:10.860781pt;}
._10{width:11.753455pt;}
._1a{width:12.934047pt;}
._11{width:14.918912pt;}
._a{width:16.215586pt;}
._b{width:17.207613pt;}
._15{width:18.130450pt;}
._d{width:19.640184pt;}
._12{width:20.988215pt;}
._1b{width:22.234146pt;}
._4{width:23.209513pt;}
._2{width:24.140929pt;}
._3{width:25.083514pt;}
._13{width:26.007290pt;}
._35{width:26.902438pt;}
._36{width:28.445939pt;}
._1d{width:46.771052pt;}
._32{width:52.221717pt;}
._17{width:64.815311pt;}
._2e{width:67.358671pt;}
._19{width:69.978366pt;}
._2d{width:71.789461pt;}
._18{width:80.619228pt;}
._30{width:85.297456pt;}
._33{width:89.114134pt;}
._25{width:92.662358pt;}
._2f{width:94.095669pt;}
._34{width:98.523701pt;}
._1c{width:100.511506pt;}
._31{width:107.933268pt;}
._16{width:115.848374pt;}
._1f{width:129.231530pt;}
._2c{width:130.294827pt;}
._22{width:135.169776pt;}
._1e{width:141.422890pt;}
._24{width:147.655830pt;}
._23{width:187.853549pt;}
._20{width:190.177766pt;}
._28{width:220.128516pt;}
._29{width:229.150630pt;}
._26{width:230.091587pt;}
._2a{width:243.541732pt;}
._21{width:271.670100pt;}
._27{width:277.858976pt;}
._2b{width:300.386587pt;}
.fs5{font-size:25.219360pt;}
.fs4{font-size:30.023040pt;}
.fs7{font-size:32.424880pt;}
.fs8{font-size:34.826720pt;}
.fsd{font-size:34.895298pt;}
.fs9{font-size:40.230800pt;}
.fs6{font-size:49.838400pt;}
.fsc{font-size:49.935809pt;}
.fs2{font-size:55.242400pt;}
.fsb{font-size:55.350394pt;}
.fs0{font-size:60.046000pt;}
.fsa{font-size:60.163357pt;}
.fs3{font-size:70.253996pt;}
.fs1{font-size:79.861200pt;}
.ybf{bottom:-3.040488pt;}
.yad{bottom:-2.884232pt;}
.y0{bottom:0.000000pt;}
.yc4{bottom:1.919560pt;}
.y63{bottom:2.887191pt;}
.yb0{bottom:3.040488pt;}
.y71{bottom:3.041738pt;}
.y7d{bottom:3.357205pt;}
.y66{bottom:3.358051pt;}
.y83{bottom:3.361412pt;}
.y6d{bottom:3.364814pt;}
.y85{bottom:3.365618pt;}
.ya3{bottom:3.365660pt;}
.y89{bottom:3.365701pt;}
.y1{bottom:48.960022pt;}
.y62{bottom:63.193465pt;}
.y2e{bottom:66.239990pt;}
.yd3{bottom:93.119663pt;}
.y61{bottom:101.280029pt;}
.y2d{bottom:104.320007pt;}
.y105{bottom:108.640015pt;}
.yd0{bottom:109.272255pt;}
.yd1{bottom:114.077949pt;}
.y60{bottom:117.119995pt;}
.yd2{bottom:117.435154pt;}
.y2c{bottom:120.159973pt;}
.y104{bottom:124.640015pt;}
.ycf{bottom:125.116626pt;}
.y5f{bottom:132.960022pt;}
.y2b{bottom:136.000000pt;}
.ycd{bottom:139.993853pt;}
.y103{bottom:140.320007pt;}
.ycc{bottom:143.034341pt;}
.yce{bottom:143.355265pt;}
.y5e{bottom:148.960022pt;}
.y2a{bottom:152.000000pt;}
.y102{bottom:156.159973pt;}
.yc9{bottom:161.116848pt;}
.y5d{bottom:164.799988pt;}
.y8f{bottom:165.597329pt;}
.yca{bottom:166.395473pt;}
.y29{bottom:167.679993pt;}
.ycb{bottom:169.756885pt;}
.y101{bottom:172.159973pt;}
.yc8{bottom:177.915495pt;}
.y8e{bottom:178.075998pt;}
.y5c{bottom:180.479980pt;}
.y9c{bottom:181.433204pt;}
.y28{bottom:183.520020pt;}
.y100{bottom:187.840027pt;}
.y8d{bottom:193.911873pt;}
.yc5{bottom:194.553721pt;}
.y5b{bottom:196.479980pt;}
.y9f{bottom:197.277491pt;}
.yc6{bottom:199.198911pt;}
.yc7{bottom:202.556116pt;}
.yff{bottom:203.840027pt;}
.y27{bottom:208.960022pt;}
.y8c{bottom:209.756161pt;}
.yc2{bottom:210.237588pt;}
.y5a{bottom:212.320007pt;}
.yc3{bottom:214.705192pt;}
.yfe{bottom:219.679993pt;}
.ybe{bottom:223.674823pt;}
.yc1{bottom:225.114898pt;}
.y8b{bottom:225.756745pt;}
.yc0{bottom:228.155386pt;}
.y59{bottom:228.159973pt;}
.y8a{bottom:229.113951pt;}
.yfd{bottom:235.359985pt;}
.y88{bottom:241.432117pt;}
.y26{bottom:244.960022pt;}
.yda{bottom:246.554528pt;}
.yfc{bottom:251.359985pt;}
.y58{bottom:253.440002pt;}
.y87{bottom:257.441197pt;}
.ybd{bottom:259.033197pt;}
.y25{bottom:260.799988pt;}
.ybc{bottom:262.398816pt;}
.yfb{bottom:267.200012pt;}
.y86{bottom:273.277072pt;}
.y9e{bottom:276.634278pt;}
.y24{bottom:276.640015pt;}
.ybb{bottom:278.234691pt;}
.yfa{bottom:283.039978pt;}
.y84{bottom:289.112947pt;}
.y57{bottom:289.599976pt;}
.y23{bottom:292.640015pt;}
.yba{bottom:294.074855pt;}
.y11e{bottom:298.559998pt;}
.yf9{bottom:298.880005pt;}
.y82{bottom:304.957235pt;}
.y56{bottom:305.280029pt;}
.y81{bottom:308.318647pt;}
.y22{bottom:308.320007pt;}
.yb9{bottom:309.919142pt;}
.y11d{bottom:314.400024pt;}
.yf8{bottom:314.880005pt;}
.y80{bottom:320.797316pt;}
.y55{bottom:321.119995pt;}
.y21{bottom:324.159973pt;}
.yb8{bottom:324.479735pt;}
.yb7{bottom:327.520223pt;}
.yd9{bottom:327.836940pt;}
.yf7{bottom:330.559998pt;}
.y7f{bottom:336.797901pt;}
.y54{bottom:337.119995pt;}
.y20{bottom:340.159973pt;}
.yb6{bottom:343.997945pt;}
.yf6{bottom:346.400024pt;}
.yb5{bottom:347.038433pt;}
.yd8{bottom:347.355151pt;}
.y11c{bottom:349.119995pt;}
.y53{bottom:353.280029pt;}
.y1f{bottom:355.840027pt;}
.yf5{bottom:362.400024pt;}
.yb4{bottom:363.355736pt;}
.y11b{bottom:364.960022pt;}
.yb3{bottom:366.396224pt;}
.yd7{bottom:366.712941pt;}
.y52{bottom:370.239990pt;}
.y7e{bottom:371.358131pt;}
.y1e{bottom:371.840027pt;}
.y9d{bottom:374.715337pt;}
.yf4{bottom:378.080017pt;}
.yb2{bottom:382.713484pt;}
.yb1{bottom:385.753972pt;}
.yd6{bottom:386.079144pt;}
.y51{bottom:386.080017pt;}
.y7c{bottom:387.037751pt;}
.y7b{bottom:390.394956pt;}
.y11a{bottom:399.679993pt;}
.yac{bottom:400.639695pt;}
.y1d{bottom:401.760010pt;}
.y50{bottom:401.919983pt;}
.yaf{bottom:402.235943pt;}
.yae{bottom:405.276431pt;}
.y7a{bottom:406.395499pt;}
.yf3{bottom:412.960022pt;}
.y119{bottom:415.520020pt;}
.y1c{bottom:417.599976pt;}
.y4f{bottom:417.760010pt;}
.y9b{bottom:418.874169pt;}
.yd5{bottom:423.519359pt;}
.yf2{bottom:430.239990pt;}
.y118{bottom:431.200012pt;}
.y1b{bottom:433.440002pt;}
.y4e{bottom:433.599976pt;}
.yab{bottom:435.998028pt;}
.yaa{bottom:439.355234pt;}
.yf1{bottom:447.520020pt;}
.y1a{bottom:449.280029pt;}
.y4d{bottom:449.440002pt;}
.ya9{bottom:455.355818pt;}
.yf0{bottom:463.200012pt;}
.y19{bottom:465.119995pt;}
.y4c{bottom:465.440002pt;}
.y117{bottom:465.919983pt;}
.ya8{bottom:471.035438pt;}
.yef{bottom:479.039978pt;}
.y18{bottom:480.960022pt;}
.y4b{bottom:481.119995pt;}
.y116{bottom:481.760010pt;}
.ya7{bottom:486.875561pt;}
.yee{bottom:495.039978pt;}
.y17{bottom:496.799988pt;}
.y4a{bottom:496.960022pt;}
.ya6{bottom:502.876104pt;}
.yed{bottom:510.719971pt;}
.y16{bottom:512.799988pt;}
.y49{bottom:512.960022pt;}
.ya5{bottom:515.198518pt;}
.y115{bottom:516.479980pt;}
.yec{bottom:526.719971pt;}
.y48{bottom:528.640015pt;}
.ya4{bottom:531.199102pt;}
.y114{bottom:532.320007pt;}
.yd4{bottom:534.556308pt;}
.yeb{bottom:542.559998pt;}
.y47{bottom:544.640015pt;}
.ya2{bottom:547.034977pt;}
.y15{bottom:547.519989pt;}
.y113{bottom:548.160004pt;}
.ya0{bottom:550.400637pt;}
.ya1{bottom:556.629737pt;}
.yea{bottom:558.399994pt;}
.y46{bottom:560.480011pt;}
.ydb{bottom:563.037021pt;}
.y14{bottom:564.799988pt;}
.ye9{bottom:574.239990pt;}
.y45{bottom:576.320007pt;}
.y13{bottom:582.079987pt;}
.y112{bottom:582.880005pt;}
.ye8{bottom:590.079987pt;}
.y44{bottom:592.160004pt;}
.y111{bottom:598.559998pt;}
.ye7{bottom:605.920013pt;}
.y43{bottom:608.000000pt;}
.y110{bottom:614.559998pt;}
.y12{bottom:617.920013pt;}
.ye6{bottom:621.760010pt;}
.y42{bottom:623.839996pt;}
.y11{bottom:632.320007pt;}
.ye5{bottom:637.600006pt;}
.y41{bottom:639.679993pt;}
.y10{bottom:646.720001pt;}
.y10f{bottom:649.119995pt;}
.ye4{bottom:653.600006pt;}
.y40{bottom:655.679993pt;}
.yf{bottom:661.119995pt;}
.y10e{bottom:664.959991pt;}
.ye3{bottom:669.279999pt;}
.y3f{bottom:671.359985pt;}
.ye{bottom:675.200012pt;}
.y10d{bottom:680.959991pt;}
.ye2{bottom:685.279999pt;}
.y3e{bottom:687.200012pt;}
.yd{bottom:690.079987pt;}
.y10c{bottom:696.799988pt;}
.ye1{bottom:701.119995pt;}
.y3d{bottom:703.200012pt;}
.yc{bottom:704.320007pt;}
.y79{bottom:706.397945pt;}
.y10b{bottom:714.079987pt;}
.ye0{bottom:716.799988pt;}
.yb{bottom:718.720001pt;}
.y3c{bottom:718.880005pt;}
.y78{bottom:722.235490pt;}
.y10a{bottom:731.359985pt;}
.ydf{bottom:732.799988pt;}
.y3b{bottom:734.880005pt;}
.y9a{bottom:738.719856pt;}
.ya{bottom:738.880005pt;}
.y76{bottom:745.918853pt;}
.y109{bottom:747.200012pt;}
.yde{bottom:748.640015pt;}
.y77{bottom:750.076111pt;}
.y9{bottom:752.000000pt;}
.y98{bottom:753.117849pt;}
.y75{bottom:760.158371pt;}
.y3a{bottom:760.160004pt;}
.y8{bottom:761.760010pt;}
.y108{bottom:763.040009pt;}
.ydd{bottom:764.480011pt;}
.y99{bottom:767.357367pt;}
.y107{bottom:778.880005pt;}
.ydc{bottom:780.320007pt;}
.y73{bottom:782.395399pt;}
.y74{bottom:786.558759pt;}
.y97{bottom:789.600498pt;}
.y106{bottom:794.880005pt;}
.y39{bottom:796.320007pt;}
.y72{bottom:796.799494pt;}
.y7{bottom:797.279999pt;}
.y96{bottom:811.837545pt;}
.y38{bottom:812.000000pt;}
.y6f{bottom:819.201118pt;}
.y6{bottom:821.440002pt;}
.y70{bottom:823.358377pt;}
.y94{bottom:826.400115pt;}
.y37{bottom:827.839996pt;}
.y6e{bottom:833.599111pt;}
.y95{bottom:840.798108pt;}
.y5{bottom:841.600006pt;}
.y36{bottom:843.839996pt;}
.y92{bottom:855.841303pt;}
.y35{bottom:859.520004pt;}
.y6c{bottom:860.476348pt;}
.y6b{bottom:863.841163pt;}
.y93{bottom:868.476208pt;}
.y91{bottom:871.841022pt;}
.y34{bottom:875.520004pt;}
.y33{bottom:891.360001pt;}
.y6a{bottom:903.678306pt;}
.y4{bottom:904.800003pt;}
.y69{bottom:907.036357pt;}
.y32{bottom:907.039993pt;}
.y68{bottom:922.880676pt;}
.y31{bottom:923.039993pt;}
.y3{bottom:925.759995pt;}
.y67{bottom:935.360191pt;}
.y90{bottom:938.718242pt;}
.y30{bottom:938.879997pt;}
.y2{bottom:948.639999pt;}
.y65{bottom:951.359920pt;}
.y64{bottom:954.717971pt;}
.y2f{bottom:954.720001pt;}
.h25{height:8.319687pt;}
.h24{height:9.277761pt;}
.h20{height:9.438182pt;}
.h15{height:14.239500pt;}
.h1a{height:15.675372pt;}
.h17{height:15.675413pt;}
.h1d{height:15.675454pt;}
.h29{height:15.679578pt;}
.h18{height:15.679619pt;}
.h19{height:15.679661pt;}
.h10{height:15.682156pt;}
.h11{height:15.682166pt;}
.h1b{height:15.683785pt;}
.h23{height:15.683826pt;}
.h1c{height:15.683867pt;}
.hd{height:16.327039pt;}
.h6{height:25.063144pt;}
.h26{height:25.098034pt;}
.h7{height:27.548482pt;}
.h1f{height:29.119172pt;}
.h12{height:39.810122pt;}
.h5{height:41.433684pt;}
.h9{height:41.588782pt;}
.h13{height:41.670068pt;}
.h8{height:42.343172pt;}
.ha{height:43.187382pt;}
.h2b{height:43.271790pt;}
.h3{height:46.098272pt;}
.hf{height:46.188390pt;}
.h2c{height:46.738288pt;}
.h22{height:47.455260pt;}
.h21{height:47.489076pt;}
.h1{height:50.106745pt;}
.he{height:50.204677pt;}
.h4{height:50.529363pt;}
.hb{height:54.021970pt;}
.h2d{height:54.661798pt;}
.h2{height:57.439232pt;}
.hc{height:61.731415pt;}
.h14{height:70.466054pt;}
.h16{height:70.490461pt;}
.h27{height:78.197972pt;}
.h2a{height:78.839985pt;}
.h28{height:80.748538pt;}
.h1e{height:110.187264pt;}
.h0{height:1056.000000pt;}
.w26{width:0.632535pt;}
.w28{width:0.640744pt;}
.w56{width:0.796969pt;}
.w32{width:0.802633pt;}
.w31{width:1.922272pt;}
.w52{width:2.399433pt;}
.w47{width:2.718159pt;}
.w3d{width:2.885883pt;}
.w55{width:3.036168pt;}
.w45{width:3.523055pt;}
.w44{width:3.674791pt;}
.w10{width:3.838618pt;}
.w50{width:3.993371pt;}
.w35{width:3.999661pt;}
.w2c{width:4.161530pt;}
.w54{width:4.318081pt;}
.w36{width:4.478536pt;}
.w33{width:4.639108pt;}
.w42{width:4.645723pt;}
.w2{width:4.963334pt;}
.w1c{width:5.119734pt;}
.w53{width:5.279567pt;}
.w4f{width:5.756068pt;}
.w34{width:6.717815pt;}
.w15{width:6.884291pt;}
.w43{width:6.884311pt;}
.w1e{width:6.888992pt;}
.w2a{width:7.041573pt;}
.w3{width:7.521971pt;}
.w1a{width:7.841766pt;}
.w41{width:8.003605pt;}
.w4d{width:9.277180pt;}
.w3f{width:10.242193pt;}
.w38{width:10.720941pt;}
.wd{width:11.681999pt;}
.w3b{width:12.163852pt;}
.w51{width:13.278993pt;}
.w4e{width:13.595261pt;}
.w1{width:15.835742pt;}
.wa{width:16.161652pt;}
.w2b{width:17.280174pt;}
.w2f{width:19.681321pt;}
.w2d{width:20.962829pt;}
.w2e{width:23.202108pt;}
.w3e{width:23.999869pt;}
.w9{width:24.159879pt;}
.w17{width:24.643012pt;}
.w24{width:24.795372pt;}
.w40{width:25.441134pt;}
.w1b{width:26.240537pt;}
.w48{width:28.159293pt;}
.w3c{width:29.280295pt;}
.w49{width:30.241124pt;}
.w16{width:31.842520pt;}
.w14{width:32.641510pt;}
.w46{width:35.036875pt;}
.w21{width:35.839408pt;}
.we{width:39.995013pt;}
.w20{width:47.836489pt;}
.wc{width:48.164619pt;}
.w22{width:49.915454pt;}
.w1d{width:52.953211pt;}
.w4b{width:54.237735pt;}
.w30{width:62.881778pt;}
.w4a{width:71.358349pt;}
.w29{width:72.324498pt;}
.w5{width:76.803335pt;}
.w27{width:77.915628pt;}
.w4c{width:83.359630pt;}
.w25{width:87.197009pt;}
.w1f{width:87.517559pt;}
.w23{width:87.677752pt;}
.w4{width:90.395671pt;}
.w3a{width:93.441490pt;}
.w19{width:114.238567pt;}
.w11{width:119.524196pt;}
.wf{width:123.525912pt;}
.w8{width:146.881502pt;}
.w6{width:152.641567pt;}
.wb{width:160.323894pt;}
.w18{width:172.483811pt;}
.w39{width:193.441060pt;}
.w7{width:197.919413pt;}
.w13{width:206.564054pt;}
.w37{width:272.642710pt;}
.w12{width:286.722377pt;}
.w0{width:816.000000pt;}
.x4a{left:-484.808572pt;}
.x47{left:-447.207321pt;}
.x40{left:-439.529186pt;}
.x41{left:-433.929140pt;}
.x82{left:-359.205672pt;}
.x87{left:-349.766570pt;}
.x4b{left:-335.044524pt;}
.x4c{left:-298.563274pt;}
.x7f{left:-287.525126pt;}
.x25{left:-197.757241pt;}
.x36{left:-160.159838pt;}
.x24{left:-152.479880pt;}
.x27{left:-146.876681pt;}
.x3c{left:-119.675185pt;}
.x48{left:-114.404497pt;}
.x81{left:-93.446504pt;}
.x20{left:-76.801855pt;}
.x68{left:-72.160603pt;}
.x75{left:-62.714045pt;}
.x38{left:-47.994697pt;}
.x89{left:-35.042439pt;}
.x43{left:-32.002071pt;}
.x84{left:-29.442404pt;}
.x8e{left:-28.160491pt;}
.x85{left:-25.444791pt;}
.x28{left:-24.159177pt;}
.x72{left:-23.039883pt;}
.x6f{left:-20.956385pt;}
.x73{left:-19.520183pt;}
.x69{left:-17.119776pt;}
.x2e{left:-16.156996pt;}
.x39{left:-11.678396pt;}
.x80{left:-10.719368pt;}
.x6c{left:-4.160267pt;}
.x8c{left:-2.724142pt;}
.x0{left:0.000000pt;}
.xc{left:123.360001pt;}
.x12{left:125.919998pt;}
.x1a{left:127.516420pt;}
.x63{left:128.481699pt;}
.x1b{left:134.556723pt;}
.x5{left:137.440002pt;}
.x14{left:141.759177pt;}
.x15{left:146.722511pt;}
.x16{left:154.244483pt;}
.x1d{left:160.957907pt;}
.x60{left:164.957579pt;}
.x5b{left:167.358726pt;}
.x18{left:168.640234pt;}
.xa{left:173.759995pt;}
.x2{left:175.679993pt;}
.x55{left:180.322232pt;}
.x56{left:191.039709pt;}
.x58{left:193.757862pt;}
.x4f{left:197.919413pt;}
.x54{left:199.841685pt;}
.x59{left:203.362471pt;}
.x5f{left:206.880340pt;}
.x64{left:208.960647pt;}
.x5c{left:215.516594pt;}
.x51{left:219.361138pt;}
.x9{left:228.639999pt;}
.x8{left:239.520004pt;}
.x17{left:244.478863pt;}
.x61{left:247.682546pt;}
.x50{left:248.957303pt;}
.x5d{left:252.478089pt;}
.x5a{left:258.400023pt;}
.x3{left:260.320007pt;}
.x62{left:266.561235pt;}
.x5e{left:268.638645pt;}
.x1e{left:273.117181pt;}
.x4{left:275.200012pt;}
.xb{left:279.040009pt;}
.x52{left:294.080031pt;}
.x19{left:297.121922pt;}
.x57{left:298.079693pt;}
.x13{left:300.799988pt;}
.x53{left:304.001626pt;}
.x1c{left:305.118145pt;}
.x11{left:306.079987pt;}
.x4e{left:307.040496pt;}
.xf{left:310.079987pt;}
.x65{left:311.360206pt;}
.x10{left:314.559998pt;}
.xe{left:316.959991pt;}
.x1f{left:321.286630pt;}
.x6{left:323.679993pt;}
.x74{left:325.761035pt;}
.x76{left:328.161441pt;}
.x3a{left:329.118896pt;}
.x70{left:331.519323pt;}
.x6a{left:333.279163pt;}
.x7d{left:335.039024pt;}
.x2f{left:345.927235pt;}
.x29{left:353.918640pt;}
.x21{left:361.281643pt;}
.xd{left:373.600006pt;}
.x2a{left:375.360481pt;}
.x2b{left:378.880161pt;}
.x6d{left:389.918032pt;}
.x1{left:393.279999pt;}
.x77{left:396.316867pt;}
.x7{left:407.519989pt;}
.x33{left:432.169553pt;}
.x30{left:433.770180pt;}
.x34{left:435.047637pt;}
.x31{left:436.804169pt;}
.x32{left:439.845769pt;}
.x22{left:484.647230pt;}
.x23{left:488.485848pt;}
.x37{left:493.760941pt;}
.x2c{left:514.558018pt;}
.x26{left:527.676855pt;}
.x78{left:558.558505pt;}
.x35{left:562.241691pt;}
.x79{left:565.284351pt;}
.x7a{left:572.962632pt;}
.x2d{left:576.156987pt;}
.x7e{left:577.758383pt;}
.x6b{left:578.719213pt;}
.x7c{left:579.840215pt;}
.x71{left:582.558374pt;}
.x6e{left:583.999638pt;}
.x66{left:593.919840pt;}
.x67{left:597.278566pt;}
.x7b{left:605.281348pt;}
.x3b{left:607.992099pt;}
.x88{left:611.846905pt;}
.x86{left:613.765595pt;}
.x83{left:617.126431pt;}
.x45{left:620.647542pt;}
.x46{left:623.034000pt;}
.x8a{left:629.444021pt;}
.x49{left:632.804898pt;}
.x3d{left:634.076824pt;}
.x8d{left:636.806711pt;}
.x3e{left:639.036136pt;}
.x44{left:643.848934pt;}
.x42{left:655.846015pt;}
.x8b{left:680.008852pt;}
.x4d{left:685.769162pt;}
.x3f{left:691.989347pt;}
}




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