
    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_d4c998997dc6d69f86dc962e.woff')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_3463887f9dbc8da6459dc36b.woff')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_33e57a7928f52de2dcbc0c8f.woff')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_85adf20555daeb325f538f30.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_52404484847577b05542c60f.woff')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_ba5d104b293ad4c2d020caf5.woff')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_769d70f6dbb58e1c2affd9e3.woff')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_da09e5a70babd3ee7337dfc0.woff')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_6b20063599563fd150202a4d.woff')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_f2eeb6ef71d61f4b6feaad17.woff')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_2fd28c0ad2ada992135624fa.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_9e12388c95666483ca41e538.woff')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_20b0c2224b4649964901bc00.woff')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_6be9a6d0aec892ceefccb075.woff')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_b835907612e759f25862bab7.woff')format("woff");}.fff{font-family:fff;line-height:0.950684;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_8832cad06af1980744f06708.woff')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_c52e6bb5088b1e6534ffee12.woff')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_4e1f65e65da314a65575c9ec.woff')format("woff");}.ff12{font-family:ff12;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);}
.ma{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);}
.v1{vertical-align:-23.759990px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.879999px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010553px;}
.ls0{letter-spacing:0.021238px;}
.ls5{letter-spacing:0.028320px;}
.ls6{letter-spacing:0.072600px;}
.ls3{letter-spacing:0.073080px;}
.ls7{letter-spacing:0.109440px;}
.ls2{letter-spacing:0.340926px;}
.ls9{letter-spacing:1.061760px;}
.ls8{letter-spacing:1.782179px;}
.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;}
.ws0{word-spacing:-18.021231px;}
.ws3{word-spacing:-17.999993px;}
.ws4{word-spacing:-15.179034px;}
.ws8{word-spacing:-13.715995px;}
.ws6{word-spacing:-13.013995px;}
.ws2{word-spacing:-10.342076px;}
.ws7{word-spacing:-8.675997px;}
.ws5{word-spacing:0.000000px;}
._4{margin-left:-670.683089px;}
._3{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;}
._2{margin-left:-25.559162px;}
._5{margin-left:-16.559201px;}
._30{margin-left:-2.493172px;}
._1{margin-left:-1.187579px;}
._0{width:1.164845px;}
._11{width:2.778320px;}
._12{width:3.958024px;}
._13{width:5.350101px;}
._f{width:7.258100px;}
._15{width:9.021891px;}
._16{width:10.427102px;}
._1b{width:11.505908px;}
._10{width:14.136925px;}
._14{width:15.718203px;}
._1a{width:16.907681px;}
._d{width:18.905381px;}
._e{width:20.434904px;}
._3f{width:21.483794px;}
._26{width:22.493397px;}
._17{width:24.084292px;}
._18{width:25.190341px;}
._2d{width:26.428949px;}
._c{width:27.781548px;}
._32{width:29.012746px;}
._1e{width:30.238909px;}
._19{width:31.285058px;}
._29{width:32.545200px;}
._3e{width:33.719524px;}
._25{width:34.764151px;}
._2e{width:36.608134px;}
._36{width:37.913780px;}
._35{width:39.033330px;}
._34{width:40.482644px;}
._2a{width:41.522220px;}
._1c{width:43.498894px;}
._1d{width:44.558317px;}
._4a{width:45.735916px;}
._33{width:47.047926px;}
._2b{width:49.030612px;}
._2c{width:50.299556px;}
._38{width:52.210233px;}
._37{width:54.014135px;}
._31{width:55.404592px;}
._39{width:56.412466px;}
._22{width:57.434304px;}
._27{width:61.230706px;}
._28{width:62.520020px;}
._47{width:65.412035px;}
._21{width:66.656571px;}
._3d{width:67.693959px;}
._3b{width:72.222612px;}
._3a{width:73.515692px;}
._44{width:76.033836px;}
._23{width:80.932406px;}
._24{width:82.427615px;}
._2f{width:88.518831px;}
._48{width:90.355188px;}
._49{width:91.406984px;}
._3c{width:92.523851px;}
._45{width:114.379962px;}
._46{width:115.396874px;}
._1f{width:123.377993px;}
._20{width:124.542981px;}
._43{width:156.777877px;}
._42{width:158.693937px;}
._40{width:208.244311px;}
._41{width:209.853931px;}
.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;}
.fsb{font-size:23.759990px;}
.fs8{font-size:33.119987px;}
.fse{font-size:35.999986px;}
.fs7{font-size:38.879984px;}
.fsf{font-size:41.759983px;}
.fs6{font-size:48.239981px;}
.fsa{font-size:53.999978px;}
.fs9{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;}
.y49{bottom:-15.661023px;}
.y0{bottom:0.000000px;}
.y8{bottom:2.878921px;}
.yaf{bottom:3.058961px;}
.yb1{bottom:3.058968px;}
.yb4{bottom:3.058975px;}
.yb7{bottom:3.058982px;}
.yba{bottom:3.058988px;}
.ybd{bottom:3.058995px;}
.yc0{bottom:3.059001px;}
.yc3{bottom:3.059008px;}
.yc5{bottom:3.059015px;}
.yc7{bottom:3.059021px;}
.y78{bottom:3.059045px;}
.y7a{bottom:3.059052px;}
.yf3{bottom:3.059054px;}
.y7c{bottom:3.059059px;}
.yf5{bottom:3.059061px;}
.y7f{bottom:3.059066px;}
.yf7{bottom:3.059068px;}
.y82{bottom:3.059072px;}
.yf9{bottom:3.059074px;}
.y85{bottom:3.059079px;}
.yfb{bottom:3.059081px;}
.y88{bottom:3.059085px;}
.yfd{bottom:3.059088px;}
.y8b{bottom:3.059092px;}
.yff{bottom:3.059094px;}
.y8d{bottom:3.059099px;}
.y101{bottom:3.059101px;}
.y20{bottom:3.059104px;}
.yd3{bottom:3.059112px;}
.yd5{bottom:3.059118px;}
.yd7{bottom:3.059125px;}
.y2a{bottom:3.059148px;}
.y15{bottom:3.239049px;}
.y27{bottom:3.419137px;}
.y44{bottom:3.778940px;}
.ya{bottom:4.138945px;}
.y22{bottom:4.319104px;}
.y4{bottom:4.320028px;}
.y17{bottom:4.859056px;}
.y1c{bottom:4.859074px;}
.y25{bottom:4.859122px;}
.y6{bottom:58.620277px;}
.y3{bottom:75.000240px;}
.y5{bottom:78.960268px;}
.y2{bottom:79.319968px;}
.yf1{bottom:118.019953px;}
.yaa{bottom:121.439951px;}
.y14b{bottom:128.459949px;}
.y41{bottom:128.819948px;}
.y120{bottom:129.899948px;}
.y173{bottom:130.259948px;}
.y76{bottom:130.619948px;}
.y11c{bottom:132.419947px;}
.yf0{bottom:141.059944px;}
.ya9{bottom:144.299942px;}
.y40{bottom:151.679939px;}
.y14a{bottom:152.039939px;}
.y172{bottom:153.299939px;}
.y75{bottom:153.479939px;}
.y11f{bottom:153.659939px;}
.y11b{bottom:155.459938px;}
.yef{bottom:163.919934px;}
.ya8{bottom:167.339933px;}
.y3f{bottom:174.719930px;}
.y149{bottom:175.799930px;}
.y171{bottom:176.339929px;}
.y74{bottom:176.519929px;}
.y11e{bottom:177.419929px;}
.y11a{bottom:178.499929px;}
.yee{bottom:186.959925px;}
.ya7{bottom:190.379924px;}
.yab{bottom:194.159922px;}
.y3e{bottom:197.759921px;}
.y170{bottom:199.199920px;}
.y73{bottom:199.559920px;}
.y148{bottom:199.739920px;}
.y11d{bottom:201.179920px;}
.y119{bottom:201.359919px;}
.yed{bottom:209.999916px;}
.ya6{bottom:213.419915px;}
.y3d{bottom:220.799912px;}
.y16f{bottom:222.239911px;}
.y72{bottom:222.599911px;}
.y147{bottom:223.499911px;}
.y118{bottom:224.399910px;}
.yec{bottom:233.039907px;}
.ya5{bottom:236.459905px;}
.y3c{bottom:243.839902px;}
.y16e{bottom:245.279902px;}
.y71{bottom:245.639902px;}
.y146{bottom:247.259901px;}
.y117{bottom:247.439901px;}
.yeb{bottom:256.079898px;}
.ya4{bottom:259.319896px;}
.y3b{bottom:266.699893px;}
.y16d{bottom:268.319893px;}
.y70{bottom:268.679893px;}
.y116{bottom:270.479892px;}
.y145{bottom:271.019892px;}
.yea{bottom:279.119888px;}
.ya3{bottom:282.359887px;}
.y3a{bottom:282.899887px;}
.y39{bottom:286.679885px;}
.y16c{bottom:291.359883px;}
.y6f{bottom:291.539883px;}
.y115{bottom:293.519883px;}
.y144{bottom:294.779882px;}
.ye9{bottom:301.979879px;}
.ya2{bottom:305.399878px;}
.y38{bottom:307.199877px;}
.y16b{bottom:314.399874px;}
.y6e{bottom:314.579874px;}
.y114{bottom:316.379873px;}
.y143{bottom:318.539873px;}
.ye8{bottom:325.019870px;}
.ya1{bottom:328.439869px;}
.y37{bottom:330.239868px;}
.y16a{bottom:337.259865px;}
.y6d{bottom:337.619865px;}
.y113{bottom:339.419864px;}
.y142{bottom:342.299863px;}
.ye7{bottom:348.059861px;}
.ya0{bottom:351.479859px;}
.y36{bottom:353.279859px;}
.y169{bottom:360.299856px;}
.y6c{bottom:360.659856px;}
.y112{bottom:362.459855px;}
.y141{bottom:366.059854px;}
.ye6{bottom:371.099852px;}
.y9f{bottom:374.519850px;}
.y35{bottom:376.319849px;}
.y168{bottom:383.339847px;}
.y6b{bottom:383.699847px;}
.y111{bottom:385.499846px;}
.y140{bottom:389.819844px;}
.ye5{bottom:394.139842px;}
.y9e{bottom:397.379841px;}
.y34{bottom:399.179840px;}
.y167{bottom:406.379837px;}
.y6a{bottom:406.739837px;}
.y110{bottom:408.539837px;}
.y13f{bottom:411.059836px;}
.ye4{bottom:417.179833px;}
.y9d{bottom:420.419832px;}
.y33{bottom:422.219831px;}
.y166{bottom:429.419828px;}
.y69{bottom:429.599828px;}
.y10f{bottom:431.579827px;}
.y13e{bottom:432.119827px;}
.ye3{bottom:440.039824px;}
.y9c{bottom:443.459823px;}
.y32{bottom:445.259822px;}
.y165{bottom:452.279819px;}
.y68{bottom:452.639819px;}
.y10e{bottom:454.439818px;}
.y13d{bottom:455.879818px;}
.ye2{bottom:463.079815px;}
.y9b{bottom:466.499813px;}
.y31{bottom:468.299813px;}
.y164{bottom:475.319810px;}
.y67{bottom:475.679810px;}
.y10d{bottom:477.479809px;}
.y13c{bottom:479.639808px;}
.ye1{bottom:486.119806px;}
.y9a{bottom:489.539804px;}
.y30{bottom:491.339803px;}
.y163{bottom:498.359801px;}
.y66{bottom:498.719801px;}
.y10c{bottom:500.519800px;}
.y13b{bottom:503.399799px;}
.ye0{bottom:509.159796px;}
.y99{bottom:512.579795px;}
.y2f{bottom:514.379794px;}
.y162{bottom:521.399791px;}
.y65{bottom:521.759791px;}
.y10b{bottom:523.559791px;}
.y13a{bottom:527.159789px;}
.ydf{bottom:532.199787px;}
.y98{bottom:535.439786px;}
.y2e{bottom:537.239785px;}
.y161{bottom:544.439782px;}
.y64{bottom:544.799782px;}
.y10a{bottom:546.599781px;}
.y139{bottom:551.099780px;}
.yde{bottom:555.059778px;}
.y97{bottom:558.479777px;}
.y2d{bottom:560.279776px;}
.y160{bottom:567.479773px;}
.y63{bottom:567.659773px;}
.y109{bottom:569.639772px;}
.y138{bottom:574.859770px;}
.ydd{bottom:578.099769px;}
.y96{bottom:581.519767px;}
.y2c{bottom:583.319767px;}
.y15f{bottom:590.339764px;}
.y62{bottom:590.699764px;}
.y108{bottom:592.499763px;}
.y137{bottom:598.619761px;}
.ydc{bottom:601.139760px;}
.y95{bottom:604.559758px;}
.y2b{bottom:606.359757px;}
.y15e{bottom:613.379755px;}
.y61{bottom:613.739755px;}
.y107{bottom:615.539754px;}
.y136{bottom:621.119752px;}
.ydb{bottom:624.179750px;}
.y29{bottom:626.340600px;}
.y94{bottom:627.599749px;}
.y15d{bottom:636.419745px;}
.y60{bottom:636.779745px;}
.y106{bottom:638.579745px;}
.y135{bottom:643.439743px;}
.yda{bottom:647.219741px;}
.y93{bottom:650.639740px;}
.y26{bottom:654.420600px;}
.y28{bottom:657.839737px;}
.y15c{bottom:659.459736px;}
.y5f{bottom:659.819736px;}
.y105{bottom:661.619735px;}
.y134{bottom:667.199733px;}
.yd9{bottom:670.259732px;}
.y92{bottom:673.499731px;}
.y15b{bottom:682.499727px;}
.y5e{bottom:682.679727px;}
.yd6{bottom:684.480600px;}
.y104{bottom:684.659726px;}
.yd8{bottom:686.819725px;}
.y24{bottom:690.600600px;}
.y133{bottom:690.959724px;}
.y23{bottom:695.459722px;}
.y91{bottom:696.539721px;}
.yd4{bottom:701.040600px;}
.y15a{bottom:705.539718px;}
.y5d{bottom:705.719718px;}
.y103{bottom:707.699717px;}
.y132{bottom:714.719714px;}
.yd2{bottom:717.420600px;}
.y90{bottom:719.579712px;}
.y159{bottom:728.399709px;}
.y5c{bottom:728.759708px;}
.y102{bottom:730.559708px;}
.y8e{bottom:733.980600px;}
.y21{bottom:735.060600px;}
.y8f{bottom:736.319705px;}
.y1f{bottom:736.320600px;}
.y131{bottom:738.659705px;}
.yd1{bottom:740.819704px;}
.y100{bottom:744.960600px;}
.y8c{bottom:750.360600px;}
.y158{bottom:751.439699px;}
.y5b{bottom:751.799699px;}
.y1e{bottom:755.579698px;}
.yd0{bottom:757.199697px;}
.yfe{bottom:761.520600px;}
.y130{bottom:762.419695px;}
.y8a{bottom:766.920600px;}
.ycf{bottom:773.759690px;}
.y157{bottom:774.479690px;}
.y5a{bottom:774.839690px;}
.yfc{bottom:777.900600px;}
.y87{bottom:783.300600px;}
.y12f{bottom:786.179686px;}
.y1d{bottom:789.599684px;}
.y89{bottom:790.139684px;}
.yfa{bottom:794.280600px;}
.y156{bottom:797.519681px;}
.y59{bottom:797.879681px;}
.y84{bottom:799.860600px;}
.y86{bottom:806.699677px;}
.y1b{bottom:809.400600px;}
.y12e{bottom:809.939676px;}
.yf8{bottom:810.840600px;}
.y81{bottom:816.240600px;}
.yce{bottom:817.320600px;}
.y1a{bottom:820.199672px;}
.y155{bottom:820.559672px;}
.y58{bottom:820.739672px;}
.y83{bottom:823.079671px;}
.yf6{bottom:827.220600px;}
.y19{bottom:832.079667px;}
.y7e{bottom:832.800600px;}
.y12d{bottom:833.699667px;}
.y80{bottom:839.639664px;}
.y154{bottom:843.599663px;}
.y57{bottom:843.779662px;}
.yf4{bottom:843.780600px;}
.ycd{bottom:845.939662px;}
.y7b{bottom:849.180600px;}
.y16{bottom:854.760600px;}
.y7d{bottom:856.019658px;}
.y12c{bottom:857.459657px;}
.yf2{bottom:861.420600px;}
.y18{bottom:864.839654px;}
.y153{bottom:866.459653px;}
.y56{bottom:866.819653px;}
.y79{bottom:866.820600px;}
.ycc{bottom:868.799652px;}
.y14{bottom:874.920600px;}
.y12b{bottom:881.219648px;}
.y77{bottom:884.280600px;}
.ycb{bottom:889.319644px;}
.y152{bottom:889.499644px;}
.y55{bottom:889.859644px;}
.y183{bottom:897.599641px;}
.y12a{bottom:904.979638px;}
.yca{bottom:908.039637px;}
.y13{bottom:908.579637px;}
.y151{bottom:912.539635px;}
.y54{bottom:912.899635px;}
.y17b{bottom:921.899631px;}
.y129{bottom:928.739629px;}
.yc9{bottom:929.459628px;}
.y150{bottom:935.579626px;}
.y53{bottom:935.939626px;}
.yc6{bottom:944.040600px;}
.yc8{bottom:946.379621px;}
.y11{bottom:949.259548px;}
.y12{bottom:949.259620px;}
.y182{bottom:949.619620px;}
.y128{bottom:952.499619px;}
.y14f{bottom:958.619617px;}
.y52{bottom:958.799616px;}
.yc4{bottom:960.600600px;}
.y17a{bottom:971.039612px;}
.y127{bottom:976.259609px;}
.yc2{bottom:976.980600px;}
.y14e{bottom:981.479607px;}
.y51{bottom:981.839607px;}
.y10{bottom:990.119604px;}
.y181{bottom:992.459603px;}
.ybf{bottom:993.540600px;}
.y179{bottom:995.519602px;}
.y126{bottom:1000.019600px;}
.yc1{bottom:1000.379600px;}
.y14d{bottom:1004.519598px;}
.y50{bottom:1004.879598px;}
.ybc{bottom:1009.920600px;}
.yf{bottom:1013.519595px;}
.y180{bottom:1013.879594px;}
.ybe{bottom:1016.759593px;}
.y178{bottom:1019.999592px;}
.y125{bottom:1023.959590px;}
.yb9{bottom:1026.480600px;}
.y14c{bottom:1027.739589px;}
.y4f{bottom:1027.919589px;}
.ye{bottom:1029.899588px;}
.yd{bottom:1030.259588px;}
.ybb{bottom:1033.319587px;}
.y17f{bottom:1035.299586px;}
.yb6{bottom:1042.860600px;}
.y177{bottom:1044.659582px;}
.y124{bottom:1047.719581px;}
.yb8{bottom:1049.699580px;}
.y4e{bottom:1050.959580px;}
.y17e{bottom:1056.899577px;}
.yb3{bottom:1059.240600px;}
.yb5{bottom:1066.079574px;}
.y176{bottom:1069.139572px;}
.y123{bottom:1071.479571px;}
.y48{bottom:1073.280600px;}
.y4d{bottom:1073.999570px;}
.yb0{bottom:1076.880600px;}
.y17d{bottom:1078.319569px;}
.yb2{bottom:1079.219568px;}
.y47{bottom:1082.279567px;}
.y175{bottom:1093.619563px;}
.yae{bottom:1094.520600px;}
.y122{bottom:1095.239562px;}
.y4c{bottom:1096.859561px;}
.y17c{bottom:1099.739560px;}
.y46{bottom:1103.519559px;}
.y174{bottom:1118.279553px;}
.y121{bottom:1118.999552px;}
.y4b{bottom:1119.899552px;}
.yad{bottom:1121.339551px;}
.y45{bottom:1124.939550px;}
.yc{bottom:1127.099549px;}
.yb{bottom:1127.459549px;}
.y9{bottom:1134.300600px;}
.yac{bottom:1142.759543px;}
.y4a{bottom:1142.939543px;}
.y43{bottom:1145.280600px;}
.y42{bottom:1149.059540px;}
.y1{bottom:1192.799523px;}
.y7{bottom:1195.860600px;}
.h26{height:2.880000px;}
.hb{height:8.187887px;}
.he{height:13.500000px;}
.h19{height:15.120000px;}
.h28{height:15.300000px;}
.h20{height:15.894134px;}
.h1b{height:16.380000px;}
.h1e{height:17.100000px;}
.h10{height:20.160000px;}
.h15{height:20.340000px;}
.h2{height:20.520000px;}
.h7{height:20.700000px;}
.h4{height:20.880000px;}
.h24{height:21.780000px;}
.h14{height:22.171632px;}
.h17{height:24.439209px;}
.h21{height:25.913662px;}
.h12{height:26.008583px;}
.h29{height:27.228505px;}
.h2a{height:31.585065px;}
.hf{height:32.269909px;}
.h1d{height:33.588971px;}
.h2b{height:36.486196px;}
.h13{height:36.886626px;}
.h18{height:40.005336px;}
.h1a{height:40.842757px;}
.h25{height:41.290999px;}
.h22{height:43.185920px;}
.h1f{height:45.199318px;}
.h8{height:47.988262px;}
.h11{height:48.164043px;}
.h16{height:48.199199px;}
.h27{height:49.907793px;}
.h1c{height:50.132792px;}
.ha{height:54.457009px;}
.h23{height:55.054665px;}
.h5{height:56.351931px;}
.hc{height:64.058178px;}
.hd{height:67.696970px;}
.h1{height:70.664034px;}
.h3{height:72.562471px;}
.h9{height:78.468719px;}
.h6{height:84.898091px;}
.h0{height:1263.000000px;}
.w21{width:1.260000px;}
.w1c{width:1.800000px;}
.we{width:4.500000px;}
.w26{width:5.040000px;}
.w59{width:6.300000px;}
.w1{width:6.480000px;}
.w11{width:7.740000px;}
.w7{width:8.280000px;}
.w12{width:8.820000px;}
.w17{width:9.900000px;}
.w16{width:10.620000px;}
.w5{width:11.160000px;}
.w6{width:11.340000px;}
.wa{width:12.420000px;}
.w42{width:12.780000px;}
.wc{width:12.960000px;}
.w4d{width:13.320000px;}
.w3{width:16.020000px;}
.w1e{width:17.100000px;}
.w1b{width:17.280000px;}
.w41{width:18.000000px;}
.w35{width:23.760000px;}
.w65{width:23.940000px;}
.w45{width:24.120000px;}
.w44{width:24.300000px;}
.w20{width:24.480000px;}
.w5a{width:24.840000px;}
.w3b{width:25.020000px;}
.w62{width:25.200000px;}
.w4a{width:25.380000px;}
.w5b{width:25.560000px;}
.w49{width:25.740000px;}
.w47{width:25.920000px;}
.w68{width:26.100000px;}
.w46{width:26.280000px;}
.w6a{width:26.460000px;}
.w31{width:26.640000px;}
.w2c{width:27.000000px;}
.w64{width:27.180000px;}
.w6b{width:27.720000px;}
.w48{width:27.900000px;}
.w5c{width:31.320000px;}
.w67{width:31.680000px;}
.w69{width:31.860000px;}
.w61{width:32.220000px;}
.w60{width:32.400000px;}
.w63{width:32.760000px;}
.w4{width:33.480000px;}
.w1d{width:33.660000px;}
.w1f{width:33.840000px;}
.w5d{width:34.020000px;}
.w53{width:34.560000px;}
.w3e{width:34.920000px;}
.w57{width:36.540000px;}
.w50{width:38.160000px;}
.w52{width:38.880000px;}
.w54{width:39.060000px;}
.w4e{width:39.240000px;}
.w58{width:39.420000px;}
.w19{width:39.600000px;}
.w3d{width:40.140000px;}
.w2e{width:40.500000px;}
.w56{width:40.680000px;}
.w4f{width:40.860000px;}
.w51{width:41.040000px;}
.w33{width:41.580000px;}
.w37{width:41.940000px;}
.w22{width:42.480000px;}
.w28{width:42.660000px;}
.w1a{width:43.020000px;}
.w38{width:43.200000px;}
.w55{width:43.380000px;}
.w29{width:43.740000px;}
.w24{width:44.100000px;}
.w23{width:44.280000px;}
.w3f{width:45.720000px;}
.w39{width:45.900000px;}
.w2a{width:46.440000px;}
.w3a{width:46.620000px;}
.w2b{width:46.980000px;}
.w4b{width:47.160000px;}
.w2f{width:47.520000px;}
.w30{width:47.700000px;}
.w27{width:47.880000px;}
.w34{width:48.240000px;}
.w18{width:63.000000px;}
.w13{width:65.700000px;}
.w66{width:68.940000px;}
.w5e{width:72.000000px;}
.w25{width:76.320000px;}
.wd{width:77.940000px;}
.w5f{width:104.040000px;}
.w4c{width:107.460000px;}
.w2{width:119.700000px;}
.w40{width:122.220000px;}
.w10{width:124.740000px;}
.w8{width:134.280000px;}
.w32{width:149.940000px;}
.w9{width:152.280000px;}
.w3c{width:155.700000px;}
.w36{width:156.960000px;}
.w43{width:163.080000px;}
.w15{width:175.320000px;}
.w2d{width:190.980000px;}
.wf{width:333.900000px;}
.wb{width:419.400000px;}
.w14{width:500.400000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x1e{left:109.259956px;}
.x27{left:113.400000px;}
.x31{left:116.459953px;}
.x5{left:120.240000px;}
.x2{left:128.699878px;}
.x6b{left:133.739947px;}
.x6c{left:146.520000px;}
.x3{left:155.700000px;}
.x4{left:171.899931px;}
.x30{left:174.599930px;}
.xa{left:185.219926px;}
.x29{left:187.200000px;}
.x44{left:189.360000px;}
.x2a{left:191.700000px;}
.x5a{left:230.220000px;}
.x45{left:237.240000px;}
.x6{left:239.940000px;}
.x23{left:243.539903px;}
.x20{left:246.599901px;}
.x24{left:253.620000px;}
.x52{left:257.940000px;}
.xb{left:259.740316px;}
.x56{left:263.700000px;}
.x55{left:264.960000px;}
.x64{left:271.080000px;}
.x4e{left:298.980000px;}
.x33{left:342.539863px;}
.x46{left:371.520000px;}
.x4f{left:372.600000px;}
.x65{left:380.700000px;}
.x38{left:382.500000px;}
.x5b{left:383.940000px;}
.x6d{left:392.940000px;}
.x5c{left:401.940000px;}
.x25{left:405.899838px;}
.x74{left:408.960000px;}
.x26{left:410.940000px;}
.x50{left:413.100000px;}
.x47{left:414.180000px;}
.x95{left:417.240000px;}
.x8f{left:420.300000px;}
.x75{left:422.099831px;}
.x39{left:425.520000px;}
.xc{left:427.680106px;}
.x99{left:429.300000px;}
.x76{left:430.920000px;}
.xd{left:432.180102px;}
.x35{left:435.959826px;}
.x90{left:438.300000px;}
.x96{left:441.360000px;}
.x3a{left:442.800000px;}
.x77{left:444.059822px;}
.x2d{left:448.920000px;}
.x85{left:450.540000px;}
.xa4{left:451.620000px;}
.xaa{left:453.240000px;}
.xac{left:454.320000px;}
.xb2{left:457.200000px;}
.x41{left:459.720000px;}
.x32{left:462.600512px;}
.x66{left:468.900000px;}
.x5d{left:471.960000px;}
.x9f{left:473.939810px;}
.xb3{left:475.200000px;}
.xa5{left:477.359809px;}
.xad{left:479.160000px;}
.x6e{left:480.960000px;}
.xa0{left:483.660000px;}
.x5e{left:489.960000px;}
.x67{left:493.020000px;}
.x73{left:495.000000px;}
.x57{left:498.420000px;}
.x42{left:502.200000px;}
.xae{left:505.620000px;}
.x9c{left:507.600000px;}
.x8d{left:508.680000px;}
.x78{left:510.120000px;}
.x88{left:511.200000px;}
.x2e{left:513.179795px;}
.x3b{left:514.980000px;}
.xe{left:516.060050px;}
.x97{left:517.860000px;}
.x91{left:521.280000px;}
.x79{left:523.259791px;}
.x2b{left:525.600000px;}
.x7a{left:528.300000px;}
.xf{left:529.380042px;}
.x51{left:531.000000px;}
.x28{left:532.260000px;}
.x7b{left:533.340000px;}
.x37{left:536.939785px;}
.x92{left:539.280000px;}
.x68{left:541.620000px;}
.x10{left:542.700033px;}
.x5f{left:545.760000px;}
.x3c{left:548.640000px;}
.x7c{left:550.440000px;}
.x8e{left:552.060000px;}
.x6f{left:554.760000px;}
.x11{left:564.659960px;}
.x69{left:567.900000px;}
.x12{left:569.159957px;}
.x43{left:576.900000px;}
.x48{left:577.980000px;}
.x13{left:582.479948px;}
.x36{left:589.679764px;}
.x3d{left:591.660000px;}
.xb0{left:594.180000px;}
.x14{left:595.619941px;}
.x21{left:597.599761px;}
.xb4{left:599.040000px;}
.x15{left:608.939932px;}
.x7d{left:610.560000px;}
.x49{left:612.180000px;}
.x16{left:613.439928px;}
.x9a{left:614.520000px;}
.x9d{left:616.860000px;}
.x98{left:618.480000px;}
.xaf{left:621.180000px;}
.x6a{left:622.620000px;}
.x7e{left:623.699751px;}
.x60{left:626.580000px;}
.x1f{left:629.459748px;}
.x17{left:631.079858px;}
.x7f{left:633.780000px;}
.x18{left:635.399856px;}
.x93{left:640.260000px;}
.x61{left:644.580000px;}
.x80{left:646.919741px;}
.x19{left:648.719847px;}
.x2c{left:650.340000px;}
.x81{left:651.960000px;}
.x1a{left:653.039845px;}
.xa1{left:655.920000px;}
.x1b{left:657.539841px;}
.x4a{left:659.160000px;}
.xab{left:664.380000px;}
.x1c{left:666.359733px;}
.xa8{left:671.220000px;}
.x3e{left:680.400000px;}
.xa9{left:684.000000px;}
.xa2{left:689.579724px;}
.xa6{left:691.379723px;}
.xa7{left:696.060000px;}
.x7{left:697.320000px;}
.xa3{left:699.120000px;}
.x86{left:708.480000px;}
.xb1{left:709.560000px;}
.x8b{left:710.640000px;}
.x82{left:711.720000px;}
.x4b{left:712.800000px;}
.x3f{left:714.240000px;}
.x9b{left:715.500000px;}
.x53{left:716.940000px;}
.x70{left:718.380000px;}
.x9e{left:720.900000px;}
.x62{left:724.680000px;}
.x94{left:729.360000px;}
.x8{left:730.800000px;}
.x83{left:734.940000px;}
.xb5{left:736.020000px;}
.x63{left:737.460000px;}
.x58{left:738.715205px;}
.x4c{left:739.799704px;}
.x9{left:741.960000px;}
.x71{left:743.760000px;}
.x54{left:745.200000px;}
.x59{left:748.080000px;}
.x4d{left:749.340000px;}
.x89{left:750.419700px;}
.x87{left:751.499699px;}
.x84{left:753.120000px;}
.x8c{left:754.380000px;}
.x8a{left:755.460000px;}
.x40{left:757.260000px;}
.x22{left:760.859696px;}
.x72{left:768.239693px;}
.x34{left:779.580000px;}
.x2f{left:781.559687px;}
.x1d{left:783.539686px;}
@media print{
.v1{vertical-align:-21.119992pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.559999pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009381pt;}
.ls0{letter-spacing:0.018878pt;}
.ls5{letter-spacing:0.025173pt;}
.ls6{letter-spacing:0.064533pt;}
.ls3{letter-spacing:0.064960pt;}
.ls7{letter-spacing:0.097280pt;}
.ls2{letter-spacing:0.303046pt;}
.ls9{letter-spacing:0.943786pt;}
.ls8{letter-spacing:1.584159pt;}
.ws1{word-spacing:-19.918072pt;}
.ws0{word-spacing:-16.018872pt;}
.ws3{word-spacing:-15.999994pt;}
.ws4{word-spacing:-13.492475pt;}
.ws8{word-spacing:-12.191995pt;}
.ws6{word-spacing:-11.567995pt;}
.ws2{word-spacing:-9.192956pt;}
.ws7{word-spacing:-7.711997pt;}
.ws5{word-spacing:0.000000pt;}
._4{margin-left:-596.162746pt;}
._3{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;}
._2{margin-left:-22.719255pt;}
._5{margin-left:-14.719290pt;}
._30{margin-left:-2.216152pt;}
._1{margin-left:-1.055625pt;}
._0{width:1.035418pt;}
._11{width:2.469618pt;}
._12{width:3.518243pt;}
._13{width:4.755645pt;}
._f{width:6.451644pt;}
._15{width:8.019459pt;}
._16{width:9.268535pt;}
._1b{width:10.227474pt;}
._10{width:12.566156pt;}
._14{width:13.971736pt;}
._1a{width:15.029049pt;}
._d{width:16.804783pt;}
._e{width:18.164359pt;}
._3f{width:19.096706pt;}
._26{width:19.994131pt;}
._17{width:21.408260pt;}
._18{width:22.391414pt;}
._2d{width:23.492399pt;}
._c{width:24.694709pt;}
._32{width:25.789107pt;}
._1e{width:26.879030pt;}
._19{width:27.808940pt;}
._29{width:28.929067pt;}
._3e{width:29.972910pt;}
._25{width:30.901468pt;}
._2e{width:32.540564pt;}
._36{width:33.701138pt;}
._35{width:34.696293pt;}
._34{width:35.984573pt;}
._2a{width:36.908640pt;}
._1c{width:38.665684pt;}
._1d{width:39.607393pt;}
._4a{width:40.654147pt;}
._33{width:41.820379pt;}
._2b{width:43.582766pt;}
._2c{width:44.710716pt;}
._38{width:46.409096pt;}
._37{width:48.012565pt;}
._31{width:49.248527pt;}
._39{width:50.144414pt;}
._22{width:51.052715pt;}
._27{width:54.427294pt;}
._28{width:55.573351pt;}
._47{width:58.144031pt;}
._21{width:59.250286pt;}
._3d{width:60.172408pt;}
._3b{width:64.197877pt;}
._3a{width:65.347282pt;}
._44{width:67.585632pt;}
._23{width:71.939917pt;}
._24{width:73.268991pt;}
._2f{width:78.683406pt;}
._48{width:80.315722pt;}
._49{width:81.250652pt;}
._3c{width:82.243423pt;}
._45{width:101.671077pt;}
._46{width:102.574999pt;}
._1f{width:109.669327pt;}
._20{width:110.704872pt;}
._43{width:139.358113pt;}
._42{width:141.061277pt;}
._40{width:185.106054pt;}
._41{width:186.536827pt;}
.fsc{font-size:8.319997pt;}
.fs3{font-size:10.879996pt;}
.fsb{font-size:21.119992pt;}
.fs8{font-size:29.439988pt;}
.fse{font-size:31.999987pt;}
.fs7{font-size:34.559986pt;}
.fsf{font-size:37.119985pt;}
.fs6{font-size:42.879983pt;}
.fsa{font-size:47.999981pt;}
.fs9{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;}
.y49{bottom:-13.920909pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:2.559040pt;}
.yaf{bottom:2.719076pt;}
.yb1{bottom:2.719083pt;}
.yb4{bottom:2.719089pt;}
.yb7{bottom:2.719095pt;}
.yba{bottom:2.719101pt;}
.ybd{bottom:2.719106pt;}
.yc0{bottom:2.719112pt;}
.yc3{bottom:2.719118pt;}
.yc5{bottom:2.719124pt;}
.yc7{bottom:2.719130pt;}
.y78{bottom:2.719151pt;}
.y7a{bottom:2.719157pt;}
.yf3{bottom:2.719159pt;}
.y7c{bottom:2.719164pt;}
.yf5{bottom:2.719166pt;}
.y7f{bottom:2.719169pt;}
.yf7{bottom:2.719171pt;}
.y82{bottom:2.719175pt;}
.yf9{bottom:2.719177pt;}
.y85{bottom:2.719181pt;}
.yfb{bottom:2.719183pt;}
.y88{bottom:2.719187pt;}
.yfd{bottom:2.719189pt;}
.y8b{bottom:2.719193pt;}
.yff{bottom:2.719195pt;}
.y8d{bottom:2.719199pt;}
.y101{bottom:2.719201pt;}
.y20{bottom:2.719204pt;}
.yd3{bottom:2.719210pt;}
.yd5{bottom:2.719216pt;}
.yd7{bottom:2.719222pt;}
.y2a{bottom:2.719243pt;}
.y15{bottom:2.879154pt;}
.y27{bottom:3.039233pt;}
.y44{bottom:3.359058pt;}
.ya{bottom:3.679062pt;}
.y22{bottom:3.839204pt;}
.y4{bottom:3.840025pt;}
.y17{bottom:4.319161pt;}
.y1c{bottom:4.319177pt;}
.y25{bottom:4.319219pt;}
.y6{bottom:52.106912pt;}
.y3{bottom:66.666880pt;}
.y5{bottom:70.186905pt;}
.y2{bottom:70.506638pt;}
.yf1{bottom:104.906625pt;}
.yaa{bottom:107.946623pt;}
.y14b{bottom:114.186621pt;}
.y41{bottom:114.506621pt;}
.y120{bottom:115.466620pt;}
.y173{bottom:115.786620pt;}
.y76{bottom:116.106620pt;}
.y11c{bottom:117.706620pt;}
.yf0{bottom:125.386617pt;}
.ya9{bottom:128.266615pt;}
.y40{bottom:134.826613pt;}
.y14a{bottom:135.146613pt;}
.y172{bottom:136.266612pt;}
.y75{bottom:136.426612pt;}
.y11f{bottom:136.586612pt;}
.y11b{bottom:138.186611pt;}
.yef{bottom:145.706608pt;}
.ya8{bottom:148.746607pt;}
.y3f{bottom:155.306605pt;}
.y149{bottom:156.266604pt;}
.y171{bottom:156.746604pt;}
.y74{bottom:156.906604pt;}
.y11e{bottom:157.706604pt;}
.y11a{bottom:158.666603pt;}
.yee{bottom:166.186600pt;}
.ya7{bottom:169.226599pt;}
.yab{bottom:172.586598pt;}
.y3e{bottom:175.786596pt;}
.y170{bottom:177.066596pt;}
.y73{bottom:177.386596pt;}
.y148{bottom:177.546596pt;}
.y11d{bottom:178.826595pt;}
.y119{bottom:178.986595pt;}
.yed{bottom:186.666592pt;}
.ya6{bottom:189.706591pt;}
.y3d{bottom:196.266588pt;}
.y16f{bottom:197.546588pt;}
.y72{bottom:197.866588pt;}
.y147{bottom:198.666587pt;}
.y118{bottom:199.466587pt;}
.yec{bottom:207.146584pt;}
.ya5{bottom:210.186583pt;}
.y3c{bottom:216.746580pt;}
.y16e{bottom:218.026579pt;}
.y71{bottom:218.346579pt;}
.y146{bottom:219.786579pt;}
.y117{bottom:219.946579pt;}
.yeb{bottom:227.626576pt;}
.ya4{bottom:230.506574pt;}
.y3b{bottom:237.066572pt;}
.y16d{bottom:238.506571pt;}
.y70{bottom:238.826571pt;}
.y116{bottom:240.426570pt;}
.y145{bottom:240.906570pt;}
.yea{bottom:248.106567pt;}
.ya3{bottom:250.986566pt;}
.y3a{bottom:251.466566pt;}
.y39{bottom:254.826565pt;}
.y16c{bottom:258.986563pt;}
.y6f{bottom:259.146563pt;}
.y115{bottom:260.906562pt;}
.y144{bottom:262.026562pt;}
.ye9{bottom:268.426559pt;}
.ya2{bottom:271.466558pt;}
.y38{bottom:273.066557pt;}
.y16b{bottom:279.466555pt;}
.y6e{bottom:279.626555pt;}
.y114{bottom:281.226554pt;}
.y143{bottom:283.146553pt;}
.ye8{bottom:288.906551pt;}
.ya1{bottom:291.946550pt;}
.y37{bottom:293.546549pt;}
.y16a{bottom:299.786547pt;}
.y6d{bottom:300.106547pt;}
.y113{bottom:301.706546pt;}
.y142{bottom:304.266545pt;}
.ye7{bottom:309.386543pt;}
.ya0{bottom:312.426542pt;}
.y36{bottom:314.026541pt;}
.y169{bottom:320.266539pt;}
.y6c{bottom:320.586538pt;}
.y112{bottom:322.186538pt;}
.y141{bottom:325.386537pt;}
.ye6{bottom:329.866535pt;}
.y9f{bottom:332.906534pt;}
.y35{bottom:334.506533pt;}
.y168{bottom:340.746530pt;}
.y6b{bottom:341.066530pt;}
.y111{bottom:342.666530pt;}
.y140{bottom:346.506528pt;}
.ye5{bottom:350.346527pt;}
.y9e{bottom:353.226525pt;}
.y34{bottom:354.826525pt;}
.y167{bottom:361.226522pt;}
.y6a{bottom:361.546522pt;}
.y110{bottom:363.146521pt;}
.y13f{bottom:365.386521pt;}
.ye4{bottom:370.826518pt;}
.y9d{bottom:373.706517pt;}
.y33{bottom:375.306517pt;}
.y166{bottom:381.706514pt;}
.y69{bottom:381.866514pt;}
.y10f{bottom:383.626513pt;}
.y13e{bottom:384.106513pt;}
.ye3{bottom:391.146510pt;}
.y9c{bottom:394.186509pt;}
.y32{bottom:395.786508pt;}
.y165{bottom:402.026506pt;}
.y68{bottom:402.346506pt;}
.y10e{bottom:403.946505pt;}
.y13d{bottom:405.226505pt;}
.ye2{bottom:411.626502pt;}
.y9b{bottom:414.666501pt;}
.y31{bottom:416.266500pt;}
.y164{bottom:422.506498pt;}
.y67{bottom:422.826498pt;}
.y10d{bottom:424.426497pt;}
.y13c{bottom:426.346496pt;}
.ye1{bottom:432.106494pt;}
.y9a{bottom:435.146493pt;}
.y30{bottom:436.746492pt;}
.y163{bottom:442.986489pt;}
.y66{bottom:443.306489pt;}
.y10c{bottom:444.906489pt;}
.y13b{bottom:447.466488pt;}
.ye0{bottom:452.586486pt;}
.y99{bottom:455.626484pt;}
.y2f{bottom:457.226484pt;}
.y162{bottom:463.466481pt;}
.y65{bottom:463.786481pt;}
.y10b{bottom:465.386481pt;}
.y13a{bottom:468.586479pt;}
.ydf{bottom:473.066477pt;}
.y98{bottom:475.946476pt;}
.y2e{bottom:477.546476pt;}
.y161{bottom:483.946473pt;}
.y64{bottom:484.266473pt;}
.y10a{bottom:485.866472pt;}
.y139{bottom:489.866471pt;}
.yde{bottom:493.386469pt;}
.y97{bottom:496.426468pt;}
.y2d{bottom:498.026467pt;}
.y160{bottom:504.426465pt;}
.y63{bottom:504.586465pt;}
.y109{bottom:506.346464pt;}
.y138{bottom:510.986462pt;}
.ydd{bottom:513.866461pt;}
.y96{bottom:516.906460pt;}
.y2c{bottom:518.506459pt;}
.y15f{bottom:524.746457pt;}
.y62{bottom:525.066457pt;}
.y108{bottom:526.666456pt;}
.y137{bottom:532.106454pt;}
.ydc{bottom:534.346453pt;}
.y95{bottom:537.386452pt;}
.y2b{bottom:538.986451pt;}
.y15e{bottom:545.226449pt;}
.y61{bottom:545.546448pt;}
.y107{bottom:547.146448pt;}
.y136{bottom:552.106446pt;}
.ydb{bottom:554.826445pt;}
.y29{bottom:556.747200pt;}
.y94{bottom:557.866444pt;}
.y15d{bottom:565.706440pt;}
.y60{bottom:566.026440pt;}
.y106{bottom:567.626440pt;}
.y135{bottom:571.946438pt;}
.yda{bottom:575.306437pt;}
.y93{bottom:578.346435pt;}
.y26{bottom:581.707200pt;}
.y28{bottom:584.746433pt;}
.y15c{bottom:586.186432pt;}
.y5f{bottom:586.506432pt;}
.y105{bottom:588.106431pt;}
.y134{bottom:593.066429pt;}
.yd9{bottom:595.786428pt;}
.y92{bottom:598.666427pt;}
.y15b{bottom:606.666424pt;}
.y5e{bottom:606.826424pt;}
.yd6{bottom:608.427200pt;}
.y104{bottom:608.586423pt;}
.yd8{bottom:610.506422pt;}
.y24{bottom:613.867200pt;}
.y133{bottom:614.186421pt;}
.y23{bottom:618.186419pt;}
.y91{bottom:619.146419pt;}
.yd4{bottom:623.147200pt;}
.y15a{bottom:627.146416pt;}
.y5d{bottom:627.306416pt;}
.y103{bottom:629.066415pt;}
.y132{bottom:635.306413pt;}
.yd2{bottom:637.707200pt;}
.y90{bottom:639.626411pt;}
.y159{bottom:647.466408pt;}
.y5c{bottom:647.786408pt;}
.y102{bottom:649.386407pt;}
.y8e{bottom:652.427200pt;}
.y21{bottom:653.387200pt;}
.y8f{bottom:654.506405pt;}
.y1f{bottom:654.507200pt;}
.y131{bottom:656.586404pt;}
.yd1{bottom:658.506403pt;}
.y100{bottom:662.187200pt;}
.y8c{bottom:666.987200pt;}
.y158{bottom:667.946399pt;}
.y5b{bottom:668.266399pt;}
.y1e{bottom:671.626398pt;}
.yd0{bottom:673.066397pt;}
.yfe{bottom:676.907200pt;}
.y130{bottom:677.706396pt;}
.y8a{bottom:681.707200pt;}
.ycf{bottom:687.786392pt;}
.y157{bottom:688.426391pt;}
.y5a{bottom:688.746391pt;}
.yfc{bottom:691.467200pt;}
.y87{bottom:696.267200pt;}
.y12f{bottom:698.826387pt;}
.y1d{bottom:701.866386pt;}
.y89{bottom:702.346386pt;}
.yfa{bottom:706.027200pt;}
.y156{bottom:708.906383pt;}
.y59{bottom:709.226383pt;}
.y84{bottom:710.987200pt;}
.y86{bottom:717.066380pt;}
.y1b{bottom:719.467200pt;}
.y12e{bottom:719.946379pt;}
.yf8{bottom:720.747200pt;}
.y81{bottom:725.547200pt;}
.yce{bottom:726.507200pt;}
.y1a{bottom:729.066375pt;}
.y155{bottom:729.386375pt;}
.y58{bottom:729.546375pt;}
.y83{bottom:731.626374pt;}
.yf6{bottom:735.307200pt;}
.y19{bottom:739.626371pt;}
.y7e{bottom:740.267200pt;}
.y12d{bottom:741.066370pt;}
.y80{bottom:746.346368pt;}
.y154{bottom:749.866367pt;}
.y57{bottom:750.026367pt;}
.yf4{bottom:750.027200pt;}
.ycd{bottom:751.946366pt;}
.y7b{bottom:754.827200pt;}
.y16{bottom:759.787200pt;}
.y7d{bottom:760.906362pt;}
.y12c{bottom:762.186362pt;}
.yf2{bottom:765.707200pt;}
.y18{bottom:768.746359pt;}
.y153{bottom:770.186359pt;}
.y56{bottom:770.506358pt;}
.y79{bottom:770.507200pt;}
.ycc{bottom:772.266358pt;}
.y14{bottom:777.707200pt;}
.y12b{bottom:783.306353pt;}
.y77{bottom:786.027200pt;}
.ycb{bottom:790.506350pt;}
.y152{bottom:790.666350pt;}
.y55{bottom:790.986350pt;}
.y183{bottom:797.866348pt;}
.y12a{bottom:804.426345pt;}
.yca{bottom:807.146344pt;}
.y13{bottom:807.626344pt;}
.y151{bottom:811.146342pt;}
.y54{bottom:811.466342pt;}
.y17b{bottom:819.466339pt;}
.y129{bottom:825.546336pt;}
.yc9{bottom:826.186336pt;}
.y150{bottom:831.626334pt;}
.y53{bottom:831.946334pt;}
.yc6{bottom:839.147200pt;}
.yc8{bottom:841.226330pt;}
.y11{bottom:843.786265pt;}
.y12{bottom:843.786329pt;}
.y182{bottom:844.106329pt;}
.y128{bottom:846.666328pt;}
.y14f{bottom:852.106326pt;}
.y52{bottom:852.266326pt;}
.yc4{bottom:853.867200pt;}
.y17a{bottom:863.146321pt;}
.y127{bottom:867.786320pt;}
.yc2{bottom:868.427200pt;}
.y14e{bottom:872.426318pt;}
.y51{bottom:872.746318pt;}
.y10{bottom:880.106315pt;}
.y181{bottom:882.186314pt;}
.ybf{bottom:883.147200pt;}
.y179{bottom:884.906313pt;}
.y126{bottom:888.906311pt;}
.yc1{bottom:889.226311pt;}
.y14d{bottom:892.906310pt;}
.y50{bottom:893.226309pt;}
.ybc{bottom:897.707200pt;}
.yf{bottom:900.906306pt;}
.y180{bottom:901.226306pt;}
.ybe{bottom:903.786305pt;}
.y178{bottom:906.666304pt;}
.y125{bottom:910.186303pt;}
.yb9{bottom:912.427200pt;}
.y14c{bottom:913.546301pt;}
.y4f{bottom:913.706301pt;}
.ye{bottom:915.466300pt;}
.yd{bottom:915.786300pt;}
.ybb{bottom:918.506299pt;}
.y17f{bottom:920.266299pt;}
.yb6{bottom:926.987200pt;}
.y177{bottom:928.586295pt;}
.y124{bottom:931.306294pt;}
.yb8{bottom:933.066293pt;}
.y4e{bottom:934.186293pt;}
.y17e{bottom:939.466291pt;}
.yb3{bottom:941.547200pt;}
.yb5{bottom:947.626288pt;}
.y176{bottom:950.346287pt;}
.y123{bottom:952.426286pt;}
.y48{bottom:954.027200pt;}
.y4d{bottom:954.666285pt;}
.yb0{bottom:957.227200pt;}
.y17d{bottom:958.506283pt;}
.yb2{bottom:959.306283pt;}
.y47{bottom:962.026282pt;}
.y175{bottom:972.106278pt;}
.yae{bottom:972.907200pt;}
.y122{bottom:973.546277pt;}
.y4c{bottom:974.986277pt;}
.y17c{bottom:977.546276pt;}
.y46{bottom:980.906274pt;}
.y174{bottom:994.026269pt;}
.y121{bottom:994.666269pt;}
.y4b{bottom:995.466268pt;}
.yad{bottom:996.746268pt;}
.y45{bottom:999.946267pt;}
.yc{bottom:1001.866266pt;}
.yb{bottom:1002.186266pt;}
.y9{bottom:1008.267200pt;}
.yac{bottom:1015.786260pt;}
.y4a{bottom:1015.946260pt;}
.y43{bottom:1018.027200pt;}
.y42{bottom:1021.386258pt;}
.y1{bottom:1060.266243pt;}
.y7{bottom:1062.987200pt;}
.h26{height:2.560000pt;}
.hb{height:7.278122pt;}
.he{height:12.000000pt;}
.h19{height:13.440000pt;}
.h28{height:13.600000pt;}
.h20{height:14.128119pt;}
.h1b{height:14.560000pt;}
.h1e{height:15.200000pt;}
.h10{height:17.920000pt;}
.h15{height:18.080000pt;}
.h2{height:18.240000pt;}
.h7{height:18.400000pt;}
.h4{height:18.560000pt;}
.h24{height:19.360000pt;}
.h14{height:19.708117pt;}
.h17{height:21.723741pt;}
.h21{height:23.034366pt;}
.h12{height:23.118741pt;}
.h29{height:24.203115pt;}
.h2a{height:28.075614pt;}
.hf{height:28.684364pt;}
.h1d{height:29.856863pt;}
.h2b{height:32.432175pt;}
.h13{height:32.788112pt;}
.h18{height:35.560298pt;}
.h1a{height:36.304673pt;}
.h25{height:36.703110pt;}
.h22{height:38.387485pt;}
.h1f{height:40.177171pt;}
.h8{height:42.656233pt;}
.h11{height:42.812483pt;}
.h16{height:42.843733pt;}
.h27{height:44.362482pt;}
.h1c{height:44.562482pt;}
.ha{height:48.406231pt;}
.h23{height:48.937480pt;}
.h5{height:50.090605pt;}
.hc{height:56.940602pt;}
.hd{height:60.175084pt;}
.h1{height:62.812475pt;}
.h3{height:64.499974pt;}
.h9{height:69.749972pt;}
.h6{height:75.464970pt;}
.h0{height:1122.666667pt;}
.w21{width:1.120000pt;}
.w1c{width:1.600000pt;}
.we{width:4.000000pt;}
.w26{width:4.480000pt;}
.w59{width:5.600000pt;}
.w1{width:5.760000pt;}
.w11{width:6.880000pt;}
.w7{width:7.360000pt;}
.w12{width:7.840000pt;}
.w17{width:8.800000pt;}
.w16{width:9.440000pt;}
.w5{width:9.920000pt;}
.w6{width:10.080000pt;}
.wa{width:11.040000pt;}
.w42{width:11.360000pt;}
.wc{width:11.520000pt;}
.w4d{width:11.840000pt;}
.w3{width:14.240000pt;}
.w1e{width:15.200000pt;}
.w1b{width:15.360000pt;}
.w41{width:16.000000pt;}
.w35{width:21.120000pt;}
.w65{width:21.280000pt;}
.w45{width:21.440000pt;}
.w44{width:21.600000pt;}
.w20{width:21.760000pt;}
.w5a{width:22.080000pt;}
.w3b{width:22.240000pt;}
.w62{width:22.400000pt;}
.w4a{width:22.560000pt;}
.w5b{width:22.720000pt;}
.w49{width:22.880000pt;}
.w47{width:23.040000pt;}
.w68{width:23.200000pt;}
.w46{width:23.360000pt;}
.w6a{width:23.520000pt;}
.w31{width:23.680000pt;}
.w2c{width:24.000000pt;}
.w64{width:24.160000pt;}
.w6b{width:24.640000pt;}
.w48{width:24.800000pt;}
.w5c{width:27.840000pt;}
.w67{width:28.160000pt;}
.w69{width:28.320000pt;}
.w61{width:28.640000pt;}
.w60{width:28.800000pt;}
.w63{width:29.120000pt;}
.w4{width:29.760000pt;}
.w1d{width:29.920000pt;}
.w1f{width:30.080000pt;}
.w5d{width:30.240000pt;}
.w53{width:30.720000pt;}
.w3e{width:31.040000pt;}
.w57{width:32.480000pt;}
.w50{width:33.920000pt;}
.w52{width:34.560000pt;}
.w54{width:34.720000pt;}
.w4e{width:34.880000pt;}
.w58{width:35.040000pt;}
.w19{width:35.200000pt;}
.w3d{width:35.680000pt;}
.w2e{width:36.000000pt;}
.w56{width:36.160000pt;}
.w4f{width:36.320000pt;}
.w51{width:36.480000pt;}
.w33{width:36.960000pt;}
.w37{width:37.280000pt;}
.w22{width:37.760000pt;}
.w28{width:37.920000pt;}
.w1a{width:38.240000pt;}
.w38{width:38.400000pt;}
.w55{width:38.560000pt;}
.w29{width:38.880000pt;}
.w24{width:39.200000pt;}
.w23{width:39.360000pt;}
.w3f{width:40.640000pt;}
.w39{width:40.800000pt;}
.w2a{width:41.280000pt;}
.w3a{width:41.440000pt;}
.w2b{width:41.760000pt;}
.w4b{width:41.920000pt;}
.w2f{width:42.240000pt;}
.w30{width:42.400000pt;}
.w27{width:42.560000pt;}
.w34{width:42.880000pt;}
.w18{width:56.000000pt;}
.w13{width:58.400000pt;}
.w66{width:61.280000pt;}
.w5e{width:64.000000pt;}
.w25{width:67.840000pt;}
.wd{width:69.280000pt;}
.w5f{width:92.480000pt;}
.w4c{width:95.520000pt;}
.w2{width:106.400000pt;}
.w40{width:108.640000pt;}
.w10{width:110.880000pt;}
.w8{width:119.360000pt;}
.w32{width:133.280000pt;}
.w9{width:135.360000pt;}
.w3c{width:138.400000pt;}
.w36{width:139.520000pt;}
.w43{width:144.960000pt;}
.w15{width:155.840000pt;}
.w2d{width:169.760000pt;}
.wf{width:296.800000pt;}
.wb{width:372.800000pt;}
.w14{width:444.800000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x1e{left:97.119961pt;}
.x27{left:100.800000pt;}
.x31{left:103.519959pt;}
.x5{left:106.880000pt;}
.x2{left:114.399892pt;}
.x6b{left:118.879952pt;}
.x6c{left:130.240000pt;}
.x3{left:138.400000pt;}
.x4{left:152.799939pt;}
.x30{left:155.199938pt;}
.xa{left:164.639934pt;}
.x29{left:166.400000pt;}
.x44{left:168.320000pt;}
.x2a{left:170.400000pt;}
.x5a{left:204.640000pt;}
.x45{left:210.880000pt;}
.x6{left:213.280000pt;}
.x23{left:216.479913pt;}
.x20{left:219.199912pt;}
.x24{left:225.440000pt;}
.x52{left:229.280000pt;}
.xb{left:230.880281pt;}
.x56{left:234.400000pt;}
.x55{left:235.520000pt;}
.x64{left:240.960000pt;}
.x4e{left:265.760000pt;}
.x33{left:304.479878pt;}
.x46{left:330.240000pt;}
.x4f{left:331.200000pt;}
.x65{left:338.400000pt;}
.x38{left:340.000000pt;}
.x5b{left:341.280000pt;}
.x6d{left:349.280000pt;}
.x5c{left:357.280000pt;}
.x25{left:360.799856pt;}
.x74{left:363.520000pt;}
.x26{left:365.280000pt;}
.x50{left:367.200000pt;}
.x47{left:368.160000pt;}
.x95{left:370.880000pt;}
.x8f{left:373.600000pt;}
.x75{left:375.199850pt;}
.x39{left:378.240000pt;}
.xc{left:380.160094pt;}
.x99{left:381.600000pt;}
.x76{left:383.040000pt;}
.xd{left:384.160091pt;}
.x35{left:387.519845pt;}
.x90{left:389.600000pt;}
.x96{left:392.320000pt;}
.x3a{left:393.600000pt;}
.x77{left:394.719842pt;}
.x2d{left:399.040000pt;}
.x85{left:400.480000pt;}
.xa4{left:401.440000pt;}
.xaa{left:402.880000pt;}
.xac{left:403.840000pt;}
.xb2{left:406.400000pt;}
.x41{left:408.640000pt;}
.x32{left:411.200455pt;}
.x66{left:416.800000pt;}
.x5d{left:419.520000pt;}
.x9f{left:421.279831pt;}
.xb3{left:422.400000pt;}
.xa5{left:424.319830pt;}
.xad{left:425.920000pt;}
.x6e{left:427.520000pt;}
.xa0{left:429.920000pt;}
.x5e{left:435.520000pt;}
.x67{left:438.240000pt;}
.x73{left:440.000000pt;}
.x57{left:443.040000pt;}
.x42{left:446.400000pt;}
.xae{left:449.440000pt;}
.x9c{left:451.200000pt;}
.x8d{left:452.160000pt;}
.x78{left:453.440000pt;}
.x88{left:454.400000pt;}
.x2e{left:456.159818pt;}
.x3b{left:457.760000pt;}
.xe{left:458.720045pt;}
.x97{left:460.320000pt;}
.x91{left:463.360000pt;}
.x79{left:465.119814pt;}
.x2b{left:467.200000pt;}
.x7a{left:469.600000pt;}
.xf{left:470.560037pt;}
.x51{left:472.000000pt;}
.x28{left:473.120000pt;}
.x7b{left:474.080000pt;}
.x37{left:477.279809pt;}
.x92{left:479.360000pt;}
.x68{left:481.440000pt;}
.x10{left:482.400029pt;}
.x5f{left:485.120000pt;}
.x3c{left:487.680000pt;}
.x7c{left:489.280000pt;}
.x8e{left:490.720000pt;}
.x6f{left:493.120000pt;}
.x11{left:501.919965pt;}
.x69{left:504.800000pt;}
.x12{left:505.919962pt;}
.x43{left:512.800000pt;}
.x48{left:513.760000pt;}
.x13{left:517.759954pt;}
.x36{left:524.159790pt;}
.x3d{left:525.920000pt;}
.xb0{left:528.160000pt;}
.x14{left:529.439947pt;}
.x21{left:531.199788pt;}
.xb4{left:532.480000pt;}
.x15{left:541.279939pt;}
.x7d{left:542.720000pt;}
.x49{left:544.160000pt;}
.x16{left:545.279936pt;}
.x9a{left:546.240000pt;}
.x9d{left:548.320000pt;}
.x98{left:549.760000pt;}
.xaf{left:552.160000pt;}
.x6a{left:553.440000pt;}
.x7e{left:554.399778pt;}
.x60{left:556.960000pt;}
.x1f{left:559.519776pt;}
.x17{left:560.959873pt;}
.x7f{left:563.360000pt;}
.x18{left:564.799872pt;}
.x93{left:569.120000pt;}
.x61{left:572.960000pt;}
.x80{left:575.039770pt;}
.x19{left:576.639864pt;}
.x2c{left:578.080000pt;}
.x81{left:579.520000pt;}
.x1a{left:580.479862pt;}
.xa1{left:583.040000pt;}
.x1b{left:584.479859pt;}
.x4a{left:585.920000pt;}
.xab{left:590.560000pt;}
.x1c{left:592.319763pt;}
.xa8{left:596.640000pt;}
.x3e{left:604.800000pt;}
.xa9{left:608.000000pt;}
.xa2{left:612.959755pt;}
.xa6{left:614.559754pt;}
.xa7{left:618.720000pt;}
.x7{left:619.840000pt;}
.xa3{left:621.440000pt;}
.x86{left:629.760000pt;}
.xb1{left:630.720000pt;}
.x8b{left:631.680000pt;}
.x82{left:632.640000pt;}
.x4b{left:633.600000pt;}
.x3f{left:634.880000pt;}
.x9b{left:636.000000pt;}
.x53{left:637.280000pt;}
.x70{left:638.560000pt;}
.x9e{left:640.800000pt;}
.x62{left:644.160000pt;}
.x94{left:648.320000pt;}
.x8{left:649.600000pt;}
.x83{left:653.280000pt;}
.xb5{left:654.240000pt;}
.x63{left:655.520000pt;}
.x58{left:656.635737pt;}
.x4c{left:657.599737pt;}
.x9{left:659.520000pt;}
.x71{left:661.120000pt;}
.x54{left:662.400000pt;}
.x59{left:664.960000pt;}
.x4d{left:666.080000pt;}
.x89{left:667.039733pt;}
.x87{left:667.999733pt;}
.x84{left:669.440000pt;}
.x8c{left:670.560000pt;}
.x8a{left:671.520000pt;}
.x40{left:673.120000pt;}
.x22{left:676.319729pt;}
.x72{left:682.879727pt;}
.x34{left:692.960000pt;}
.x2f{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; }
  