
    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_92182813b0fce692de50489d.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0de51a20f1dc7f1c02eefce7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_bdd88fc90d281fdca6865421.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_891fed0ef8a52fa157fbfefd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_c8975d2ac8f7eb63e5bdf504.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_967dc967853b3bf8a589b28a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.283203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_25f5596fbb0046c35c525319.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_20e64724a16283bc966357ae.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.731445;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_108d6181cdd1174fe120302d.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_38787ed33ae37eed1c66cda9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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:ffb;src:url('chunks/assets/font_e832d103b4a7e0f1c2fe99a2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.871094;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:ffc;src:url('chunks/assets/font_70e60879b06b331634e20f20.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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:ffd;src:url('chunks/assets/font_41f285fb3f3510fe027636da.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.750000;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:ffe;src:url('chunks/assets/font_4f5dd2894deded8c99b41e66.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.935547;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:fff;src:url('chunks/assets/font_ef91b827eca536e16e0ddf4e.woff2')format("woff");}.fff{font-family:fff;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;}
@font-face{font-family:ff10;src:url('chunks/assets/font_108d6181cdd1174fe120302d.woff2')format("woff");}.ff10{font-family:ff10;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;}
@font-face{font-family:ff11;src:url('chunks/assets/font_108d6181cdd1174fe120302d.woff2')format("woff");}.ff11{font-family:ff11;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;}
@font-face{font-family:ff12;src:url('chunks/assets/font_c5e435d3ffe68751f420a6bf.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938477;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000012px;}
.ls2{letter-spacing:169.458939px;}
.ls3{letter-spacing:199.330079px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-54.000000px;}
.ws5{word-spacing:-42.046875px;}
.ws3{word-spacing:-16.669921px;}
.ws4{word-spacing:-15.002930px;}
.ws2{word-spacing:-13.564453px;}
.ws0{word-spacing:0.000000px;}
._4{margin-left:-8.934904px;}
._28{margin-left:-7.873418px;}
._2a{margin-left:-6.296971px;}
._3{margin-left:-4.929727px;}
._27{margin-left:-3.882065px;}
._5{margin-left:-2.671872px;}
._2{margin-left:-1.638069px;}
._b{width:4.392952px;}
._f{width:5.479573px;}
._20{width:8.036754px;}
._1{width:9.107027px;}
._26{width:10.874996px;}
._0{width:13.312401px;}
._7{width:14.437985px;}
._a{width:17.464883px;}
._e{width:18.535118px;}
._1f{width:22.499959px;}
._1e{width:27.000007px;}
._21{width:30.421878px;}
._9{width:31.500001px;}
._8{width:36.000001px;}
._22{width:40.500001px;}
._25{width:45.000034px;}
._24{width:49.499986px;}
._23{width:54.000004px;}
._29{width:58.500003px;}
._2c{width:62.999996px;}
._2b{width:67.500005px;}
._6{width:72.000002px;}
._d{width:89.999979px;}
._c{width:94.500003px;}
._1a{width:171.573943px;}
._19{width:850.855148px;}
._17{width:1210.327803px;}
._12{width:1413.297784px;}
._1c{width:1653.170144px;}
._16{width:1678.890302px;}
._15{width:1890.847332px;}
._14{width:1952.045152px;}
._10{width:1957.375926px;}
._18{width:1975.684578px;}
._1d{width:2149.435783px;}
._1b{width:2154.826407px;}
._13{width:2176.107659px;}
._11{width:2432.454063px;}
._2d{width:2515.500023px;}
.fc7{color:rgb(0,112,192);}
.fc6{color:rgb(255,0,0);}
.fc8{color:rgb(17,85,204);}
.fc1{color:rgb(243,149,120);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(38,38,38);}
.fc3{color:rgb(191,191,191);}
.fc2{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:13.500000px;}
.fs5{font-size:43.200000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:59.999999px;}
.fs3{font-size:66.000002px;}
.fs6{font-size:68.999999px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:96.000003px;}
.fs1{font-size:119.999997px;}
.y0{bottom:0.000000px;}
.yf9{bottom:14.162110px;}
.y27{bottom:14.163562px;}
.y1c{bottom:14.163569px;}
.y15{bottom:14.163574px;}
.y3f{bottom:14.163577px;}
.y20{bottom:14.163581px;}
.y4e{bottom:19.622681px;}
.y52{bottom:19.622683px;}
.y45{bottom:20.802979px;}
.y51{bottom:42.908203px;}
.y14{bottom:45.210937px;}
.yf8{bottom:45.210938px;}
.y1f{bottom:45.210941px;}
.y1b{bottom:45.210944px;}
.y1a{bottom:76.258301px;}
.y2{bottom:86.108883px;}
.y16c{bottom:104.951665px;}
.y36{bottom:104.952940px;}
.y11{bottom:104.953030px;}
.y5b{bottom:104.953120px;}
.y10{bottom:130.825840px;}
.y5a{bottom:142.750482px;}
.yc7{bottom:145.877197px;}
.yf6{bottom:145.877928px;}
.y123{bottom:148.576169px;}
.y19a{bottom:153.527334px;}
.y1c8{bottom:153.527340px;}
.y1e6{bottom:153.527343px;}
.y154{bottom:153.527351px;}
.y1da{bottom:158.923824px;}
.y1b6{bottom:169.274414px;}
.y188{bottom:173.622059px;}
.yf5{bottom:176.923824px;}
.y209{bottom:176.923829px;}
.yc6{bottom:176.924564px;}
.yf{bottom:177.011721px;}
.y59{bottom:179.216307px;}
.y16b{bottom:179.321781px;}
.y122{bottom:179.622071px;}
.y199{bottom:184.576164px;}
.y1c7{bottom:184.576171px;}
.y153{bottom:184.576173px;}
.y1e5{bottom:184.576174px;}
.y13d{bottom:184.576188px;}
.y35{bottom:188.350887px;}
.y1d9{bottom:189.972655px;}
.y1b5{bottom:200.320319px;}
.y187{bottom:204.669427px;}
.yc5{bottom:207.971925px;}
.yad{bottom:207.971926px;}
.y208{bottom:207.972649px;}
.yf4{bottom:207.972654px;}
.y16a{bottom:210.369144px;}
.y121{bottom:210.670893px;}
.y198{bottom:215.622060px;}
.y152{bottom:215.622069px;}
.y13c{bottom:215.622070px;}
.y1c6{bottom:215.622093px;}
.y58{bottom:215.682132px;}
.y34{bottom:220.523262px;}
.y1d8{bottom:221.018551px;}
.y1b4{bottom:231.369149px;}
.y186{bottom:235.716794px;}
.yf3{bottom:239.018550px;}
.y207{bottom:239.018553px;}
.yac{bottom:239.019283px;}
.yc4{bottom:239.019288px;}
.ye{bottom:240.757236px;}
.y169{bottom:241.416508px;}
.y120{bottom:241.716789px;}
.ye4{bottom:246.670171px;}
.y13b{bottom:246.670878px;}
.y1c5{bottom:246.670889px;}
.y197{bottom:246.670891px;}
.y151{bottom:246.670899px;}
.y1e4{bottom:246.670900px;}
.y1d7{bottom:252.067379px;}
.y57{bottom:252.147942px;}
.y1b3{bottom:262.415051px;}
.y33{bottom:266.269042px;}
.y185{bottom:266.764155px;}
.yab{bottom:270.066646px;}
.yc3{bottom:270.066651px;}
.yf2{bottom:270.067381px;}
.y206{bottom:270.067384px;}
.y168{bottom:272.463871px;}
.y11f{bottom:272.765619px;}
.y196{bottom:277.716789px;}
.y13a{bottom:277.716794px;}
.y1e3{bottom:277.716796px;}
.ye3{bottom:277.717533px;}
.y1d6{bottom:283.113284px;}
.y56{bottom:288.613767px;}
.y1b2{bottom:293.463873px;}
.yd{bottom:293.880164px;}
.y32{bottom:296.022772px;}
.y184{bottom:297.811518px;}
.y84{bottom:300.618526px;}
.y205{bottom:301.113279px;}
.yf1{bottom:301.113280px;}
.yc2{bottom:301.114014px;}
.yaa{bottom:301.114018px;}
.y9d{bottom:301.114021px;}
.y167{bottom:303.511224px;}
.y11e{bottom:303.811515px;}
.ye2{bottom:308.764889px;}
.y195{bottom:308.765619px;}
.y139{bottom:308.765624px;}
.y150{bottom:308.765626px;}
.y214{bottom:308.765628px;}
.y1e2{bottom:308.765629px;}
.y1d5{bottom:314.162114px;}
.y1b1{bottom:324.509769px;}
.y55{bottom:325.079592px;}
.y31{bottom:325.108332px;}
.y183{bottom:328.858881px;}
.y83{bottom:331.665901px;}
.yc1{bottom:332.161378px;}
.y9c{bottom:332.161381px;}
.yf0{bottom:332.162110px;}
.yc{bottom:334.340339px;}
.y166{bottom:334.558588px;}
.y11d{bottom:334.860346px;}
.y194{bottom:339.811515px;}
.y1e1{bottom:339.811524px;}
.y1c4{bottom:339.811526px;}
.y138{bottom:339.811529px;}
.ye1{bottom:339.812257px;}
.y1d4{bottom:345.208016px;}
.y1b0{bottom:355.558599px;}
.y182{bottom:359.906244px;}
.y54{bottom:361.545402px;}
.y30{bottom:361.574157px;}
.y82{bottom:362.713261px;}
.yef{bottom:363.208002px;}
.y204{bottom:363.208006px;}
.ya9{bottom:363.208738px;}
.y9b{bottom:363.208741px;}
.y165{bottom:365.605951px;}
.y11c{bottom:365.906283px;}
.ye0{bottom:370.859624px;}
.y193{bottom:370.860346px;}
.y1c3{bottom:370.860348px;}
.y137{bottom:370.860349px;}
.y213{bottom:370.860354px;}
.y1e0{bottom:370.860355px;}
.y14f{bottom:370.860359px;}
.yb{bottom:374.800319px;}
.y1d3{bottom:376.256838px;}
.y50{bottom:386.230961px;}
.y1af{bottom:386.604495px;}
.y181{bottom:390.953608px;}
.y81{bottom:393.760621px;}
.yc0{bottom:394.256095px;}
.y9a{bottom:394.256101px;}
.yee{bottom:394.256832px;}
.y203{bottom:394.256853px;}
.y164{bottom:396.653319px;}
.y11b{bottom:396.955079px;}
.y2f{bottom:398.039982px;}
.y1c2{bottom:401.906244px;}
.y192{bottom:401.906250px;}
.y1df{bottom:401.906251px;}
.y136{bottom:401.906253px;}
.y14e{bottom:401.906261px;}
.ydf{bottom:401.906985px;}
.y1d2{bottom:407.302734px;}
.ya{bottom:415.260404px;}
.y1ae{bottom:417.653326px;}
.y53{bottom:419.754642px;}
.y180{bottom:422.000971px;}
.y80{bottom:424.807981px;}
.y202{bottom:425.302735px;}
.yed{bottom:425.302737px;}
.y99{bottom:425.303461px;}
.ybf{bottom:425.303463px;}
.ya8{bottom:425.303469px;}
.y163{bottom:427.700683px;}
.y11a{bottom:428.000984px;}
.yde{bottom:432.954348px;}
.y1c1{bottom:432.955074px;}
.y191{bottom:432.955081px;}
.y14d{bottom:432.955083px;}
.y135{bottom:432.955084px;}
.y2e{bottom:434.505792px;}
.y1d1{bottom:438.351564px;}
.y1ad{bottom:448.699248px;}
.y4d{bottom:451.927002px;}
.y17f{bottom:453.048348px;}
.y9{bottom:455.720579px;}
.ybe{bottom:456.350819px;}
.yec{bottom:456.350829px;}
.ya7{bottom:456.350833px;}
.y98{bottom:456.350836px;}
.y201{bottom:456.351543px;}
.y162{bottom:458.748046px;}
.y119{bottom:459.049814px;}
.y4f{bottom:462.165162px;}
.y1c0{bottom:464.000970px;}
.y134{bottom:464.000979px;}
.ydd{bottom:464.001711px;}
.y1d0{bottom:469.397460px;}
.y2d{bottom:470.971617px;}
.y6a{bottom:473.637822px;}
.y7f{bottom:477.298101px;}
.y1ac{bottom:479.748044px;}
.y17e{bottom:484.095704px;}
.y200{bottom:487.397459px;}
.ybd{bottom:487.398187px;}
.yeb{bottom:487.398193px;}
.y97{bottom:487.398196px;}
.y161{bottom:489.795403px;}
.y118{bottom:490.095716px;}
.y4c{bottom:494.337518px;}
.ydc{bottom:495.049074px;}
.y212{bottom:495.049799px;}
.y1bf{bottom:495.049801px;}
.y14c{bottom:495.049809px;}
.y133{bottom:495.049810px;}
.y2c{bottom:495.657162px;}
.y8{bottom:496.180576px;}
.y1cf{bottom:500.446291px;}
.y4b{bottom:507.162957px;}
.y1ab{bottom:510.793949px;}
.y69{bottom:515.034297px;}
.y17d{bottom:515.143072px;}
.ya6{bottom:518.445553px;}
.ybc{bottom:518.445554px;}
.y96{bottom:518.445556px;}
.y1ff{bottom:518.446289px;}
.y7e{bottom:519.601321px;}
.y160{bottom:520.842766px;}
.y117{bottom:521.144538px;}
.y7{bottom:524.640659px;}
.y1be{bottom:526.095700px;}
.y14b{bottom:526.095705px;}
.y132{bottom:526.095706px;}
.ydb{bottom:526.096438px;}
.y2b{bottom:527.829522px;}
.y1aa{bottom:541.842779px;}
.y17c{bottom:546.190439px;}
.y1fe{bottom:549.492194px;}
.ybb{bottom:549.492915px;}
.y95{bottom:549.492916px;}
.y68{bottom:551.709588px;}
.y15f{bottom:551.890141px;}
.y116{bottom:552.190434px;}
.y1ce{bottom:554.214840px;}
.yda{bottom:557.143801px;}
.y1bd{bottom:557.144508px;}
.y211{bottom:557.144524px;}
.y190{bottom:557.144529px;}
.y14a{bottom:557.144536px;}
.y131{bottom:557.144539px;}
.y2a{bottom:560.001897px;}
.y4a{bottom:560.138306px;}
.y6{bottom:565.100744px;}
.y7d{bottom:572.091066px;}
.y1a9{bottom:572.888681px;}
.y17b{bottom:577.237800px;}
.y94{bottom:580.540276px;}
.yba{bottom:580.540278px;}
.yea{bottom:580.540282px;}
.ya5{bottom:580.540288px;}
.y1fd{bottom:580.541014px;}
.y67{bottom:582.756951px;}
.y15e{bottom:582.937489px;}
.y115{bottom:583.239264px;}
.y149{bottom:588.190424px;}
.y210{bottom:588.190428px;}
.y130{bottom:588.190434px;}
.yd9{bottom:588.191159px;}
.y29{bottom:592.174257px;}
.y5{bottom:594.741121px;}
.y1cd{bottom:595.611325px;}
.y49{bottom:597.371701px;}
.y1a8{bottom:603.937503px;}
.y17a{bottom:608.285163px;}
.y1f5{bottom:611.586916px;}
.y1fc{bottom:611.586918px;}
.yb9{bottom:611.587641px;}
.ye9{bottom:611.587649px;}
.y93{bottom:611.587651px;}
.y66{bottom:613.804314px;}
.y15d{bottom:613.984861px;}
.y114{bottom:614.285160px;}
.y48{bottom:615.380487px;}
.yd8{bottom:619.238520px;}
.y148{bottom:619.239254px;}
.y18f{bottom:619.239256px;}
.y20f{bottom:619.239259px;}
.y12f{bottom:619.239265px;}
.y7c{bottom:623.394286px;}
.y28{bottom:624.346617px;}
.y1a7{bottom:634.983399px;}
.y179{bottom:639.332526px;}
.yb8{bottom:642.635004px;}
.ya4{bottom:642.635008px;}
.ye8{bottom:642.635010px;}
.y92{bottom:642.635011px;}
.y1f4{bottom:642.635734px;}
.y1fb{bottom:642.635749px;}
.y65{bottom:644.851678px;}
.y15c{bottom:645.032224px;}
.y113{bottom:645.333991px;}
.y47{bottom:647.552862px;}
.y1cc{bottom:650.285144px;}
.y20e{bottom:650.285154px;}
.y147{bottom:650.285156px;}
.y18e{bottom:650.285160px;}
.y12e{bottom:650.285161px;}
.yd7{bottom:650.285883px;}
.y7b{bottom:654.364017px;}
.y26{bottom:656.518989px;}
.y4{bottom:659.980867px;}
.y1a6{bottom:666.032229px;}
.y178{bottom:670.379889px;}
.y21d{bottom:673.681636px;}
.y1f3{bottom:673.681638px;}
.y1fa{bottom:673.681644px;}
.yb7{bottom:673.682368px;}
.y91{bottom:673.682371px;}
.ye7{bottom:673.682373px;}
.y64{bottom:675.899041px;}
.y15b{bottom:676.078119px;}
.y112{bottom:676.379889px;}
.y46{bottom:679.725222px;}
.yd6{bottom:681.333246px;}
.y12d{bottom:681.333963px;}
.y1cb{bottom:681.333974px;}
.y146{bottom:681.333978px;}
.y1bc{bottom:681.333979px;}
.y20d{bottom:681.333985px;}
.y18d{bottom:681.333991px;}
.y7a{bottom:686.461677px;}
.y25{bottom:687.566352px;}
.y1a5{bottom:697.078125px;}
.y177{bottom:701.427253px;}
.y90{bottom:704.729731px;}
.ye6{bottom:704.729736px;}
.ya3{bottom:704.729743px;}
.y21c{bottom:704.730466px;}
.y1f2{bottom:704.730469px;}
.y1f9{bottom:704.730475px;}
.y63{bottom:706.946705px;}
.y15a{bottom:707.125483px;}
.y111{bottom:707.428720px;}
.y3{bottom:711.726472px;}
.y44{bottom:711.897577px;}
.y145{bottom:712.379874px;}
.y12c{bottom:712.379879px;}
.y20c{bottom:712.379881px;}
.y1bb{bottom:712.379883px;}
.y18c{bottom:712.379889px;}
.yd5{bottom:712.380609px;}
.y79{bottom:718.559322px;}
.y24{bottom:719.738712px;}
.y1a4{bottom:728.126956px;}
.y176{bottom:732.474616px;}
.y1f1{bottom:735.776364px;}
.y1f8{bottom:735.776371px;}
.yb6{bottom:735.777097px;}
.ye5{bottom:735.777099px;}
.y8f{bottom:735.777106px;}
.y159{bottom:738.172846px;}
.y110{bottom:738.474616px;}
.yd4{bottom:743.427973px;}
.y1ca{bottom:743.428699px;}
.y144{bottom:743.428704px;}
.y12b{bottom:743.428709px;}
.y1ba{bottom:743.428714px;}
.y18b{bottom:743.428720px;}
.y78{bottom:749.385496px;}
.y23{bottom:751.911072px;}
.y1{bottom:757.866120px;}
.y1a3{bottom:759.172859px;}
.y175{bottom:763.521967px;}
.ya2{bottom:766.824463px;}
.yb5{bottom:766.824465px;}
.y8e{bottom:766.824466px;}
.y1f7{bottom:766.825171px;}
.y1f0{bottom:766.825195px;}
.y21b{bottom:766.825201px;}
.y158{bottom:769.220218px;}
.y10f{bottom:769.523439px;}
.y143{bottom:774.474600px;}
.y1c9{bottom:774.474603px;}
.y1b9{bottom:774.474609px;}
.y12a{bottom:774.474614px;}
.y105{bottom:774.474616px;}
.y20b{bottom:774.474636px;}
.yd3{bottom:774.475336px;}
.y77{bottom:774.583741px;}
.y43{bottom:777.698365px;}
.y1a2{bottom:790.221689px;}
.y174{bottom:794.569334px;}
.y1f6{bottom:797.871088px;}
.y1ef{bottom:797.871091px;}
.yb4{bottom:797.871821px;}
.y8d{bottom:797.871826px;}
.y22{bottom:798.247006px;}
.y76{bottom:799.781986px;}
.y157{bottom:800.267581px;}
.y10e{bottom:800.569335px;}
.yd2{bottom:805.522702px;}
.y104{bottom:805.523431px;}
.y20a{bottom:805.523432px;}
.y129{bottom:805.523434px;}
.y1b8{bottom:805.523440px;}
.y42{bottom:813.032593px;}
.y21{bottom:816.255792px;}
.y1a1{bottom:821.267591px;}
.y75{bottom:824.980231px;}
.y173{bottom:825.616695px;}
.ya1{bottom:828.919183px;}
.y8c{bottom:828.919186px;}
.yb3{bottom:828.919189px;}
.y1ee{bottom:828.919918px;}
.y21a{bottom:828.919921px;}
.y10d{bottom:831.618166px;}
.y18a{bottom:836.569329px;}
.y103{bottom:836.569336px;}
.y128{bottom:836.569338px;}
.yd1{bottom:836.570070px;}
.y62{bottom:839.333504px;}
.y1e{bottom:848.428159px;}
.y41{bottom:849.377564px;}
.y74{bottom:850.178461px;}
.y156{bottom:852.316411px;}
.y1a0{bottom:852.316413px;}
.y172{bottom:856.664058px;}
.y1ed{bottom:859.965823px;}
.y219{bottom:859.965826px;}
.y8b{bottom:859.966546px;}
.yb2{bottom:859.966556px;}
.y10c{bottom:862.664058px;}
.yd0{bottom:867.617426px;}
.y1b7{bottom:867.618158px;}
.y189{bottom:867.618160px;}
.y102{bottom:867.618166px;}
.y142{bottom:867.618167px;}
.y127{bottom:867.618169px;}
.y61{bottom:868.973881px;}
.y73{bottom:875.376706px;}
.y19f{bottom:883.362309px;}
.y40{bottom:886.363407px;}
.y171{bottom:887.711421px;}
.yb1{bottom:891.013917px;}
.ya0{bottom:891.013918px;}
.y8a{bottom:891.013921px;}
.y218{bottom:891.014641px;}
.y1ec{bottom:891.014642px;}
.y10b{bottom:893.712889px;}
.y101{bottom:898.664056px;}
.y1de{bottom:898.664062px;}
.y126{bottom:898.664064px;}
.y141{bottom:898.664069px;}
.ycf{bottom:898.664794px;}
.y60{bottom:900.021238px;}
.y72{bottom:901.846437px;}
.y155{bottom:906.084955px;}
.y1d{bottom:910.522887px;}
.y3e{bottom:911.048949px;}
.y19e{bottom:914.411139px;}
.y170{bottom:918.758784px;}
.y1eb{bottom:922.060546px;}
.yb0{bottom:922.061280px;}
.y89{bottom:922.061281px;}
.y10a{bottom:924.758784px;}
.yce{bottom:929.712161px;}
.y140{bottom:929.712891px;}
.y100{bottom:929.712893px;}
.y125{bottom:929.712895px;}
.y5f{bottom:931.068601px;}
.y71{bottom:933.944097px;}
.y3d{bottom:942.096312px;}
.y19{bottom:942.695252px;}
.y19d{bottom:945.457035px;}
.y16f{bottom:949.806148px;}
.y9f{bottom:953.108638px;}
.y88{bottom:953.108641px;}
.yaf{bottom:953.108643px;}
.y217{bottom:953.109376px;}
.y1ea{bottom:953.109377px;}
.y109{bottom:955.807615px;}
.y13f{bottom:960.758787px;}
.y1dd{bottom:960.758788px;}
.y124{bottom:960.758791px;}
.yff{bottom:960.758795px;}
.ycd{bottom:960.759522px;}
.y70{bottom:966.041742px;}
.y5e{bottom:966.837525px;}
.y3c{bottom:974.268672px;}
.y19c{bottom:976.505866px;}
.y16e{bottom:980.853511px;}
.y216{bottom:984.155266px;}
.y1e9{bottom:984.155272px;}
.y87{bottom:984.156001px;}
.yae{bottom:984.156006px;}
.y108{bottom:986.853511px;}
.ycc{bottom:991.806885px;}
.yfe{bottom:991.807617px;}
.y1dc{bottom:991.807619px;}
.y6f{bottom:998.139405px;}
.y18{bottom:1004.789979px;}
.y3b{bottom:1006.441041px;}
.y86{bottom:1015.203368px;}
.y9e{bottom:1015.203370px;}
.y215{bottom:1015.204102px;}
.y1e8{bottom:1015.204103px;}
.yfd{bottom:1022.853513px;}
.y1db{bottom:1022.853515px;}
.ycb{bottom:1022.854248px;}
.y6e{bottom:1030.237062px;}
.y19b{bottom:1030.274413px;}
.y16d{bottom:1032.902343px;}
.y17{bottom:1036.962342px;}
.y3a{bottom:1037.488404px;}
.y107{bottom:1040.622070px;}
.y1e7{bottom:1046.249999px;}
.y85{bottom:1046.250733px;}
.yca{bottom:1053.901611px;}
.yfc{bottom:1053.902343px;}
.y13e{bottom:1053.902344px;}
.y5d{bottom:1068.972291px;}
.y39{bottom:1069.660767px;}
.y6d{bottom:1077.731690px;}
.yfb{bottom:1084.948239px;}
.yc9{bottom:1084.948975px;}
.y38{bottom:1100.708130px;}
.y6c{bottom:1104.740478px;}
.y16{bottom:1104.740661px;}
.y106{bottom:1104.741210px;}
.y5c{bottom:1110.368775px;}
.yc8{bottom:1115.996338px;}
.yfa{bottom:1115.997070px;}
.y6b{bottom:1132.880127px;}
.y13{bottom:1132.880310px;}
.y37{bottom:1132.880493px;}
.yf7{bottom:1132.880859px;}
.y12{bottom:1200.414375px;}
.h2{height:8.997803px;}
.hd{height:31.047363px;}
.h17{height:41.285523px;}
.h11{height:41.572265px;}
.h9{height:42.335156px;}
.h8{height:43.681640px;}
.h16{height:43.872803px;}
.h15{height:44.999999px;}
.hc{height:47.988281px;}
.h5{height:48.082032px;}
.h19{height:48.410156px;}
.h12{height:50.233886px;}
.hb{height:52.417969px;}
.h22{height:52.453125px;}
.h10{height:53.789061px;}
.h1e{height:59.167970px;}
.hf{height:62.094726px;}
.h1c{height:63.984377px;}
.h4{height:64.546875px;}
.h18{height:64.571044px;}
.h1b{height:69.937502px;}
.h6{height:87.363279px;}
.h3{height:87.421873px;}
.he{height:93.142090px;}
.h1a{height:127.199700px;}
.h13{height:127.199895px;}
.h1f{height:127.200435px;}
.h20{height:127.201170px;}
.h21{height:130.119141px;}
.h14{height:130.119507px;}
.ha{height:130.119690px;}
.h1d{height:130.119873px;}
.h7{height:144.895665px;}
.h1{height:505.133880px;}
.h0{height:1263.000000px;}
.w6{width:51.750000px;}
.w9{width:94.500012px;}
.wa{width:96.750012px;}
.we{width:115.875000px;}
.w7{width:115.875023px;}
.w4{width:250.875022px;}
.w2{width:253.125030px;}
.wc{width:263.250030px;}
.wd{width:295.874955px;}
.w8{width:466.874955px;}
.w3{width:479.249910px;}
.w5{width:482.624910px;}
.wb{width:518.624910px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x6{left:7.875000px;}
.x5{left:77.174995px;}
.x2{left:85.049996px;}
.x10{left:112.049996px;}
.x12{left:127.799996px;}
.x9{left:130.049995px;}
.x11{left:139.049996px;}
.xa{left:172.800007px;}
.xe{left:211.049996px;}
.x3{left:247.049996px;}
.xf{left:259.424996px;}
.xb{left:270.675015px;}
.x8{left:329.175015px;}
.x7{left:331.425015px;}
.xc{left:341.550015px;}
.xd{left:638.549970px;}
.x4{left:676.335570px;}
.x1{left:811.799996px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000010pt;}
.ls2{letter-spacing:150.630168pt;}
.ls3{letter-spacing:177.182292pt;}
.ws1{word-spacing:-48.000000pt;}
.ws5{word-spacing:-37.375000pt;}
.ws3{word-spacing:-14.817708pt;}
.ws4{word-spacing:-13.335937pt;}
.ws2{word-spacing:-12.057291pt;}
.ws0{word-spacing:0.000000pt;}
._4{margin-left:-7.942137pt;}
._28{margin-left:-6.998594pt;}
._2a{margin-left:-5.597308pt;}
._3{margin-left:-4.381979pt;}
._27{margin-left:-3.450724pt;}
._5{margin-left:-2.374997pt;}
._2{margin-left:-1.456061pt;}
._b{width:3.904846pt;}
._f{width:4.870731pt;}
._20{width:7.143782pt;}
._1{width:8.095135pt;}
._26{width:9.666663pt;}
._0{width:11.833246pt;}
._7{width:12.833765pt;}
._a{width:15.524340pt;}
._e{width:16.475660pt;}
._1f{width:19.999963pt;}
._1e{width:24.000006pt;}
._21{width:27.041669pt;}
._9{width:28.000001pt;}
._8{width:32.000001pt;}
._22{width:36.000001pt;}
._25{width:40.000030pt;}
._24{width:43.999988pt;}
._23{width:48.000003pt;}
._29{width:52.000002pt;}
._2c{width:55.999996pt;}
._2b{width:60.000004pt;}
._6{width:64.000002pt;}
._d{width:79.999982pt;}
._c{width:84.000003pt;}
._1a{width:152.510171pt;}
._19{width:756.315687pt;}
._17{width:1075.846936pt;}
._12{width:1256.264697pt;}
._1c{width:1469.484573pt;}
._16{width:1492.346935pt;}
._15{width:1680.753184pt;}
._14{width:1735.151246pt;}
._10{width:1739.889712pt;}
._18{width:1756.164070pt;}
._1d{width:1910.609584pt;}
._1b{width:1915.401251pt;}
._13{width:1934.317919pt;}
._11{width:2162.181390pt;}
._2d{width:2236.000020pt;}
.fs0{font-size:12.000000pt;}
.fs5{font-size:38.400000pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.333332pt;}
.fs3{font-size:58.666668pt;}
.fs6{font-size:61.333332pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:85.333336pt;}
.fs1{font-size:106.666664pt;}
.y0{bottom:0.000000pt;}
.yf9{bottom:12.588542pt;}
.y27{bottom:12.589833pt;}
.y1c{bottom:12.589839pt;}
.y15{bottom:12.589843pt;}
.y3f{bottom:12.589846pt;}
.y20{bottom:12.589850pt;}
.y4e{bottom:17.442383pt;}
.y52{bottom:17.442385pt;}
.y45{bottom:18.491537pt;}
.y51{bottom:38.140625pt;}
.y14{bottom:40.187500pt;}
.yf8{bottom:40.187501pt;}
.y1f{bottom:40.187503pt;}
.y1b{bottom:40.187506pt;}
.y1a{bottom:67.785157pt;}
.y2{bottom:76.541230pt;}
.y16c{bottom:93.290369pt;}
.y36{bottom:93.291503pt;}
.y11{bottom:93.291583pt;}
.y5b{bottom:93.291663pt;}
.y10{bottom:116.289636pt;}
.y5a{bottom:126.889318pt;}
.yc7{bottom:129.668619pt;}
.yf6{bottom:129.669269pt;}
.y123{bottom:132.067706pt;}
.y19a{bottom:136.468741pt;}
.y1c8{bottom:136.468746pt;}
.y1e6{bottom:136.468749pt;}
.y154{bottom:136.468756pt;}
.y1da{bottom:141.265621pt;}
.y1b6{bottom:150.466146pt;}
.y188{bottom:154.330719pt;}
.yf5{bottom:157.265621pt;}
.y209{bottom:157.265626pt;}
.yc6{bottom:157.266279pt;}
.yf{bottom:157.343752pt;}
.y59{bottom:159.303384pt;}
.y16b{bottom:159.397139pt;}
.y122{bottom:159.664063pt;}
.y199{bottom:164.067701pt;}
.y1c7{bottom:164.067707pt;}
.y153{bottom:164.067709pt;}
.y1e5{bottom:164.067710pt;}
.y13d{bottom:164.067722pt;}
.y35{bottom:167.423011pt;}
.y1d9{bottom:168.864582pt;}
.y1b5{bottom:178.062506pt;}
.y187{bottom:181.928379pt;}
.yc5{bottom:184.863933pt;}
.yad{bottom:184.863934pt;}
.y208{bottom:184.864577pt;}
.yf4{bottom:184.864581pt;}
.y16a{bottom:186.994795pt;}
.y121{bottom:187.263016pt;}
.y198{bottom:191.664053pt;}
.y152{bottom:191.664061pt;}
.y13c{bottom:191.664062pt;}
.y1c6{bottom:191.664082pt;}
.y58{bottom:191.717451pt;}
.y34{bottom:196.020677pt;}
.y1d8{bottom:196.460934pt;}
.y1b4{bottom:205.661466pt;}
.y186{bottom:209.526039pt;}
.yf3{bottom:212.460933pt;}
.y207{bottom:212.460936pt;}
.yac{bottom:212.461585pt;}
.yc4{bottom:212.461589pt;}
.ye{bottom:214.006432pt;}
.y169{bottom:214.592452pt;}
.y120{bottom:214.859368pt;}
.ye4{bottom:219.262374pt;}
.y13b{bottom:219.263002pt;}
.y1c5{bottom:219.263012pt;}
.y197{bottom:219.263014pt;}
.y151{bottom:219.263021pt;}
.y1e4{bottom:219.263022pt;}
.y1d7{bottom:224.059892pt;}
.y57{bottom:224.131504pt;}
.y1b3{bottom:233.257823pt;}
.y33{bottom:236.683593pt;}
.y185{bottom:237.123693pt;}
.yab{bottom:240.059241pt;}
.yc3{bottom:240.059245pt;}
.yf2{bottom:240.059894pt;}
.y206{bottom:240.059897pt;}
.y168{bottom:242.190108pt;}
.y11f{bottom:242.458328pt;}
.y196{bottom:246.859368pt;}
.y13a{bottom:246.859373pt;}
.y1e3{bottom:246.859374pt;}
.ye3{bottom:246.860029pt;}
.y1d6{bottom:251.656252pt;}
.y56{bottom:256.545571pt;}
.y1b2{bottom:260.856776pt;}
.yd{bottom:261.226812pt;}
.y32{bottom:263.131353pt;}
.y184{bottom:264.721349pt;}
.y84{bottom:267.216468pt;}
.y205{bottom:267.656248pt;}
.yf1{bottom:267.656249pt;}
.yc2{bottom:267.656901pt;}
.yaa{bottom:267.656905pt;}
.y9d{bottom:267.656908pt;}
.y167{bottom:269.787755pt;}
.y11e{bottom:270.054680pt;}
.ye2{bottom:274.457679pt;}
.y195{bottom:274.458328pt;}
.y139{bottom:274.458332pt;}
.y150{bottom:274.458334pt;}
.y214{bottom:274.458336pt;}
.y1e2{bottom:274.458337pt;}
.y1d5{bottom:279.255212pt;}
.y1b1{bottom:288.453128pt;}
.y55{bottom:288.959638pt;}
.y31{bottom:288.985184pt;}
.y183{bottom:292.319005pt;}
.y83{bottom:294.814134pt;}
.yc1{bottom:295.254558pt;}
.y9c{bottom:295.254561pt;}
.yf0{bottom:295.255209pt;}
.yc{bottom:297.191412pt;}
.y166{bottom:297.385411pt;}
.y11d{bottom:297.653641pt;}
.y194{bottom:302.054680pt;}
.y1e1{bottom:302.054688pt;}
.y1c4{bottom:302.054689pt;}
.y138{bottom:302.054692pt;}
.ye1{bottom:302.055339pt;}
.y1d4{bottom:306.851569pt;}
.y1b0{bottom:316.052088pt;}
.y182{bottom:319.916661pt;}
.y54{bottom:321.373691pt;}
.y30{bottom:321.399251pt;}
.y82{bottom:322.411788pt;}
.yef{bottom:322.851557pt;}
.y204{bottom:322.851561pt;}
.ya9{bottom:322.852211pt;}
.y9b{bottom:322.852214pt;}
.y165{bottom:324.983067pt;}
.y11c{bottom:325.250029pt;}
.ye0{bottom:329.652999pt;}
.y193{bottom:329.653641pt;}
.y1c3{bottom:329.653642pt;}
.y137{bottom:329.653643pt;}
.y213{bottom:329.653648pt;}
.y1e0{bottom:329.653649pt;}
.y14f{bottom:329.653652pt;}
.yb{bottom:333.155839pt;}
.y1d3{bottom:334.450522pt;}
.y50{bottom:343.316409pt;}
.y1af{bottom:343.648440pt;}
.y181{bottom:347.514318pt;}
.y81{bottom:350.009441pt;}
.yc0{bottom:350.449863pt;}
.y9a{bottom:350.449867pt;}
.yee{bottom:350.450517pt;}
.y203{bottom:350.450536pt;}
.y164{bottom:352.580728pt;}
.y11b{bottom:352.848959pt;}
.y2f{bottom:353.813318pt;}
.y1c2{bottom:357.249994pt;}
.y192{bottom:357.250000pt;}
.y1df{bottom:357.250001pt;}
.y136{bottom:357.250002pt;}
.y14e{bottom:357.250009pt;}
.ydf{bottom:357.250653pt;}
.y1d2{bottom:362.046874pt;}
.ya{bottom:369.120359pt;}
.y1ae{bottom:371.247401pt;}
.y53{bottom:373.115237pt;}
.y180{bottom:375.111974pt;}
.y80{bottom:377.607094pt;}
.y202{bottom:378.046876pt;}
.yed{bottom:378.046877pt;}
.y99{bottom:378.047521pt;}
.ybf{bottom:378.047523pt;}
.ya8{bottom:378.047528pt;}
.y163{bottom:380.178385pt;}
.y11a{bottom:380.445319pt;}
.yde{bottom:384.848309pt;}
.y1c1{bottom:384.848954pt;}
.y191{bottom:384.848961pt;}
.y14d{bottom:384.848962pt;}
.y135{bottom:384.848964pt;}
.y2e{bottom:386.227371pt;}
.y1d1{bottom:389.645834pt;}
.y1ad{bottom:398.843776pt;}
.y4d{bottom:401.712891pt;}
.y17f{bottom:402.709642pt;}
.y9{bottom:405.084959pt;}
.ybe{bottom:405.645173pt;}
.yec{bottom:405.645181pt;}
.ya7{bottom:405.645185pt;}
.y98{bottom:405.645188pt;}
.y201{bottom:405.645816pt;}
.y162{bottom:407.776041pt;}
.y119{bottom:408.044279pt;}
.y4f{bottom:410.813477pt;}
.y1c0{bottom:412.445306pt;}
.y134{bottom:412.445315pt;}
.ydd{bottom:412.445965pt;}
.y1d0{bottom:417.242186pt;}
.y2d{bottom:418.641438pt;}
.y6a{bottom:421.011397pt;}
.y7f{bottom:424.264979pt;}
.y1ac{bottom:426.442706pt;}
.y17e{bottom:430.307293pt;}
.y200{bottom:433.242186pt;}
.ybd{bottom:433.242833pt;}
.yeb{bottom:433.242838pt;}
.y97{bottom:433.242841pt;}
.y161{bottom:435.373691pt;}
.y118{bottom:435.640636pt;}
.y4c{bottom:439.411127pt;}
.ydc{bottom:440.043621pt;}
.y212{bottom:440.044266pt;}
.y1bf{bottom:440.044267pt;}
.y14c{bottom:440.044275pt;}
.y133{bottom:440.044275pt;}
.y2c{bottom:440.584144pt;}
.y8{bottom:441.049401pt;}
.y1cf{bottom:444.841147pt;}
.y4b{bottom:450.811517pt;}
.y1ab{bottom:454.039066pt;}
.y69{bottom:457.808264pt;}
.y17d{bottom:457.904953pt;}
.ya6{bottom:460.840492pt;}
.ybc{bottom:460.840492pt;}
.y96{bottom:460.840494pt;}
.y1ff{bottom:460.841146pt;}
.y7e{bottom:461.867841pt;}
.y160{bottom:462.971347pt;}
.y117{bottom:463.239589pt;}
.y7{bottom:466.347252pt;}
.y1be{bottom:467.640623pt;}
.y14b{bottom:467.640626pt;}
.y132{bottom:467.640627pt;}
.ydb{bottom:467.641278pt;}
.y2b{bottom:469.181797pt;}
.y1aa{bottom:481.638026pt;}
.y17c{bottom:485.502612pt;}
.y1fe{bottom:488.437506pt;}
.ybb{bottom:488.438147pt;}
.y95{bottom:488.438148pt;}
.y68{bottom:490.408522pt;}
.y15f{bottom:490.569014pt;}
.y116{bottom:490.835941pt;}
.y1ce{bottom:492.635414pt;}
.yda{bottom:495.238934pt;}
.y1bd{bottom:495.239562pt;}
.y211{bottom:495.239577pt;}
.y190{bottom:495.239581pt;}
.y14a{bottom:495.239587pt;}
.y131{bottom:495.239590pt;}
.y2a{bottom:497.779464pt;}
.y4a{bottom:497.900717pt;}
.y6{bottom:502.311772pt;}
.y7d{bottom:508.525392pt;}
.y1a9{bottom:509.234383pt;}
.y17b{bottom:513.100266pt;}
.y94{bottom:516.035801pt;}
.yba{bottom:516.035803pt;}
.yea{bottom:516.035806pt;}
.ya5{bottom:516.035812pt;}
.y1fd{bottom:516.036457pt;}
.y67{bottom:518.006178pt;}
.y15e{bottom:518.166657pt;}
.y115{bottom:518.434901pt;}
.y149{bottom:522.835933pt;}
.y210{bottom:522.835936pt;}
.y130{bottom:522.835941pt;}
.yd9{bottom:522.836586pt;}
.y29{bottom:526.377117pt;}
.y5{bottom:528.658774pt;}
.y1cd{bottom:529.432289pt;}
.y49{bottom:530.997068pt;}
.y1a8{bottom:536.833336pt;}
.y17a{bottom:540.697923pt;}
.y1f5{bottom:543.632814pt;}
.y1fc{bottom:543.632816pt;}
.yb9{bottom:543.633459pt;}
.ye9{bottom:543.633466pt;}
.y93{bottom:543.633468pt;}
.y66{bottom:545.603834pt;}
.y15d{bottom:545.764321pt;}
.y114{bottom:546.031253pt;}
.y48{bottom:547.004877pt;}
.yd8{bottom:550.434240pt;}
.y148{bottom:550.434892pt;}
.y18f{bottom:550.434894pt;}
.y20f{bottom:550.434897pt;}
.y12f{bottom:550.434902pt;}
.y7c{bottom:554.128254pt;}
.y28{bottom:554.974771pt;}
.y1a7{bottom:564.429688pt;}
.y179{bottom:568.295579pt;}
.yb8{bottom:571.231115pt;}
.ya4{bottom:571.231118pt;}
.ye8{bottom:571.231120pt;}
.y92{bottom:571.231121pt;}
.y1f4{bottom:571.231763pt;}
.y1fb{bottom:571.231777pt;}
.y65{bottom:573.201491pt;}
.y15c{bottom:573.361977pt;}
.y113{bottom:573.630214pt;}
.y47{bottom:575.602544pt;}
.y1cc{bottom:578.031239pt;}
.y20e{bottom:578.031248pt;}
.y147{bottom:578.031249pt;}
.y18e{bottom:578.031253pt;}
.y12e{bottom:578.031254pt;}
.yd7{bottom:578.031896pt;}
.y7b{bottom:581.656904pt;}
.y26{bottom:583.572435pt;}
.y4{bottom:586.649659pt;}
.y1a6{bottom:592.028648pt;}
.y178{bottom:595.893235pt;}
.y21d{bottom:598.828121pt;}
.y1f3{bottom:598.828122pt;}
.y1fa{bottom:598.828128pt;}
.yb7{bottom:598.828772pt;}
.y91{bottom:598.828774pt;}
.ye7{bottom:598.828776pt;}
.y64{bottom:600.799147pt;}
.y15b{bottom:600.958328pt;}
.y112{bottom:601.226568pt;}
.y46{bottom:604.200197pt;}
.yd6{bottom:605.629552pt;}
.y12d{bottom:605.630189pt;}
.y1cb{bottom:605.630199pt;}
.y146{bottom:605.630202pt;}
.y1bc{bottom:605.630203pt;}
.y20d{bottom:605.630209pt;}
.y18d{bottom:605.630214pt;}
.y7a{bottom:610.188157pt;}
.y25{bottom:611.170091pt;}
.y1a5{bottom:619.625000pt;}
.y177{bottom:623.490891pt;}
.y90{bottom:626.426428pt;}
.ye6{bottom:626.426432pt;}
.ya3{bottom:626.426438pt;}
.y21c{bottom:626.427081pt;}
.y1f2{bottom:626.427083pt;}
.y1f9{bottom:626.427089pt;}
.y63{bottom:628.397071pt;}
.y15a{bottom:628.555985pt;}
.y111{bottom:628.825529pt;}
.y3{bottom:632.645753pt;}
.y44{bottom:632.797847pt;}
.y145{bottom:633.226555pt;}
.y12c{bottom:633.226559pt;}
.y20c{bottom:633.226561pt;}
.y1bb{bottom:633.226563pt;}
.y18c{bottom:633.226568pt;}
.yd5{bottom:633.227208pt;}
.y79{bottom:638.719397pt;}
.y24{bottom:639.767744pt;}
.y1a4{bottom:647.223961pt;}
.y176{bottom:651.088548pt;}
.y1f1{bottom:654.023435pt;}
.y1f8{bottom:654.023441pt;}
.yb6{bottom:654.024086pt;}
.ye5{bottom:654.024088pt;}
.y8f{bottom:654.024094pt;}
.y159{bottom:656.153641pt;}
.y110{bottom:656.421881pt;}
.yd4{bottom:660.824865pt;}
.y1ca{bottom:660.825510pt;}
.y144{bottom:660.825515pt;}
.y12b{bottom:660.825519pt;}
.y1ba{bottom:660.825524pt;}
.y18b{bottom:660.825529pt;}
.y78{bottom:666.120441pt;}
.y23{bottom:668.365397pt;}
.y1{bottom:673.658773pt;}
.y1a3{bottom:674.820319pt;}
.y175{bottom:678.686192pt;}
.ya2{bottom:681.621745pt;}
.yb5{bottom:681.621746pt;}
.y8e{bottom:681.621747pt;}
.y1f7{bottom:681.622374pt;}
.y1f0{bottom:681.622395pt;}
.y21b{bottom:681.622401pt;}
.y158{bottom:683.751305pt;}
.y10f{bottom:684.020835pt;}
.y143{bottom:688.421866pt;}
.y1c9{bottom:688.421869pt;}
.y1b9{bottom:688.421875pt;}
.y12a{bottom:688.421879pt;}
.y105{bottom:688.421881pt;}
.y20b{bottom:688.421898pt;}
.yd3{bottom:688.422521pt;}
.y77{bottom:688.518881pt;}
.y43{bottom:691.287436pt;}
.y1a2{bottom:702.419279pt;}
.y174{bottom:706.283852pt;}
.y1f6{bottom:709.218744pt;}
.y1ef{bottom:709.218747pt;}
.yb4{bottom:709.219396pt;}
.y8d{bottom:709.219401pt;}
.y22{bottom:709.552894pt;}
.y76{bottom:710.917321pt;}
.y157{bottom:711.348961pt;}
.y10e{bottom:711.617187pt;}
.yd2{bottom:716.020180pt;}
.y104{bottom:716.020827pt;}
.y20a{bottom:716.020828pt;}
.y129{bottom:716.020830pt;}
.y1b8{bottom:716.020836pt;}
.y42{bottom:722.695638pt;}
.y21{bottom:725.560704pt;}
.y1a1{bottom:730.015636pt;}
.y75{bottom:733.315761pt;}
.y173{bottom:733.881507pt;}
.ya1{bottom:736.817052pt;}
.y8c{bottom:736.817054pt;}
.yb3{bottom:736.817057pt;}
.y1ee{bottom:736.817704pt;}
.y21a{bottom:736.817707pt;}
.y10d{bottom:739.216148pt;}
.y18a{bottom:743.617181pt;}
.y103{bottom:743.617188pt;}
.y128{bottom:743.617189pt;}
.yd1{bottom:743.617840pt;}
.y62{bottom:746.074225pt;}
.y1e{bottom:754.158364pt;}
.y41{bottom:755.002279pt;}
.y74{bottom:755.714187pt;}
.y156{bottom:757.614587pt;}
.y1a0{bottom:757.614589pt;}
.y172{bottom:761.479162pt;}
.y1ed{bottom:764.414064pt;}
.y219{bottom:764.414067pt;}
.y8b{bottom:764.414708pt;}
.yb2{bottom:764.414716pt;}
.y10c{bottom:766.812496pt;}
.yd0{bottom:771.215490pt;}
.y1b7{bottom:771.216140pt;}
.y189{bottom:771.216142pt;}
.y102{bottom:771.216147pt;}
.y142{bottom:771.216148pt;}
.y127{bottom:771.216150pt;}
.y61{bottom:772.421227pt;}
.y73{bottom:778.112627pt;}
.y19f{bottom:785.210941pt;}
.y40{bottom:787.878584pt;}
.y171{bottom:789.076818pt;}
.yb1{bottom:792.012370pt;}
.ya0{bottom:792.012371pt;}
.y8a{bottom:792.012374pt;}
.y218{bottom:792.013014pt;}
.y1ec{bottom:792.013015pt;}
.y10b{bottom:794.411457pt;}
.y101{bottom:798.812494pt;}
.y1de{bottom:798.812500pt;}
.y126{bottom:798.812501pt;}
.y141{bottom:798.812506pt;}
.ycf{bottom:798.813150pt;}
.y60{bottom:800.018878pt;}
.y72{bottom:801.641277pt;}
.y155{bottom:805.408849pt;}
.y1d{bottom:809.353677pt;}
.y3e{bottom:809.821288pt;}
.y19e{bottom:812.809901pt;}
.y170{bottom:816.674474pt;}
.y1eb{bottom:819.609374pt;}
.yb0{bottom:819.610027pt;}
.y89{bottom:819.610027pt;}
.y10a{bottom:822.007808pt;}
.yce{bottom:826.410810pt;}
.y140{bottom:826.411458pt;}
.y100{bottom:826.411460pt;}
.y125{bottom:826.411462pt;}
.y5f{bottom:827.616534pt;}
.y71{bottom:830.172531pt;}
.y3d{bottom:837.418944pt;}
.y19{bottom:837.951335pt;}
.y19d{bottom:840.406253pt;}
.y16f{bottom:844.272131pt;}
.y9f{bottom:847.207678pt;}
.y88{bottom:847.207681pt;}
.yaf{bottom:847.207683pt;}
.y217{bottom:847.208334pt;}
.y1ea{bottom:847.208335pt;}
.y109{bottom:849.606769pt;}
.y13f{bottom:854.007811pt;}
.y1dd{bottom:854.007812pt;}
.y124{bottom:854.007814pt;}
.yff{bottom:854.007817pt;}
.ycd{bottom:854.008464pt;}
.y70{bottom:858.703771pt;}
.y5e{bottom:859.411133pt;}
.y3c{bottom:866.016597pt;}
.y19c{bottom:868.005214pt;}
.y16e{bottom:871.869787pt;}
.y216{bottom:874.804681pt;}
.y1e9{bottom:874.804687pt;}
.y87{bottom:874.805334pt;}
.yae{bottom:874.805339pt;}
.y108{bottom:877.203121pt;}
.ycc{bottom:881.606120pt;}
.yfe{bottom:881.606770pt;}
.y1dc{bottom:881.606773pt;}
.y6f{bottom:887.235027pt;}
.y18{bottom:893.146648pt;}
.y3b{bottom:894.614259pt;}
.y86{bottom:902.402994pt;}
.y9e{bottom:902.402995pt;}
.y215{bottom:902.403646pt;}
.y1e8{bottom:902.403648pt;}
.yfd{bottom:909.203122pt;}
.y1db{bottom:909.203125pt;}
.ycb{bottom:909.203776pt;}
.y6e{bottom:915.766277pt;}
.y19b{bottom:915.799478pt;}
.y16d{bottom:918.135416pt;}
.y17{bottom:921.744304pt;}
.y3a{bottom:922.211915pt;}
.y107{bottom:924.997396pt;}
.y1e7{bottom:929.999999pt;}
.y85{bottom:930.000652pt;}
.yca{bottom:936.801432pt;}
.yfc{bottom:936.802082pt;}
.y13e{bottom:936.802083pt;}
.y5d{bottom:950.197592pt;}
.y39{bottom:950.809571pt;}
.y6d{bottom:957.983724pt;}
.yfb{bottom:964.398434pt;}
.yc9{bottom:964.399089pt;}
.y38{bottom:978.407227pt;}
.y6c{bottom:981.991536pt;}
.y16{bottom:981.991699pt;}
.y106{bottom:981.992187pt;}
.y5c{bottom:986.994467pt;}
.yc8{bottom:991.996745pt;}
.yfa{bottom:991.997395pt;}
.y6b{bottom:1007.004557pt;}
.y13{bottom:1007.004720pt;}
.y37{bottom:1007.004883pt;}
.yf7{bottom:1007.005208pt;}
.y12{bottom:1067.035000pt;}
.h2{height:7.998047pt;}
.hd{height:27.597656pt;}
.h17{height:36.698243pt;}
.h11{height:36.953124pt;}
.h9{height:37.631250pt;}
.h8{height:38.828124pt;}
.h16{height:38.998047pt;}
.h15{height:39.999999pt;}
.hc{height:42.656250pt;}
.h5{height:42.739584pt;}
.h19{height:43.031250pt;}
.h12{height:44.652343pt;}
.hb{height:46.593750pt;}
.h22{height:46.625000pt;}
.h10{height:47.812499pt;}
.h1e{height:52.593751pt;}
.hf{height:55.195312pt;}
.h1c{height:56.875002pt;}
.h4{height:57.375000pt;}
.h18{height:57.396484pt;}
.h1b{height:62.166669pt;}
.h6{height:77.656248pt;}
.h3{height:77.708331pt;}
.he{height:82.792969pt;}
.h1a{height:113.066400pt;}
.h13{height:113.066573pt;}
.h1f{height:113.067053pt;}
.h20{height:113.067707pt;}
.h21{height:115.661459pt;}
.h14{height:115.661784pt;}
.ha{height:115.661947pt;}
.h1d{height:115.662109pt;}
.h7{height:128.796147pt;}
.h1{height:449.007893pt;}
.h0{height:1122.666667pt;}
.w6{width:46.000000pt;}
.w9{width:84.000011pt;}
.wa{width:86.000011pt;}
.we{width:103.000000pt;}
.w7{width:103.000020pt;}
.w4{width:223.000020pt;}
.w2{width:225.000027pt;}
.wc{width:234.000027pt;}
.wd{width:262.999960pt;}
.w8{width:414.999960pt;}
.w3{width:425.999920pt;}
.w5{width:428.999920pt;}
.wb{width:460.999920pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x6{left:7.000000pt;}
.x5{left:68.599996pt;}
.x2{left:75.599996pt;}
.x10{left:99.599996pt;}
.x12{left:113.599996pt;}
.x9{left:115.599996pt;}
.x11{left:123.599996pt;}
.xa{left:153.600007pt;}
.xe{left:187.599996pt;}
.x3{left:219.599996pt;}
.xf{left:230.599996pt;}
.xb{left:240.600013pt;}
.x8{left:292.600013pt;}
.x7{left:294.600013pt;}
.xc{left:303.600013pt;}
.xd{left:567.599973pt;}
.x4{left:601.187173pt;}
.x1{left:721.599996pt;}
}




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