
    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_90cfc0993f4da47d2964a002.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_cc272812c8f2c224b78ce125.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_3ee9eeda385f1e348aa3dae6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.932129;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_1b7e140095bd9705008edf0a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_90a9e2dc64e94e008a106427.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.726562;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_e61386ddd7f3d15862875618.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.793457;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_0c5837d10702fd84501462dd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.965820;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_2820bbbbb56b6f8618ae4088.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.939941;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_6b8a6cbf1b82e4a204790411.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973145;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_e72f995648bd7e55d1d297c9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973633;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_0001f66633b74acfb83baf70.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.973145;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_b67fa4126ad4a008a554bd10.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.962402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9d5ede5397239ae445e845da.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.916992;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_feb1665e3cbb76782d0e8694.woff2')format("woff");}.fff{font-family:fff;line-height:0.952148;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_8c1c07d6e10a17d1036bdab5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.722656;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_112821b731fcdcf5156ae977.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;}
.m5{transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);-ms-transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);-webkit-transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);}
.m3{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.879999px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010553px;}
.ls0{letter-spacing:0.021238px;}
.ls2{letter-spacing:0.021282px;}
.lsd{letter-spacing:0.055440px;}
.lsf{letter-spacing:0.072600px;}
.ls3{letter-spacing:0.073080px;}
.lse{letter-spacing:0.109440px;}
.ls13{letter-spacing:0.135781px;}
.ls12{letter-spacing:0.208992px;}
.ls11{letter-spacing:0.254220px;}
.ls10{letter-spacing:0.308220px;}
.ls7{letter-spacing:1.243440px;}
.ls8{letter-spacing:1.269059px;}
.lsb{letter-spacing:7.149597px;}
.lsc{letter-spacing:7.896357px;}
.lsa{letter-spacing:10.031216px;}
.ls9{letter-spacing:15.055734px;}
.ls6{letter-spacing:46.051902px;}
.ls5{letter-spacing:82.072767px;}
.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:-22.407831px;}
.ws4{word-spacing:-18.021275px;}
.ws0{word-spacing:-18.021231px;}
.ws3{word-spacing:-17.999993px;}
.ws5{word-spacing:-15.179034px;}
.ws9{word-spacing:-13.924986px;}
.wsa{word-spacing:-13.851775px;}
.ws8{word-spacing:-13.715995px;}
.ws2{word-spacing:-13.013995px;}
.ws6{word-spacing:-8.675997px;}
.ws7{word-spacing:0.000000px;}
._3{margin-left:-670.683089px;}
._2{margin-left:-607.178273px;}
._b{margin-left:-469.513486px;}
._6{margin-left:-334.821628px;}
._8{margin-left:-87.372063px;}
._9{margin-left:-69.371752px;}
._7{margin-left:-52.559242px;}
._a{margin-left:-34.559225px;}
._1{margin-left:-25.559162px;}
._5{margin-left:-16.559201px;}
._0{margin-left:-1.187579px;}
._4{width:1.472618px;}
._10{width:2.980890px;}
._f{width:4.540563px;}
._e{width:5.929594px;}
._1b{width:7.395386px;}
._21{width:8.755080px;}
._25{width:10.447296px;}
._14{width:11.752874px;}
._27{width:14.115974px;}
._12{width:15.299954px;}
._24{width:17.022763px;}
._20{width:18.975367px;}
._1f{width:20.069876px;}
._2c{width:21.080019px;}
._2e{width:22.208507px;}
._13{width:23.765996px;}
._15{width:25.135067px;}
._2a{width:26.276354px;}
._2d{width:27.311703px;}
._16{width:28.342081px;}
._17{width:29.418089px;}
._1d{width:31.194551px;}
._1c{width:32.517551px;}
._2f{width:33.826844px;}
._36{width:34.936207px;}
._11{width:35.976619px;}
._18{width:37.672392px;}
._19{width:39.065779px;}
._37{width:40.619960px;}
._39{width:41.636383px;}
._3a{width:42.646399px;}
._48{width:44.044439px;}
._31{width:45.171601px;}
._23{width:46.871559px;}
._49{width:48.142165px;}
._30{width:49.169556px;}
._35{width:50.487821px;}
._40{width:51.988583px;}
._28{width:53.048840px;}
._29{width:54.190659px;}
._22{width:57.237902px;}
._d{width:59.240528px;}
._c{width:60.343570px;}
._3b{width:61.702090px;}
._42{width:63.635559px;}
._3e{width:64.848159px;}
._3f{width:65.917209px;}
._4b{width:68.575293px;}
._38{width:70.468516px;}
._34{width:73.983109px;}
._44{width:75.113791px;}
._43{width:76.551052px;}
._32{width:77.919362px;}
._1a{width:82.705731px;}
._4c{width:88.414833px;}
._26{width:91.155470px;}
._1e{width:92.669907px;}
._4d{width:94.159176px;}
._4a{width:97.690761px;}
._41{width:108.714467px;}
._47{width:114.844501px;}
._46{width:115.866287px;}
._45{width:118.319546px;}
._3c{width:119.816889px;}
._3d{width:121.647932px;}
._33{width:131.883914px;}
._2b{width:203.098239px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:9.359996px;}
.fs3{font-size:12.239995px;}
.fsa{font-size:23.759990px;}
.fsb{font-size:35.999986px;}
.fs7{font-size:38.879984px;}
.fs6{font-size:48.239981px;}
.fs9{font-size:53.999978px;}
.fs8{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.fsd{font-size:74.879970px;}
.fs1{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs5{font-size:101.199557px;}
.fs2{font-size:107.999957px;}
.y48{bottom:-15.661023px;}
.y0{bottom:0.000000px;}
.y8{bottom:2.878921px;}
.y13b{bottom:3.059034px;}
.y9e{bottom:3.059059px;}
.ya1{bottom:3.059068px;}
.ya4{bottom:3.059077px;}
.ya7{bottom:3.059087px;}
.yfe{bottom:3.059091px;}
.y100{bottom:3.059098px;}
.y1e{bottom:3.059104px;}
.y103{bottom:3.059112px;}
.y105{bottom:3.059118px;}
.y107{bottom:3.059125px;}
.y13f{bottom:3.059128px;}
.y109{bottom:3.059131px;}
.yad{bottom:3.059134px;}
.y10b{bottom:3.059138px;}
.yaf{bottom:3.059141px;}
.y10d{bottom:3.059145px;}
.yb2{bottom:3.059147px;}
.y28{bottom:3.059148px;}
.yb4{bottom:3.059154px;}
.y145{bottom:3.059156px;}
.yb6{bottom:3.059160px;}
.y148{bottom:3.059165px;}
.yb8{bottom:3.059167px;}
.yba{bottom:3.059174px;}
.ybc{bottom:3.059180px;}
.ybe{bottom:3.059187px;}
.y113{bottom:3.059189px;}
.yc0{bottom:3.059193px;}
.yc2{bottom:3.059200px;}
.y116{bottom:3.059203px;}
.yc4{bottom:3.059207px;}
.y118{bottom:3.059210px;}
.y11a{bottom:3.059217px;}
.y11c{bottom:3.059224px;}
.y11e{bottom:3.059231px;}
.y120{bottom:3.059238px;}
.y122{bottom:3.059245px;}
.y14{bottom:3.239049px;}
.y25{bottom:3.419137px;}
.y43{bottom:3.778940px;}
.ya{bottom:4.138945px;}
.y20{bottom:4.319104px;}
.y4{bottom:4.320028px;}
.y16{bottom:4.859056px;}
.y1a{bottom:4.859074px;}
.y23{bottom:4.859122px;}
.y98{bottom:58.440277px;}
.y6{bottom:58.620277px;}
.y96{bottom:74.820240px;}
.y3{bottom:75.000240px;}
.y97{bottom:78.780268px;}
.y5{bottom:78.960268px;}
.y95{bottom:79.139968px;}
.y2{bottom:79.319968px;}
.y139{bottom:117.299953px;}
.y12e{bottom:117.479953px;}
.y1a9{bottom:120.539952px;}
.yd4{bottom:123.599951px;}
.yfc{bottom:124.319950px;}
.y15d{bottom:128.099949px;}
.y40{bottom:128.819948px;}
.y182{bottom:130.439948px;}
.y75{bottom:130.619948px;}
.y93{bottom:133.139947px;}
.y12d{bottom:140.339944px;}
.y1a8{bottom:144.119942px;}
.yd3{bottom:146.639941px;}
.yfb{bottom:147.359941px;}
.y15c{bottom:151.139940px;}
.y3f{bottom:151.679939px;}
.y181{bottom:153.299939px;}
.y74{bottom:153.479939px;}
.y92{bottom:156.179938px;}
.y12c{bottom:163.379935px;}
.y1a7{bottom:167.879933px;}
.yd2{bottom:169.679932px;}
.yfa{bottom:170.399932px;}
.y15b{bottom:174.179930px;}
.y3e{bottom:174.719930px;}
.y180{bottom:176.339929px;}
.y73{bottom:176.519929px;}
.y91{bottom:179.219928px;}
.y12b{bottom:186.419925px;}
.y1a6{bottom:191.819923px;}
.yd1{bottom:192.539923px;}
.yf9{bottom:193.259923px;}
.y15a{bottom:197.039921px;}
.y3d{bottom:197.759921px;}
.y17f{bottom:199.379920px;}
.y72{bottom:199.559920px;}
.y1d1{bottom:200.999920px;}
.y90{bottom:202.079919px;}
.y12a{bottom:209.459916px;}
.yd0{bottom:215.579914px;}
.yf8{bottom:216.299913px;}
.y159{bottom:220.079912px;}
.y3c{bottom:220.799912px;}
.y17e{bottom:222.419911px;}
.y71{bottom:222.599911px;}
.y1d0{bottom:223.859910px;}
.y8f{bottom:225.119910px;}
.y138{bottom:232.319907px;}
.y129{bottom:232.499907px;}
.ycf{bottom:238.619905px;}
.yf7{bottom:239.339904px;}
.y158{bottom:243.119903px;}
.y3b{bottom:243.839902px;}
.y17d{bottom:245.459902px;}
.y70{bottom:245.639902px;}
.y1cf{bottom:246.899901px;}
.y8e{bottom:248.159901px;}
.y137{bottom:255.359898px;}
.y128{bottom:255.539898px;}
.yce{bottom:261.659895px;}
.yf6{bottom:262.379895px;}
.y1a5{bottom:263.099895px;}
.y157{bottom:266.159894px;}
.y3a{bottom:266.699893px;}
.y17c{bottom:268.499893px;}
.y6f{bottom:268.679893px;}
.y1ce{bottom:270.479892px;}
.y8d{bottom:271.199892px;}
.y127{bottom:278.399889px;}
.ycd{bottom:284.699886px;}
.yf5{bottom:285.419886px;}
.y1a4{bottom:286.859885px;}
.y156{bottom:289.199884px;}
.y39{bottom:289.739884px;}
.y17b{bottom:291.359883px;}
.y6e{bottom:291.539883px;}
.y1cd{bottom:294.059882px;}
.y8c{bottom:294.239882px;}
.y126{bottom:301.439879px;}
.ycc{bottom:307.739877px;}
.yf4{bottom:308.459877px;}
.y1a3{bottom:310.619876px;}
.y155{bottom:312.239875px;}
.y38{bottom:312.779875px;}
.y17a{bottom:314.399874px;}
.y6d{bottom:314.579874px;}
.y8b{bottom:317.099873px;}
.y1cc{bottom:317.639873px;}
.y125{bottom:324.479870px;}
.yf3{bottom:330.059868px;}
.ycb{bottom:330.599868px;}
.y1a2{bottom:334.379866px;}
.y154{bottom:335.099866px;}
.y37{bottom:335.819866px;}
.y76{bottom:336.899865px;}
.y179{bottom:337.439865px;}
.y6c{bottom:337.619865px;}
.y8a{bottom:340.139864px;}
.y1cb{bottom:341.399863px;}
.y124{bottom:347.519861px;}
.y36{bottom:352.019859px;}
.yca{bottom:353.639859px;}
.y35{bottom:355.799858px;}
.y153{bottom:358.139857px;}
.y178{bottom:360.479856px;}
.y6b{bottom:360.659856px;}
.y89{bottom:363.179855px;}
.y1ca{bottom:364.979854px;}
.y136{bottom:369.119852px;}
.y123{bottom:370.559852px;}
.yf2{bottom:375.239850px;}
.y34{bottom:375.599850px;}
.y33{bottom:376.319849px;}
.yc9{bottom:376.679849px;}
.y152{bottom:381.179848px;}
.y1a1{bottom:381.899847px;}
.y177{bottom:383.519847px;}
.y6a{bottom:383.699847px;}
.y121{bottom:385.680600px;}
.y88{bottom:386.219846px;}
.y1c9{bottom:388.739845px;}
.y135{bottom:390.899844px;}
.yf1{bottom:398.639841px;}
.y32{bottom:399.179840px;}
.yc8{bottom:399.719840px;}
.y11f{bottom:402.780600px;}
.y151{bottom:404.219838px;}
.y1a0{bottom:405.659838px;}
.y176{bottom:406.559837px;}
.y69{bottom:406.739837px;}
.y87{bottom:409.259836px;}
.y1c8{bottom:412.319835px;}
.y134{bottom:413.939834px;}
.y11d{bottom:420.060600px;}
.yf0{bottom:422.039831px;}
.y31{bottom:422.219831px;}
.yc7{bottom:422.759831px;}
.y150{bottom:427.259829px;}
.y175{bottom:429.419828px;}
.y68{bottom:429.599828px;}
.y86{bottom:432.299827px;}
.y1c7{bottom:435.899826px;}
.y133{bottom:436.979825px;}
.y11b{bottom:437.340600px;}
.y30{bottom:445.259822px;}
.yc6{bottom:445.799822px;}
.y14f{bottom:450.299820px;}
.y174{bottom:452.459819px;}
.y67{bottom:452.639819px;}
.y19f{bottom:453.359819px;}
.y119{bottom:454.620600px;}
.y85{bottom:455.159818px;}
.y1c6{bottom:458.399817px;}
.y132{bottom:460.019816px;}
.yc5{bottom:467.399813px;}
.y2f{bottom:468.299813px;}
.yef{bottom:468.659813px;}
.y117{bottom:471.720600px;}
.y14e{bottom:473.159811px;}
.y173{bottom:475.499810px;}
.y66{bottom:475.679810px;}
.y19e{bottom:477.119809px;}
.y84{bottom:478.199809px;}
.y1c5{bottom:480.539808px;}
.yc3{bottom:480.540600px;}
.y131{bottom:482.879807px;}
.y115{bottom:489.000600px;}
.y2e{bottom:491.339803px;}
.yee{bottom:491.879803px;}
.y14d{bottom:496.199802px;}
.yc1{bottom:496.920600px;}
.y172{bottom:498.539801px;}
.y65{bottom:498.719801px;}
.y19d{bottom:500.879800px;}
.y83{bottom:501.239800px;}
.y1c4{bottom:504.299798px;}
.y130{bottom:505.919798px;}
.y114{bottom:510.419796px;}
.ybf{bottom:513.480600px;}
.y2d{bottom:514.379794px;}
.yed{bottom:515.279794px;}
.y14c{bottom:519.239792px;}
.y171{bottom:521.579791px;}
.y64{bottom:521.759791px;}
.y112{bottom:523.560600px;}
.y82{bottom:524.279790px;}
.y19c{bottom:524.639790px;}
.y1c3{bottom:527.879789px;}
.y12f{bottom:528.959788px;}
.ybd{bottom:529.860600px;}
.y2c{bottom:537.239785px;}
.yec{bottom:538.679785px;}
.y14b{bottom:542.279783px;}
.y170{bottom:544.619782px;}
.y63{bottom:544.799782px;}
.ybb{bottom:546.420600px;}
.y81{bottom:547.319781px;}
.y19b{bottom:548.399781px;}
.y1c2{bottom:551.639779px;}
.y111{bottom:551.999779px;}
.y2b{bottom:560.279776px;}
.yeb{bottom:561.899775px;}
.y14a{bottom:562.260600px;}
.yb9{bottom:562.800600px;}
.y149{bottom:565.319774px;}
.y16f{bottom:567.479773px;}
.y62{bottom:567.659773px;}
.y80{bottom:570.359772px;}
.y19a{bottom:572.159771px;}
.y110{bottom:575.039770px;}
.y1c1{bottom:575.219770px;}
.yb7{bottom:579.360600px;}
.y2a{bottom:583.319767px;}
.yea{bottom:585.299766px;}
.y147{bottom:585.300600px;}
.y146{bottom:588.359765px;}
.y16e{bottom:590.519764px;}
.y61{bottom:590.699764px;}
.y7f{bottom:593.219763px;}
.yb5{bottom:595.740600px;}
.y199{bottom:595.919762px;}
.y10f{bottom:598.079761px;}
.y1c0{bottom:598.799760px;}
.y29{bottom:606.359757px;}
.y144{bottom:608.160600px;}
.ye9{bottom:608.519757px;}
.y143{bottom:611.219756px;}
.yb3{bottom:612.300600px;}
.y16d{bottom:613.559755px;}
.y60{bottom:613.739755px;}
.y7e{bottom:616.259753px;}
.y198{bottom:619.679752px;}
.y10e{bottom:620.939752px;}
.y1bf{bottom:622.559751px;}
.y27{bottom:626.340600px;}
.yb1{bottom:629.760600px;}
.ye8{bottom:631.919747px;}
.yb0{bottom:632.819747px;}
.y142{bottom:634.259746px;}
.y10c{bottom:635.340600px;}
.y16c{bottom:636.599745px;}
.y5f{bottom:636.779745px;}
.y7d{bottom:639.299744px;}
.y197{bottom:643.439743px;}
.yae{bottom:645.240600px;}
.y1be{bottom:646.139742px;}
.y10a{bottom:651.900600px;}
.y141{bottom:654.240600px;}
.y24{bottom:654.420600px;}
.ye7{bottom:655.319738px;}
.y140{bottom:657.299737px;}
.y26{bottom:657.839737px;}
.y16b{bottom:659.639736px;}
.y5e{bottom:659.819736px;}
.y7c{bottom:662.339735px;}
.yac{bottom:662.700600px;}
.y196{bottom:667.199733px;}
.y108{bottom:668.280600px;}
.y1bd{bottom:669.719732px;}
.y13e{bottom:677.280600px;}
.ye6{bottom:678.539729px;}
.y16a{bottom:682.499727px;}
.y5d{bottom:682.679727px;}
.y106{bottom:684.660600px;}
.y7b{bottom:685.379726px;}
.y22{bottom:690.600600px;}
.y195{bottom:690.959724px;}
.yab{bottom:691.319723px;}
.y1bc{bottom:693.479723px;}
.y21{bottom:695.459722px;}
.y104{bottom:701.220600px;}
.ye5{bottom:701.939719px;}
.y169{bottom:705.539718px;}
.y5c{bottom:705.719718px;}
.y7a{bottom:708.419717px;}
.yaa{bottom:714.179714px;}
.y194{bottom:714.719714px;}
.y1bb{bottom:717.059713px;}
.y102{bottom:717.600600px;}
.ye4{bottom:725.159710px;}
.y168{bottom:728.579709px;}
.y5b{bottom:728.759708px;}
.y79{bottom:731.279707px;}
.y101{bottom:734.160600px;}
.y1f{bottom:735.060600px;}
.y1d{bottom:736.320600px;}
.ya9{bottom:737.219705px;}
.y193{bottom:738.659705px;}
.y1ba{bottom:740.819704px;}
.ye3{bottom:748.559701px;}
.y167{bottom:751.619699px;}
.y5a{bottom:751.799699px;}
.yff{bottom:751.800600px;}
.y78{bottom:754.319698px;}
.y1c{bottom:755.579698px;}
.ya8{bottom:760.259696px;}
.y192{bottom:762.419695px;}
.y1b9{bottom:764.399694px;}
.yfd{bottom:769.260600px;}
.ye2{bottom:771.959691px;}
.y166{bottom:774.659690px;}
.y59{bottom:774.839690px;}
.y77{bottom:776.099690px;}
.ya6{bottom:780.240600px;}
.ya5{bottom:783.299687px;}
.y1b{bottom:783.659687px;}
.y191{bottom:786.179686px;}
.y1b8{bottom:787.979685px;}
.ye1{bottom:795.179682px;}
.y165{bottom:797.699681px;}
.y58{bottom:797.879681px;}
.ya3{bottom:803.280600px;}
.ya2{bottom:806.339677px;}
.y19{bottom:809.400600px;}
.y190{bottom:809.939676px;}
.y1b7{bottom:811.739675px;}
.ye0{bottom:818.579673px;}
.y164{bottom:820.559672px;}
.y57{bottom:820.739672px;}
.ya0{bottom:826.320600px;}
.y9f{bottom:829.379668px;}
.y18{bottom:832.079667px;}
.y18f{bottom:833.699667px;}
.y1b6{bottom:835.319666px;}
.ydf{bottom:841.799663px;}
.y163{bottom:843.599663px;}
.y56{bottom:843.779662px;}
.y9d{bottom:849.180600px;}
.y15{bottom:854.760600px;}
.y18e{bottom:857.459657px;}
.y1b5{bottom:858.899656px;}
.y17{bottom:864.839654px;}
.yde{bottom:865.199654px;}
.y162{bottom:866.639653px;}
.y55{bottom:866.819653px;}
.y13d{bottom:868.439653px;}
.y13{bottom:874.920600px;}
.y18d{bottom:881.219648px;}
.y1b4{bottom:882.659647px;}
.ydd{bottom:888.599645px;}
.y161{bottom:889.679644px;}
.y54{bottom:889.859644px;}
.y13c{bottom:891.479643px;}
.y18c{bottom:904.979638px;}
.y1b3{bottom:906.239638px;}
.y12{bottom:908.579637px;}
.y13a{bottom:911.460600px;}
.ydc{bottom:911.819635px;}
.y160{bottom:912.719635px;}
.y53{bottom:912.899635px;}
.y18b{bottom:928.739629px;}
.y1b2{bottom:929.999628px;}
.ydb{bottom:935.219626px;}
.y15f{bottom:935.759626px;}
.y52{bottom:935.939626px;}
.y11{bottom:949.259620px;}
.y18a{bottom:952.499619px;}
.y1b1{bottom:953.579619px;}
.yda{bottom:958.439617px;}
.y15e{bottom:958.619617px;}
.y51{bottom:958.799616px;}
.y189{bottom:976.259609px;}
.y1b0{bottom:977.159609px;}
.yd9{bottom:981.659607px;}
.y50{bottom:981.839607px;}
.y10{bottom:990.119604px;}
.y188{bottom:1000.019600px;}
.y1af{bottom:1000.919600px;}
.yd8{bottom:1004.699598px;}
.y4f{bottom:1004.879598px;}
.yf{bottom:1013.519595px;}
.y187{bottom:1023.959590px;}
.y1ae{bottom:1024.499590px;}
.yd7{bottom:1027.739589px;}
.y4e{bottom:1027.919589px;}
.ye{bottom:1029.899588px;}
.yd{bottom:1030.259588px;}
.y186{bottom:1047.719581px;}
.y1ad{bottom:1048.079581px;}
.yd6{bottom:1050.779580px;}
.y4d{bottom:1050.959580px;}
.y185{bottom:1071.479571px;}
.y1ac{bottom:1071.839571px;}
.y47{bottom:1073.280600px;}
.yd5{bottom:1073.819570px;}
.y4c{bottom:1073.999570px;}
.y46{bottom:1082.279567px;}
.y184{bottom:1095.239562px;}
.y1ab{bottom:1095.419562px;}
.y9c{bottom:1096.679561px;}
.y4b{bottom:1096.859561px;}
.y45{bottom:1103.519559px;}
.y183{bottom:1118.999552px;}
.y1aa{bottom:1119.179552px;}
.y9b{bottom:1119.719552px;}
.y4a{bottom:1119.899552px;}
.y44{bottom:1124.939550px;}
.yc{bottom:1127.099549px;}
.yb{bottom:1127.459549px;}
.y9{bottom:1134.300600px;}
.y9a{bottom:1142.759543px;}
.y49{bottom:1142.939543px;}
.y42{bottom:1145.280600px;}
.y41{bottom:1149.059540px;}
.y94{bottom:1192.619523px;}
.y1{bottom:1192.799523px;}
.y99{bottom:1195.680600px;}
.y7{bottom:1195.860600px;}
.h26{height:2.880000px;}
.hb{height:8.169958px;}
.he{height:13.500000px;}
.h17{height:15.120000px;}
.h2a{height:15.300000px;}
.h29{height:15.480000px;}
.h20{height:15.859330px;}
.h19{height:16.380000px;}
.h1e{height:17.100000px;}
.h10{height:20.160000px;}
.h14{height:20.340000px;}
.h2{height:20.520000px;}
.h7{height:20.700000px;}
.h4{height:20.880000px;}
.h25{height:21.780000px;}
.h22{height:25.913662px;}
.h12{height:25.951630px;}
.h21{height:27.246083px;}
.hf{height:32.199245px;}
.h1d{height:33.588971px;}
.h28{height:36.486196px;}
.h2b{height:36.509751px;}
.h13{height:36.886626px;}
.h16{height:40.005336px;}
.h18{height:40.842757px;}
.h1a{height:40.869124px;}
.h1c{height:41.290999px;}
.h23{height:43.185920px;}
.h1f{height:45.199318px;}
.h8{height:47.988262px;}
.h11{height:48.058575px;}
.h15{height:48.199199px;}
.h27{height:49.907793px;}
.h1b{height:50.132792px;}
.ha{height:54.457009px;}
.h24{height:55.054665px;}
.h5{height:56.228532px;}
.hc{height:63.917904px;}
.hd{height:67.548728px;}
.h1{height:70.664034px;}
.h3{height:72.562471px;}
.h9{height:78.468719px;}
.h6{height:84.898091px;}
.h0{height:1263.000000px;}
.w1b{width:3.240000px;}
.w28{width:3.420000px;}
.w5b{width:3.600000px;}
.w12{width:4.140000px;}
.we{width:4.500000px;}
.w4d{width:5.040000px;}
.w15{width:5.220000px;}
.w5f{width:5.760000px;}
.w25{width:5.940000px;}
.w1{width:6.480000px;}
.w1d{width:6.840000px;}
.w6a{width:7.200000px;}
.w35{width:7.380000px;}
.w33{width:7.560000px;}
.w11{width:7.740000px;}
.w7{width:8.280000px;}
.w22{width:9.540000px;}
.w19{width:9.900000px;}
.w74{width:10.260000px;}
.w18{width:10.620000px;}
.w5{width:11.160000px;}
.w6{width:11.340000px;}
.w59{width:11.520000px;}
.w3d{width:12.600000px;}
.wc{width:12.960000px;}
.w30{width:13.320000px;}
.w2d{width:13.500000px;}
.w2f{width:14.400000px;}
.w2a{width:14.580000px;}
.w40{width:14.940000px;}
.w3c{width:15.120000px;}
.w2c{width:15.480000px;}
.w32{width:15.660000px;}
.w39{width:15.840000px;}
.w3{width:16.020000px;}
.w29{width:20.700000px;}
.w3a{width:20.880000px;}
.w42{width:22.140000px;}
.w6f{width:22.320000px;}
.w69{width:24.300000px;}
.w6b{width:24.840000px;}
.w68{width:25.740000px;}
.w64{width:25.920000px;}
.w60{width:26.100000px;}
.w61{width:26.280000px;}
.w66{width:26.460000px;}
.w63{width:26.640000px;}
.w67{width:27.000000px;}
.w62{width:27.180000px;}
.w65{width:27.360000px;}
.w6d{width:27.720000px;}
.w6c{width:28.260000px;}
.w4{width:33.480000px;}
.w3e{width:34.020000px;}
.w5d{width:37.800000px;}
.w24{width:39.420000px;}
.w76{width:39.960000px;}
.w38{width:40.500000px;}
.w1a{width:40.680000px;}
.w3b{width:42.120000px;}
.w70{width:43.380000px;}
.w52{width:44.820000px;}
.w55{width:45.540000px;}
.w4f{width:45.720000px;}
.w50{width:45.900000px;}
.w56{width:46.620000px;}
.w4c{width:47.340000px;}
.w44{width:47.880000px;}
.w5e{width:48.420000px;}
.w41{width:48.600000px;}
.w43{width:49.320000px;}
.w73{width:49.500000px;}
.w53{width:50.400000px;}
.w3f{width:50.580000px;}
.w20{width:50.760000px;}
.w14{width:52.380000px;}
.w21{width:52.560000px;}
.w47{width:57.420000px;}
.w45{width:62.460000px;}
.w13{width:65.700000px;}
.w49{width:67.500000px;}
.w26{width:68.580000px;}
.w48{width:69.660000px;}
.w5c{width:70.560000px;}
.w4b{width:72.180000px;}
.w23{width:72.900000px;}
.w6e{width:74.700000px;}
.wd{width:77.940000px;}
.w4a{width:80.460000px;}
.w9{width:81.180000px;}
.w5a{width:85.500000px;}
.w1f{width:93.420000px;}
.w27{width:94.860000px;}
.w10{width:98.640000px;}
.w46{width:106.020000px;}
.w37{width:107.280000px;}
.w71{width:115.200000px;}
.w2{width:119.700000px;}
.w58{width:124.200000px;}
.w36{width:127.440000px;}
.w8{width:127.980000px;}
.w51{width:129.780000px;}
.w4e{width:132.120000px;}
.w2e{width:133.200000px;}
.w2b{width:135.360000px;}
.w57{width:136.980000px;}
.w54{width:138.240000px;}
.w1e{width:138.600000px;}
.w34{width:140.400000px;}
.w31{width:141.480000px;}
.w1c{width:145.980000px;}
.w72{width:158.220000px;}
.w17{width:207.360000px;}
.wb{width:222.840000px;}
.w75{width:225.720000px;}
.w77{width:244.980000px;}
.wf{width:256.500000px;}
.wa{width:272.880000px;}
.w16{width:410.760000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x8f{left:1.073938px;}
.x1{left:107.999957px;}
.x1e{left:109.259956px;}
.x83{left:113.760000px;}
.x87{left:115.380000px;}
.x33{left:116.459953px;}
.x5{left:120.240000px;}
.x2{left:128.699878px;}
.x5d{left:142.200000px;}
.x3c{left:148.860000px;}
.x3d{left:152.100000px;}
.x8e{left:154.620000px;}
.x3{left:155.700000px;}
.x62{left:157.320000px;}
.x7f{left:160.200000px;}
.x2f{left:161.640000px;}
.x8b{left:165.600000px;}
.x30{left:166.860000px;}
.x4{left:171.899931px;}
.x2e{left:174.599930px;}
.x80{left:184.139926px;}
.xa{left:185.219926px;}
.x25{left:187.200000px;}
.x84{left:189.900000px;}
.x26{left:191.700000px;}
.x5e{left:192.780000px;}
.x48{left:203.040000px;}
.x49{left:206.460000px;}
.x5f{left:207.720000px;}
.x58{left:215.460000px;}
.x88{left:216.720000px;}
.x59{left:223.200000px;}
.x7d{left:232.200000px;}
.x56{left:235.620000px;}
.x20{left:237.059905px;}
.x6{left:239.940000px;}
.x21{left:241.920000px;}
.x4e{left:243.540000px;}
.x7c{left:244.980000px;}
.x7b{left:246.240000px;}
.x54{left:248.580000px;}
.x51{left:249.660000px;}
.x81{left:253.980000px;}
.x60{left:256.320000px;}
.xb{left:259.740316px;}
.x5a{left:263.700000px;}
.x5b{left:267.120000px;}
.x90{left:269.820000px;}
.x91{left:273.960000px;}
.x8a{left:275.220000px;}
.x85{left:276.300000px;}
.x8c{left:278.280000px;}
.x44{left:281.159888px;}
.x3f{left:293.580000px;}
.x65{left:296.460000px;}
.x3e{left:298.080000px;}
.x43{left:300.060000px;}
.x6e{left:301.680000px;}
.x1f{left:302.939879px;}
.x4a{left:307.620000px;}
.x4f{left:310.320000px;}
.x57{left:311.580000px;}
.x41{left:317.340000px;}
.x22{left:323.099871px;}
.x55{left:324.720000px;}
.x50{left:325.800000px;}
.x4b{left:328.320000px;}
.x40{left:338.760000px;}
.x35{left:342.539863px;}
.x6f{left:349.020000px;}
.x45{left:354.780000px;}
.x46{left:363.600000px;}
.x86{left:367.200000px;}
.x89{left:368.640000px;}
.x8d{left:369.720000px;}
.x29{left:371.339851px;}
.x2a{left:376.019850px;}
.x23{left:381.960000px;}
.x47{left:385.739846px;}
.x4c{left:389.160000px;}
.x42{left:390.240000px;}
.x52{left:392.580000px;}
.x66{left:394.380000px;}
.x61{left:396.360000px;}
.x53{left:400.140000px;}
.x5c{left:402.660000px;}
.x4d{left:403.740000px;}
.x63{left:419.580000px;}
.x82{left:423.900000px;}
.xc{left:427.680106px;}
.x7e{left:429.300000px;}
.xd{left:432.180102px;}
.x37{left:435.959826px;}
.x27{left:448.200000px;}
.x2b{left:453.600000px;}
.x34{left:462.600512px;}
.x67{left:464.040000px;}
.x64{left:467.460000px;}
.x68{left:496.080000px;}
.x3a{left:498.779800px;}
.x32{left:502.919799px;}
.x77{left:507.420000px;}
.x3b{left:509.039796px;}
.x2c{left:513.179795px;}
.xe{left:516.060050px;}
.x70{left:527.400000px;}
.xf{left:529.380042px;}
.x71{left:532.440000px;}
.x39{left:536.939785px;}
.x10{left:542.700033px;}
.x28{left:546.840000px;}
.x78{left:552.240000px;}
.x69{left:563.580000px;}
.x11{left:564.659960px;}
.x12{left:569.159957px;}
.x31{left:577.620000px;}
.x13{left:582.479948px;}
.x6a{left:587.880000px;}
.x38{left:589.679764px;}
.x14{left:595.619941px;}
.x24{left:603.900000px;}
.x75{left:605.160000px;}
.x15{left:608.939932px;}
.x16{left:613.439928px;}
.x72{left:625.680000px;}
.x17{left:631.079858px;}
.x18{left:635.399856px;}
.x19{left:648.719847px;}
.x76{left:651.060000px;}
.x1a{left:653.039845px;}
.x1b{left:657.539841px;}
.x1c{left:666.359733px;}
.x6b{left:668.340000px;}
.x6c{left:693.900000px;}
.x7{left:697.320000px;}
.x79{left:707.580000px;}
.x73{left:727.560000px;}
.x8{left:730.800000px;}
.x74{left:732.600000px;}
.x9{left:741.960000px;}
.x7a{left:752.400000px;}
.x6d{left:766.080000px;}
.x36{left:779.580000px;}
.x2d{left:781.559687px;}
.x1d{left:783.539686px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.559999pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009381pt;}
.ls0{letter-spacing:0.018878pt;}
.ls2{letter-spacing:0.018917pt;}
.lsd{letter-spacing:0.049280pt;}
.lsf{letter-spacing:0.064533pt;}
.ls3{letter-spacing:0.064960pt;}
.lse{letter-spacing:0.097280pt;}
.ls13{letter-spacing:0.120694pt;}
.ls12{letter-spacing:0.185770pt;}
.ls11{letter-spacing:0.225973pt;}
.ls10{letter-spacing:0.273973pt;}
.ls7{letter-spacing:1.105280pt;}
.ls8{letter-spacing:1.128053pt;}
.lsb{letter-spacing:6.355197pt;}
.lsc{letter-spacing:7.018984pt;}
.lsa{letter-spacing:8.916636pt;}
.ls9{letter-spacing:13.382875pt;}
.ls6{letter-spacing:40.935024pt;}
.ls5{letter-spacing:72.953571pt;}
.ws1{word-spacing:-19.918072pt;}
.ws4{word-spacing:-16.018911pt;}
.ws0{word-spacing:-16.018872pt;}
.ws3{word-spacing:-15.999994pt;}
.ws5{word-spacing:-13.492475pt;}
.ws9{word-spacing:-12.377766pt;}
.wsa{word-spacing:-12.312689pt;}
.ws8{word-spacing:-12.191995pt;}
.ws2{word-spacing:-11.567995pt;}
.ws6{word-spacing:-7.711997pt;}
.ws7{word-spacing:0.000000pt;}
._3{margin-left:-596.162746pt;}
._2{margin-left:-539.714020pt;}
._b{margin-left:-417.345321pt;}
._6{margin-left:-297.619225pt;}
._8{margin-left:-77.664056pt;}
._9{margin-left:-61.663779pt;}
._7{margin-left:-46.719326pt;}
._a{margin-left:-30.719311pt;}
._1{margin-left:-22.719255pt;}
._5{margin-left:-14.719290pt;}
._0{margin-left:-1.055625pt;}
._4{width:1.308994pt;}
._10{width:2.649680pt;}
._f{width:4.036056pt;}
._e{width:5.270750pt;}
._1b{width:6.573676pt;}
._21{width:7.782293pt;}
._25{width:9.286485pt;}
._14{width:10.446999pt;}
._27{width:12.547533pt;}
._12{width:13.599959pt;}
._24{width:15.131345pt;}
._20{width:16.866993pt;}
._1f{width:17.839890pt;}
._2c{width:18.737795pt;}
._2e{width:19.740895pt;}
._13{width:21.125330pt;}
._15{width:22.342282pt;}
._2a{width:23.356759pt;}
._2d{width:24.277070pt;}
._16{width:25.192961pt;}
._17{width:26.149412pt;}
._1d{width:27.728490pt;}
._1c{width:28.904490pt;}
._2f{width:30.068306pt;}
._36{width:31.054406pt;}
._11{width:31.979217pt;}
._18{width:33.486571pt;}
._19{width:34.725137pt;}
._37{width:36.106631pt;}
._39{width:37.010119pt;}
._3a{width:37.907910pt;}
._48{width:39.150613pt;}
._31{width:40.152534pt;}
._23{width:41.663608pt;}
._49{width:42.793036pt;}
._30{width:43.706272pt;}
._35{width:44.878063pt;}
._40{width:46.212074pt;}
._28{width:47.154524pt;}
._29{width:48.169474pt;}
._22{width:50.878136pt;}
._d{width:52.658247pt;}
._c{width:53.638729pt;}
._3b{width:54.846302pt;}
._42{width:56.564941pt;}
._3e{width:57.642808pt;}
._3f{width:58.593075pt;}
._4b{width:60.955816pt;}
._38{width:62.638681pt;}
._34{width:65.762764pt;}
._44{width:66.767815pt;}
._43{width:68.045379pt;}
._32{width:69.261655pt;}
._1a{width:73.516206pt;}
._4c{width:78.590963pt;}
._26{width:81.027085pt;}
._1e{width:82.373251pt;}
._4d{width:83.697045pt;}
._4a{width:86.836232pt;}
._41{width:96.635082pt;}
._47{width:102.084001pt;}
._46{width:102.992255pt;}
._45{width:105.172930pt;}
._3c{width:106.503901pt;}
._3d{width:108.131495pt;}
._33{width:117.230145pt;}
._2b{width:180.531768pt;}
.fsc{font-size:8.319997pt;}
.fs3{font-size:10.879996pt;}
.fsa{font-size:21.119992pt;}
.fsb{font-size:31.999987pt;}
.fs7{font-size:34.559986pt;}
.fs6{font-size:42.879983pt;}
.fs9{font-size:47.999981pt;}
.fs8{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.fsd{font-size:66.559973pt;}
.fs1{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs5{font-size:89.955162pt;}
.fs2{font-size:95.999962pt;}
.y48{bottom:-13.920909pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:2.559040pt;}
.y13b{bottom:2.719142pt;}
.y9e{bottom:2.719164pt;}
.ya1{bottom:2.719172pt;}
.ya4{bottom:2.719180pt;}
.ya7{bottom:2.719188pt;}
.yfe{bottom:2.719192pt;}
.y100{bottom:2.719198pt;}
.y1e{bottom:2.719204pt;}
.y103{bottom:2.719210pt;}
.y105{bottom:2.719216pt;}
.y107{bottom:2.719222pt;}
.y13f{bottom:2.719225pt;}
.y109{bottom:2.719228pt;}
.yad{bottom:2.719230pt;}
.y10b{bottom:2.719234pt;}
.yaf{bottom:2.719236pt;}
.y10d{bottom:2.719240pt;}
.yb2{bottom:2.719242pt;}
.y28{bottom:2.719243pt;}
.yb4{bottom:2.719248pt;}
.y145{bottom:2.719249pt;}
.yb6{bottom:2.719254pt;}
.y148{bottom:2.719257pt;}
.yb8{bottom:2.719260pt;}
.yba{bottom:2.719265pt;}
.ybc{bottom:2.719271pt;}
.ybe{bottom:2.719277pt;}
.y113{bottom:2.719279pt;}
.yc0{bottom:2.719283pt;}
.yc2{bottom:2.719289pt;}
.y116{bottom:2.719292pt;}
.yc4{bottom:2.719295pt;}
.y118{bottom:2.719298pt;}
.y11a{bottom:2.719304pt;}
.y11c{bottom:2.719310pt;}
.y11e{bottom:2.719316pt;}
.y120{bottom:2.719322pt;}
.y122{bottom:2.719328pt;}
.y14{bottom:2.879154pt;}
.y25{bottom:3.039233pt;}
.y43{bottom:3.359058pt;}
.ya{bottom:3.679062pt;}
.y20{bottom:3.839204pt;}
.y4{bottom:3.840025pt;}
.y16{bottom:4.319161pt;}
.y1a{bottom:4.319177pt;}
.y23{bottom:4.319219pt;}
.y98{bottom:51.946913pt;}
.y6{bottom:52.106912pt;}
.y96{bottom:66.506880pt;}
.y3{bottom:66.666880pt;}
.y97{bottom:70.026905pt;}
.y5{bottom:70.186905pt;}
.y95{bottom:70.346639pt;}
.y2{bottom:70.506638pt;}
.y139{bottom:104.266625pt;}
.y12e{bottom:104.426625pt;}
.y1a9{bottom:107.146624pt;}
.yd4{bottom:109.866623pt;}
.yfc{bottom:110.506622pt;}
.y15d{bottom:113.866621pt;}
.y40{bottom:114.506621pt;}
.y182{bottom:115.946620pt;}
.y75{bottom:116.106620pt;}
.y93{bottom:118.346619pt;}
.y12d{bottom:124.746617pt;}
.y1a8{bottom:128.106615pt;}
.yd3{bottom:130.346615pt;}
.yfb{bottom:130.986614pt;}
.y15c{bottom:134.346613pt;}
.y3f{bottom:134.826613pt;}
.y181{bottom:136.266612pt;}
.y74{bottom:136.426612pt;}
.y92{bottom:138.826611pt;}
.y12c{bottom:145.226609pt;}
.y1a7{bottom:149.226607pt;}
.yd2{bottom:150.826606pt;}
.yfa{bottom:151.466606pt;}
.y15b{bottom:154.826605pt;}
.y3e{bottom:155.306605pt;}
.y180{bottom:156.746604pt;}
.y73{bottom:156.906604pt;}
.y91{bottom:159.306603pt;}
.y12b{bottom:165.706600pt;}
.y1a6{bottom:170.506598pt;}
.yd1{bottom:171.146598pt;}
.yf9{bottom:171.786598pt;}
.y15a{bottom:175.146597pt;}
.y3d{bottom:175.786596pt;}
.y17f{bottom:177.226596pt;}
.y72{bottom:177.386596pt;}
.y1d1{bottom:178.666595pt;}
.y90{bottom:179.626595pt;}
.y12a{bottom:186.186592pt;}
.yd0{bottom:191.626590pt;}
.yf8{bottom:192.266590pt;}
.y159{bottom:195.626588pt;}
.y3c{bottom:196.266588pt;}
.y17e{bottom:197.706588pt;}
.y71{bottom:197.866588pt;}
.y1d0{bottom:198.986587pt;}
.y8f{bottom:200.106587pt;}
.y138{bottom:206.506584pt;}
.y129{bottom:206.666584pt;}
.ycf{bottom:212.106582pt;}
.yf7{bottom:212.746582pt;}
.y158{bottom:216.106580pt;}
.y3b{bottom:216.746580pt;}
.y17d{bottom:218.186579pt;}
.y70{bottom:218.346579pt;}
.y1cf{bottom:219.466579pt;}
.y8e{bottom:220.586578pt;}
.y137{bottom:226.986576pt;}
.y128{bottom:227.146576pt;}
.yce{bottom:232.586574pt;}
.yf6{bottom:233.226573pt;}
.y1a5{bottom:233.866573pt;}
.y157{bottom:236.586572pt;}
.y3a{bottom:237.066572pt;}
.y17c{bottom:238.666571pt;}
.y6f{bottom:238.826571pt;}
.y1ce{bottom:240.426570pt;}
.y8d{bottom:241.066570pt;}
.y127{bottom:247.466568pt;}
.ycd{bottom:253.066565pt;}
.yf5{bottom:253.706565pt;}
.y1a4{bottom:254.986565pt;}
.y156{bottom:257.066564pt;}
.y39{bottom:257.546564pt;}
.y17b{bottom:258.986563pt;}
.y6e{bottom:259.146563pt;}
.y1cd{bottom:261.386562pt;}
.y8c{bottom:261.546562pt;}
.y126{bottom:267.946559pt;}
.ycc{bottom:273.546557pt;}
.yf4{bottom:274.186557pt;}
.y1a3{bottom:276.106556pt;}
.y155{bottom:277.546556pt;}
.y38{bottom:278.026555pt;}
.y17a{bottom:279.466555pt;}
.y6d{bottom:279.626555pt;}
.y8b{bottom:281.866554pt;}
.y1cc{bottom:282.346554pt;}
.y125{bottom:288.426551pt;}
.yf3{bottom:293.386549pt;}
.ycb{bottom:293.866549pt;}
.y1a2{bottom:297.226548pt;}
.y154{bottom:297.866548pt;}
.y37{bottom:298.506547pt;}
.y76{bottom:299.466547pt;}
.y179{bottom:299.946547pt;}
.y6c{bottom:300.106547pt;}
.y8a{bottom:302.346546pt;}
.y1cb{bottom:303.466545pt;}
.y124{bottom:308.906543pt;}
.y36{bottom:312.906542pt;}
.yca{bottom:314.346541pt;}
.y35{bottom:316.266540pt;}
.y153{bottom:318.346539pt;}
.y178{bottom:320.426538pt;}
.y6b{bottom:320.586538pt;}
.y89{bottom:322.826538pt;}
.y1ca{bottom:324.426537pt;}
.y136{bottom:328.106535pt;}
.y123{bottom:329.386535pt;}
.yf2{bottom:333.546533pt;}
.y34{bottom:333.866533pt;}
.y33{bottom:334.506533pt;}
.yc9{bottom:334.826533pt;}
.y152{bottom:338.826531pt;}
.y1a1{bottom:339.466531pt;}
.y177{bottom:340.906530pt;}
.y6a{bottom:341.066530pt;}
.y121{bottom:342.827200pt;}
.y88{bottom:343.306529pt;}
.y1c9{bottom:345.546528pt;}
.y135{bottom:347.466528pt;}
.yf1{bottom:354.346525pt;}
.y32{bottom:354.826525pt;}
.yc8{bottom:355.306525pt;}
.y11f{bottom:358.027200pt;}
.y151{bottom:359.306523pt;}
.y1a0{bottom:360.586522pt;}
.y176{bottom:361.386522pt;}
.y69{bottom:361.546522pt;}
.y87{bottom:363.786521pt;}
.y1c8{bottom:366.506520pt;}
.y134{bottom:367.946519pt;}
.y11d{bottom:373.387200pt;}
.yf0{bottom:375.146517pt;}
.y31{bottom:375.306517pt;}
.yc7{bottom:375.786516pt;}
.y150{bottom:379.786515pt;}
.y175{bottom:381.706514pt;}
.y68{bottom:381.866514pt;}
.y86{bottom:384.266513pt;}
.y1c7{bottom:387.466512pt;}
.y133{bottom:388.426511pt;}
.y11b{bottom:388.747200pt;}
.y30{bottom:395.786508pt;}
.yc6{bottom:396.266508pt;}
.y14f{bottom:400.266507pt;}
.y174{bottom:402.186506pt;}
.y67{bottom:402.346506pt;}
.y19f{bottom:402.986505pt;}
.y119{bottom:404.107200pt;}
.y85{bottom:404.586505pt;}
.y1c6{bottom:407.466504pt;}
.y132{bottom:408.906503pt;}
.yc5{bottom:415.466500pt;}
.y2f{bottom:416.266500pt;}
.yef{bottom:416.586500pt;}
.y117{bottom:419.307200pt;}
.y14e{bottom:420.586498pt;}
.y173{bottom:422.666498pt;}
.y66{bottom:422.826498pt;}
.y19e{bottom:424.106497pt;}
.y84{bottom:425.066497pt;}
.y1c5{bottom:427.146496pt;}
.yc3{bottom:427.147200pt;}
.y131{bottom:429.226495pt;}
.y115{bottom:434.667200pt;}
.y2e{bottom:436.746492pt;}
.yee{bottom:437.226492pt;}
.y14d{bottom:441.066490pt;}
.yc1{bottom:441.707200pt;}
.y172{bottom:443.146489pt;}
.y65{bottom:443.306489pt;}
.y19d{bottom:445.226489pt;}
.y83{bottom:445.546488pt;}
.y1c4{bottom:448.266487pt;}
.y130{bottom:449.706487pt;}
.y114{bottom:453.706485pt;}
.ybf{bottom:456.427200pt;}
.y2d{bottom:457.226484pt;}
.yed{bottom:458.026483pt;}
.y14c{bottom:461.546482pt;}
.y171{bottom:463.626481pt;}
.y64{bottom:463.786481pt;}
.y112{bottom:465.387200pt;}
.y82{bottom:466.026480pt;}
.y19c{bottom:466.346480pt;}
.y1c3{bottom:469.226479pt;}
.y12f{bottom:470.186479pt;}
.ybd{bottom:470.987200pt;}
.y2c{bottom:477.546476pt;}
.yec{bottom:478.826475pt;}
.y14b{bottom:482.026474pt;}
.y170{bottom:484.106473pt;}
.y63{bottom:484.266473pt;}
.ybb{bottom:485.707200pt;}
.y81{bottom:486.506472pt;}
.y19b{bottom:487.466472pt;}
.y1c2{bottom:490.346471pt;}
.y111{bottom:490.666470pt;}
.y2b{bottom:498.026467pt;}
.yeb{bottom:499.466467pt;}
.y14a{bottom:499.787200pt;}
.yb9{bottom:500.267200pt;}
.y149{bottom:502.506466pt;}
.y16f{bottom:504.426465pt;}
.y62{bottom:504.586465pt;}
.y80{bottom:506.986464pt;}
.y19a{bottom:508.586463pt;}
.y110{bottom:511.146462pt;}
.y1c1{bottom:511.306462pt;}
.yb7{bottom:514.987200pt;}
.y2a{bottom:518.506459pt;}
.yea{bottom:520.266459pt;}
.y147{bottom:520.267200pt;}
.y146{bottom:522.986457pt;}
.y16e{bottom:524.906457pt;}
.y61{bottom:525.066457pt;}
.y7f{bottom:527.306456pt;}
.yb5{bottom:529.547200pt;}
.y199{bottom:529.706455pt;}
.y10f{bottom:531.626454pt;}
.y1c0{bottom:532.266454pt;}
.y29{bottom:538.986451pt;}
.y144{bottom:540.587200pt;}
.ye9{bottom:540.906450pt;}
.y143{bottom:543.306449pt;}
.yb3{bottom:544.267200pt;}
.y16d{bottom:545.386449pt;}
.y60{bottom:545.546448pt;}
.y7e{bottom:547.786448pt;}
.y198{bottom:550.826446pt;}
.y10e{bottom:551.946446pt;}
.y1bf{bottom:553.386445pt;}
.y27{bottom:556.747200pt;}
.yb1{bottom:559.787200pt;}
.ye8{bottom:561.706442pt;}
.yb0{bottom:562.506442pt;}
.y142{bottom:563.786441pt;}
.y10c{bottom:564.747200pt;}
.y16c{bottom:565.866440pt;}
.y5f{bottom:566.026440pt;}
.y7d{bottom:568.266439pt;}
.y197{bottom:571.946438pt;}
.yae{bottom:573.547200pt;}
.y1be{bottom:574.346437pt;}
.y10a{bottom:579.467200pt;}
.y141{bottom:581.547200pt;}
.y24{bottom:581.707200pt;}
.ye7{bottom:582.506434pt;}
.y140{bottom:584.266433pt;}
.y26{bottom:584.746433pt;}
.y16b{bottom:586.346432pt;}
.y5e{bottom:586.506432pt;}
.y7c{bottom:588.746431pt;}
.yac{bottom:589.067200pt;}
.y196{bottom:593.066429pt;}
.y108{bottom:594.027200pt;}
.y1bd{bottom:595.306429pt;}
.y13e{bottom:602.027200pt;}
.ye6{bottom:603.146425pt;}
.y16a{bottom:606.666424pt;}
.y5d{bottom:606.826424pt;}
.y106{bottom:608.587200pt;}
.y7b{bottom:609.226423pt;}
.y22{bottom:613.867200pt;}
.y195{bottom:614.186421pt;}
.yab{bottom:614.506421pt;}
.y1bc{bottom:616.426420pt;}
.y21{bottom:618.186419pt;}
.y104{bottom:623.307200pt;}
.ye5{bottom:623.946417pt;}
.y169{bottom:627.146416pt;}
.y5c{bottom:627.306416pt;}
.y7a{bottom:629.706415pt;}
.yaa{bottom:634.826413pt;}
.y194{bottom:635.306413pt;}
.y1bb{bottom:637.386412pt;}
.y102{bottom:637.867200pt;}
.ye4{bottom:644.586409pt;}
.y168{bottom:647.626408pt;}
.y5b{bottom:647.786408pt;}
.y79{bottom:650.026407pt;}
.y101{bottom:652.587200pt;}
.y1f{bottom:653.387200pt;}
.y1d{bottom:654.507200pt;}
.ya9{bottom:655.306405pt;}
.y193{bottom:656.586404pt;}
.y1ba{bottom:658.506403pt;}
.ye3{bottom:665.386401pt;}
.y167{bottom:668.106399pt;}
.y5a{bottom:668.266399pt;}
.yff{bottom:668.267200pt;}
.y78{bottom:670.506398pt;}
.y1c{bottom:671.626398pt;}
.ya8{bottom:675.786396pt;}
.y192{bottom:677.706396pt;}
.y1b9{bottom:679.466395pt;}
.yfd{bottom:683.787200pt;}
.ye2{bottom:686.186392pt;}
.y166{bottom:688.586391pt;}
.y59{bottom:688.746391pt;}
.y77{bottom:689.866391pt;}
.ya6{bottom:693.547200pt;}
.ya5{bottom:696.266388pt;}
.y1b{bottom:696.586388pt;}
.y191{bottom:698.826387pt;}
.y1b8{bottom:700.426386pt;}
.ye1{bottom:706.826384pt;}
.y165{bottom:709.066383pt;}
.y58{bottom:709.226383pt;}
.ya3{bottom:714.027200pt;}
.ya2{bottom:716.746380pt;}
.y19{bottom:719.467200pt;}
.y190{bottom:719.946379pt;}
.y1b7{bottom:721.546378pt;}
.ye0{bottom:727.626376pt;}
.y164{bottom:729.386375pt;}
.y57{bottom:729.546375pt;}
.ya0{bottom:734.507200pt;}
.y9f{bottom:737.226372pt;}
.y18{bottom:739.626371pt;}
.y18f{bottom:741.066370pt;}
.y1b6{bottom:742.506370pt;}
.ydf{bottom:748.266367pt;}
.y163{bottom:749.866367pt;}
.y56{bottom:750.026367pt;}
.y9d{bottom:754.827200pt;}
.y15{bottom:759.787200pt;}
.y18e{bottom:762.186362pt;}
.y1b5{bottom:763.466361pt;}
.y17{bottom:768.746359pt;}
.yde{bottom:769.066359pt;}
.y162{bottom:770.346359pt;}
.y55{bottom:770.506358pt;}
.y13d{bottom:771.946358pt;}
.y13{bottom:777.707200pt;}
.y18d{bottom:783.306353pt;}
.y1b4{bottom:784.586353pt;}
.ydd{bottom:789.866351pt;}
.y161{bottom:790.826350pt;}
.y54{bottom:790.986350pt;}
.y13c{bottom:792.426350pt;}
.y18c{bottom:804.426345pt;}
.y1b3{bottom:805.546344pt;}
.y12{bottom:807.626344pt;}
.y13a{bottom:810.187200pt;}
.ydc{bottom:810.506342pt;}
.y160{bottom:811.306342pt;}
.y53{bottom:811.466342pt;}
.y18b{bottom:825.546336pt;}
.y1b2{bottom:826.666336pt;}
.ydb{bottom:831.306334pt;}
.y15f{bottom:831.786334pt;}
.y52{bottom:831.946334pt;}
.y11{bottom:843.786329pt;}
.y18a{bottom:846.666328pt;}
.y1b1{bottom:847.626328pt;}
.yda{bottom:851.946326pt;}
.y15e{bottom:852.106326pt;}
.y51{bottom:852.266326pt;}
.y189{bottom:867.786320pt;}
.y1b0{bottom:868.586319pt;}
.yd9{bottom:872.586318pt;}
.y50{bottom:872.746318pt;}
.y10{bottom:880.106315pt;}
.y188{bottom:888.906311pt;}
.y1af{bottom:889.706311pt;}
.yd8{bottom:893.066309pt;}
.y4f{bottom:893.226309pt;}
.yf{bottom:900.906306pt;}
.y187{bottom:910.186303pt;}
.y1ae{bottom:910.666302pt;}
.yd7{bottom:913.546301pt;}
.y4e{bottom:913.706301pt;}
.ye{bottom:915.466300pt;}
.yd{bottom:915.786300pt;}
.y186{bottom:931.306294pt;}
.y1ad{bottom:931.626294pt;}
.yd6{bottom:934.026293pt;}
.y4d{bottom:934.186293pt;}
.y185{bottom:952.426286pt;}
.y1ac{bottom:952.746286pt;}
.y47{bottom:954.027200pt;}
.yd5{bottom:954.506285pt;}
.y4c{bottom:954.666285pt;}
.y46{bottom:962.026282pt;}
.y184{bottom:973.546277pt;}
.y1ab{bottom:973.706277pt;}
.y9c{bottom:974.826277pt;}
.y4b{bottom:974.986277pt;}
.y45{bottom:980.906274pt;}
.y183{bottom:994.666269pt;}
.y1aa{bottom:994.826269pt;}
.y9b{bottom:995.306269pt;}
.y4a{bottom:995.466268pt;}
.y44{bottom:999.946267pt;}
.yc{bottom:1001.866266pt;}
.yb{bottom:1002.186266pt;}
.y9{bottom:1008.267200pt;}
.y9a{bottom:1015.786260pt;}
.y49{bottom:1015.946260pt;}
.y42{bottom:1018.027200pt;}
.y41{bottom:1021.386258pt;}
.y94{bottom:1060.106243pt;}
.y1{bottom:1060.266243pt;}
.y99{bottom:1062.827200pt;}
.y7{bottom:1062.987200pt;}
.h26{height:2.560000pt;}
.hb{height:7.262185pt;}
.he{height:12.000000pt;}
.h17{height:13.440000pt;}
.h2a{height:13.600000pt;}
.h29{height:13.760000pt;}
.h20{height:14.097182pt;}
.h19{height:14.560000pt;}
.h1e{height:15.200000pt;}
.h10{height:17.920000pt;}
.h14{height:18.080000pt;}
.h2{height:18.240000pt;}
.h7{height:18.400000pt;}
.h4{height:18.560000pt;}
.h25{height:19.360000pt;}
.h22{height:23.034366pt;}
.h12{height:23.068116pt;}
.h21{height:24.218740pt;}
.hf{height:28.621551pt;}
.h1d{height:29.856863pt;}
.h28{height:32.432175pt;}
.h2b{height:32.453112pt;}
.h13{height:32.788112pt;}
.h16{height:35.560298pt;}
.h18{height:36.304673pt;}
.h1a{height:36.328110pt;}
.h1c{height:36.703110pt;}
.h23{height:38.387485pt;}
.h1f{height:40.177171pt;}
.h8{height:42.656233pt;}
.h11{height:42.718733pt;}
.h15{height:42.843733pt;}
.h27{height:44.362482pt;}
.h1b{height:44.562482pt;}
.ha{height:48.406231pt;}
.h24{height:48.937480pt;}
.h5{height:49.980918pt;}
.hc{height:56.815915pt;}
.hd{height:60.043314pt;}
.h1{height:62.812475pt;}
.h3{height:64.499974pt;}
.h9{height:69.749972pt;}
.h6{height:75.464970pt;}
.h0{height:1122.666667pt;}
.w1b{width:2.880000pt;}
.w28{width:3.040000pt;}
.w5b{width:3.200000pt;}
.w12{width:3.680000pt;}
.we{width:4.000000pt;}
.w4d{width:4.480000pt;}
.w15{width:4.640000pt;}
.w5f{width:5.120000pt;}
.w25{width:5.280000pt;}
.w1{width:5.760000pt;}
.w1d{width:6.080000pt;}
.w6a{width:6.400000pt;}
.w35{width:6.560000pt;}
.w33{width:6.720000pt;}
.w11{width:6.880000pt;}
.w7{width:7.360000pt;}
.w22{width:8.480000pt;}
.w19{width:8.800000pt;}
.w74{width:9.120000pt;}
.w18{width:9.440000pt;}
.w5{width:9.920000pt;}
.w6{width:10.080000pt;}
.w59{width:10.240000pt;}
.w3d{width:11.200000pt;}
.wc{width:11.520000pt;}
.w30{width:11.840000pt;}
.w2d{width:12.000000pt;}
.w2f{width:12.800000pt;}
.w2a{width:12.960000pt;}
.w40{width:13.280000pt;}
.w3c{width:13.440000pt;}
.w2c{width:13.760000pt;}
.w32{width:13.920000pt;}
.w39{width:14.080000pt;}
.w3{width:14.240000pt;}
.w29{width:18.400000pt;}
.w3a{width:18.560000pt;}
.w42{width:19.680000pt;}
.w6f{width:19.840000pt;}
.w69{width:21.600000pt;}
.w6b{width:22.080000pt;}
.w68{width:22.880000pt;}
.w64{width:23.040000pt;}
.w60{width:23.200000pt;}
.w61{width:23.360000pt;}
.w66{width:23.520000pt;}
.w63{width:23.680000pt;}
.w67{width:24.000000pt;}
.w62{width:24.160000pt;}
.w65{width:24.320000pt;}
.w6d{width:24.640000pt;}
.w6c{width:25.120000pt;}
.w4{width:29.760000pt;}
.w3e{width:30.240000pt;}
.w5d{width:33.600000pt;}
.w24{width:35.040000pt;}
.w76{width:35.520000pt;}
.w38{width:36.000000pt;}
.w1a{width:36.160000pt;}
.w3b{width:37.440000pt;}
.w70{width:38.560000pt;}
.w52{width:39.840000pt;}
.w55{width:40.480000pt;}
.w4f{width:40.640000pt;}
.w50{width:40.800000pt;}
.w56{width:41.440000pt;}
.w4c{width:42.080000pt;}
.w44{width:42.560000pt;}
.w5e{width:43.040000pt;}
.w41{width:43.200000pt;}
.w43{width:43.840000pt;}
.w73{width:44.000000pt;}
.w53{width:44.800000pt;}
.w3f{width:44.960000pt;}
.w20{width:45.120000pt;}
.w14{width:46.560000pt;}
.w21{width:46.720000pt;}
.w47{width:51.040000pt;}
.w45{width:55.520000pt;}
.w13{width:58.400000pt;}
.w49{width:60.000000pt;}
.w26{width:60.960000pt;}
.w48{width:61.920000pt;}
.w5c{width:62.720000pt;}
.w4b{width:64.160000pt;}
.w23{width:64.800000pt;}
.w6e{width:66.400000pt;}
.wd{width:69.280000pt;}
.w4a{width:71.520000pt;}
.w9{width:72.160000pt;}
.w5a{width:76.000000pt;}
.w1f{width:83.040000pt;}
.w27{width:84.320000pt;}
.w10{width:87.680000pt;}
.w46{width:94.240000pt;}
.w37{width:95.360000pt;}
.w71{width:102.400000pt;}
.w2{width:106.400000pt;}
.w58{width:110.400000pt;}
.w36{width:113.280000pt;}
.w8{width:113.760000pt;}
.w51{width:115.360000pt;}
.w4e{width:117.440000pt;}
.w2e{width:118.400000pt;}
.w2b{width:120.320000pt;}
.w57{width:121.760000pt;}
.w54{width:122.880000pt;}
.w1e{width:123.200000pt;}
.w34{width:124.800000pt;}
.w31{width:125.760000pt;}
.w1c{width:129.760000pt;}
.w72{width:140.640000pt;}
.w17{width:184.320000pt;}
.wb{width:198.080000pt;}
.w75{width:200.640000pt;}
.w77{width:217.760000pt;}
.wf{width:228.000000pt;}
.wa{width:242.560000pt;}
.w16{width:365.120000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8f{left:0.954611pt;}
.x1{left:95.999962pt;}
.x1e{left:97.119961pt;}
.x83{left:101.120000pt;}
.x87{left:102.560000pt;}
.x33{left:103.519959pt;}
.x5{left:106.880000pt;}
.x2{left:114.399892pt;}
.x5d{left:126.400000pt;}
.x3c{left:132.320000pt;}
.x3d{left:135.200000pt;}
.x8e{left:137.440000pt;}
.x3{left:138.400000pt;}
.x62{left:139.840000pt;}
.x7f{left:142.400000pt;}
.x2f{left:143.680000pt;}
.x8b{left:147.200000pt;}
.x30{left:148.320000pt;}
.x4{left:152.799939pt;}
.x2e{left:155.199938pt;}
.x80{left:163.679935pt;}
.xa{left:164.639934pt;}
.x25{left:166.400000pt;}
.x84{left:168.800000pt;}
.x26{left:170.400000pt;}
.x5e{left:171.360000pt;}
.x48{left:180.480000pt;}
.x49{left:183.520000pt;}
.x5f{left:184.640000pt;}
.x58{left:191.520000pt;}
.x88{left:192.640000pt;}
.x59{left:198.400000pt;}
.x7d{left:206.400000pt;}
.x56{left:209.440000pt;}
.x20{left:210.719916pt;}
.x6{left:213.280000pt;}
.x21{left:215.040000pt;}
.x4e{left:216.480000pt;}
.x7c{left:217.760000pt;}
.x7b{left:218.880000pt;}
.x54{left:220.960000pt;}
.x51{left:221.920000pt;}
.x81{left:225.760000pt;}
.x60{left:227.840000pt;}
.xb{left:230.880281pt;}
.x5a{left:234.400000pt;}
.x5b{left:237.440000pt;}
.x90{left:239.840000pt;}
.x91{left:243.520000pt;}
.x8a{left:244.640000pt;}
.x85{left:245.600000pt;}
.x8c{left:247.360000pt;}
.x44{left:249.919900pt;}
.x3f{left:260.960000pt;}
.x65{left:263.520000pt;}
.x3e{left:264.960000pt;}
.x43{left:266.720000pt;}
.x6e{left:268.160000pt;}
.x1f{left:269.279892pt;}
.x4a{left:273.440000pt;}
.x4f{left:275.840000pt;}
.x57{left:276.960000pt;}
.x41{left:282.080000pt;}
.x22{left:287.199885pt;}
.x55{left:288.640000pt;}
.x50{left:289.600000pt;}
.x4b{left:291.840000pt;}
.x40{left:301.120000pt;}
.x35{left:304.479878pt;}
.x6f{left:310.240000pt;}
.x45{left:315.360000pt;}
.x46{left:323.200000pt;}
.x86{left:326.400000pt;}
.x89{left:327.680000pt;}
.x8d{left:328.640000pt;}
.x29{left:330.079868pt;}
.x2a{left:334.239866pt;}
.x23{left:339.520000pt;}
.x47{left:342.879863pt;}
.x4c{left:345.920000pt;}
.x42{left:346.880000pt;}
.x52{left:348.960000pt;}
.x66{left:350.560000pt;}
.x61{left:352.320000pt;}
.x53{left:355.680000pt;}
.x5c{left:357.920000pt;}
.x4d{left:358.880000pt;}
.x63{left:372.960000pt;}
.x82{left:376.800000pt;}
.xc{left:380.160094pt;}
.x7e{left:381.600000pt;}
.xd{left:384.160091pt;}
.x37{left:387.519845pt;}
.x27{left:398.400000pt;}
.x2b{left:403.200000pt;}
.x34{left:411.200455pt;}
.x67{left:412.480000pt;}
.x64{left:415.520000pt;}
.x68{left:440.960000pt;}
.x3a{left:443.359823pt;}
.x32{left:447.039821pt;}
.x77{left:451.040000pt;}
.x3b{left:452.479819pt;}
.x2c{left:456.159818pt;}
.xe{left:458.720045pt;}
.x70{left:468.800000pt;}
.xf{left:470.560037pt;}
.x71{left:473.280000pt;}
.x39{left:477.279809pt;}
.x10{left:482.400029pt;}
.x28{left:486.080000pt;}
.x78{left:490.880000pt;}
.x69{left:500.960000pt;}
.x11{left:501.919965pt;}
.x12{left:505.919962pt;}
.x31{left:513.440000pt;}
.x13{left:517.759954pt;}
.x6a{left:522.560000pt;}
.x38{left:524.159790pt;}
.x14{left:529.439947pt;}
.x24{left:536.800000pt;}
.x75{left:537.920000pt;}
.x15{left:541.279939pt;}
.x16{left:545.279936pt;}
.x72{left:556.160000pt;}
.x17{left:560.959873pt;}
.x18{left:564.799872pt;}
.x19{left:576.639864pt;}
.x76{left:578.720000pt;}
.x1a{left:580.479862pt;}
.x1b{left:584.479859pt;}
.x1c{left:592.319763pt;}
.x6b{left:594.080000pt;}
.x6c{left:616.800000pt;}
.x7{left:619.840000pt;}
.x79{left:628.960000pt;}
.x73{left:646.720000pt;}
.x8{left:649.600000pt;}
.x74{left:651.200000pt;}
.x9{left:659.520000pt;}
.x7a{left:668.800000pt;}
.x6d{left:680.960000pt;}
.x36{left:692.960000pt;}
.x2d{left:694.719722pt;}
.x1d{left:696.479721pt;}
}




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