
    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_bb6ba4523dd6a82066651371.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_e0a7f41dcd124aff21c15832.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_ffd165a512536e91aebfb691.woff')format("woff");}.ff4{font-family:ff4;line-height:0.934570;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_bb03452b61ae457c42b6ffde.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_2cc270d569a784d1775abbbb.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_9c5e46c7ddf378b17a2e0a70.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_d62f2a5eee45ffef0997e514.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_527c857b22091c083f08b0a9.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_88a24567bfebcf1fca688fef.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_f0af72f2641c83e778d44d33.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_5ea67ca24d0f777538211d7a.woff')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_d203f8268ca1bb25fbe0678d.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_034895570b666e4c787c564a.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_ed95314458a7766b4ed90148.woff')format("woff");}.ff12{font-family:ff12;line-height:0.695312;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);}
.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);}
.m9{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;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010553px;}
.ls0{letter-spacing:0.021238px;}
.ls2{letter-spacing:0.073080px;}
.ls5{letter-spacing:1.636079px;}
.ls4{letter-spacing:30.210768px;}
.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;}
}
.ws8{word-spacing:-41.957983px;}
.ws1{word-spacing:-22.407831px;}
.ws2{word-spacing:-19.151992px;}
.ws0{word-spacing:-18.021231px;}
.ws3{word-spacing:-17.999993px;}
.ws4{word-spacing:-15.179034px;}
.ws9{word-spacing:-13.715995px;}
.ws7{word-spacing:-13.499995px;}
.ws5{word-spacing:-13.013995px;}
.ws6{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;}
._1b{margin-left:-2.251309px;}
._0{margin-left:-1.187579px;}
._4{width:1.472618px;}
._14{width:2.493522px;}
._f{width:3.652419px;}
._e{width:4.796215px;}
._10{width:6.173039px;}
._11{width:7.592701px;}
._15{width:8.852456px;}
._16{width:10.061057px;}
._19{width:11.906658px;}
._1c{width:14.177685px;}
._26{width:15.210302px;}
._13{width:16.241248px;}
._12{width:17.273485px;}
._2b{width:18.735111px;}
._29{width:19.824812px;}
._2a{width:20.884310px;}
._37{width:21.923577px;}
._17{width:22.938917px;}
._18{width:23.950522px;}
._1a{width:25.228802px;}
._23{width:26.614382px;}
._34{width:27.817780px;}
._27{width:28.825311px;}
._28{width:30.248303px;}
._1d{width:31.432452px;}
._1e{width:32.649129px;}
._3d{width:33.995844px;}
._24{width:35.405257px;}
._35{width:36.530197px;}
._36{width:38.225886px;}
._3b{width:39.311604px;}
._31{width:40.481790px;}
._32{width:41.795298px;}
._39{width:43.125319px;}
._3f{width:44.776727px;}
._30{width:46.021482px;}
._2f{width:47.190783px;}
._2e{width:48.353215px;}
._3a{width:49.727403px;}
._2d{width:52.779207px;}
._2c{width:53.937363px;}
._21{width:55.491089px;}
._22{width:56.555768px;}
._25{width:57.601538px;}
._40{width:59.744302px;}
._20{width:62.445979px;}
._38{width:63.476181px;}
._1f{width:64.746407px;}
._3e{width:69.978752px;}
._41{width:73.635662px;}
._3c{width:76.209217px;}
._d{width:89.578185px;}
._c{width:90.642148px;}
._42{width:118.776106px;}
._43{width:120.341106px;}
._33{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);}
.fsb{font-size:9.359996px;}
.fs3{font-size:12.239995px;}
.fsa{font-size:23.759990px;}
.fs7{font-size:38.879984px;}
.fsd{font-size:41.759983px;}
.fs6{font-size:48.239981px;}
.fs9{font-size:53.999978px;}
.fs8{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.fsc{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;}
.yd6{bottom:3.058953px;}
.yd9{bottom:3.058959px;}
.ydb{bottom:3.058966px;}
.ydd{bottom:3.058973px;}
.ydf{bottom:3.058979px;}
.ye1{bottom:3.058986px;}
.ye3{bottom:3.058993px;}
.y99{bottom:3.058999px;}
.y9c{bottom:3.059006px;}
.y9e{bottom:3.059013px;}
.ya0{bottom:3.059020px;}
.ya2{bottom:3.059026px;}
.ya4{bottom:3.059033px;}
.ya6{bottom:3.059039px;}
.ya8{bottom:3.059046px;}
.yaa{bottom:3.059053px;}
.yac{bottom:3.059059px;}
.yae{bottom:3.059066px;}
.yb0{bottom:3.059072px;}
.yb2{bottom:3.059079px;}
.yb4{bottom:3.059086px;}
.y1e{bottom:3.059088px;}
.yb6{bottom:3.059092px;}
.yb8{bottom:3.059099px;}
.yf4{bottom:3.059104px;}
.yf6{bottom:3.059111px;}
.yf8{bottom:3.059118px;}
.yfa{bottom:3.059124px;}
.yfc{bottom:3.059131px;}
.y28{bottom:3.059132px;}
.yff{bottom:3.059144px;}
.y101{bottom:3.059150px;}
.y103{bottom:3.059157px;}
.y105{bottom:3.059163px;}
.y107{bottom:3.059170px;}
.y109{bottom:3.059176px;}
.y10b{bottom:3.059183px;}
.y10d{bottom:3.059190px;}
.y10f{bottom:3.059196px;}
.y111{bottom:3.059203px;}
.y113{bottom:3.059209px;}
.y115{bottom:3.059216px;}
.y117{bottom:3.059223px;}
.y119{bottom:3.059229px;}
.y11b{bottom:3.059236px;}
.y11d{bottom:3.059242px;}
.y11f{bottom:3.059249px;}
.y121{bottom:3.059256px;}
.y123{bottom:3.059262px;}
.y125{bottom:3.059269px;}
.y127{bottom:3.059275px;}
.y129{bottom:3.059282px;}
.y12b{bottom:3.059288px;}
.y12d{bottom:3.059295px;}
.y12f{bottom:3.059302px;}
.y131{bottom:3.059308px;}
.y133{bottom:3.059315px;}
.y14{bottom:3.239032px;}
.y25{bottom:3.419121px;}
.y44{bottom:3.778940px;}
.ya{bottom:4.138945px;}
.y20{bottom:4.319088px;}
.y4{bottom:4.320028px;}
.y16{bottom:4.859040px;}
.y1a{bottom:4.859058px;}
.y23{bottom:4.859105px;}
.y6{bottom:58.620277px;}
.y3{bottom:75.000240px;}
.y5{bottom:78.960268px;}
.y2{bottom:79.319968px;}
.y41{bottom:123.419951px;}
.y137{bottom:126.659949px;}
.y85{bottom:129.539948px;}
.y97{bottom:130.259948px;}
.y76{bottom:130.619948px;}
.yd4{bottom:132.419947px;}
.y40{bottom:146.459941px;}
.y136{bottom:149.699940px;}
.y84{bottom:152.759939px;}
.y96{bottom:153.299939px;}
.y75{bottom:153.479939px;}
.yd3{bottom:155.459938px;}
.y3f{bottom:169.499932px;}
.y135{bottom:172.739931px;}
.y83{bottom:175.979930px;}
.y95{bottom:176.339929px;}
.y74{bottom:176.519929px;}
.yd2{bottom:178.499929px;}
.y3e{bottom:192.539923px;}
.y134{bottom:195.779922px;}
.y82{bottom:199.019920px;}
.y94{bottom:199.199920px;}
.y73{bottom:199.559920px;}
.yd1{bottom:201.539919px;}
.y132{bottom:210.000600px;}
.y3d{bottom:215.579914px;}
.yd0{bottom:221.879911px;}
.y81{bottom:222.239911px;}
.y72{bottom:222.599911px;}
.y130{bottom:226.560600px;}
.y3c{bottom:238.439905px;}
.ycf{bottom:242.399903px;}
.y12e{bottom:242.940600px;}
.y80{bottom:245.279902px;}
.y71{bottom:245.639902px;}
.y12c{bottom:259.500600px;}
.y3b{bottom:261.479895px;}
.yce{bottom:265.439894px;}
.y7f{bottom:268.319893px;}
.y70{bottom:268.679893px;}
.y12a{bottom:275.880600px;}
.y3a{bottom:277.679889px;}
.y39{bottom:281.459887px;}
.ycd{bottom:288.479885px;}
.y7e{bottom:291.359883px;}
.y6f{bottom:291.539883px;}
.y128{bottom:292.440600px;}
.y38{bottom:301.979879px;}
.y126{bottom:308.820600px;}
.ycc{bottom:311.519875px;}
.y7d{bottom:314.399874px;}
.y6e{bottom:314.579874px;}
.y37{bottom:325.019870px;}
.y124{bottom:325.200600px;}
.ycb{bottom:334.379866px;}
.y7c{bottom:337.259865px;}
.y6d{bottom:337.619865px;}
.y122{bottom:341.760600px;}
.y36{bottom:348.059861px;}
.yca{bottom:357.419857px;}
.y120{bottom:358.140600px;}
.y7b{bottom:360.299856px;}
.y6c{bottom:360.659856px;}
.y35{bottom:370.919852px;}
.y11e{bottom:374.700600px;}
.yc9{bottom:380.459848px;}
.y7a{bottom:383.339847px;}
.y6b{bottom:383.699847px;}
.y11c{bottom:391.080600px;}
.y34{bottom:393.959842px;}
.yc8{bottom:403.499839px;}
.y79{bottom:406.379837px;}
.y6a{bottom:406.739837px;}
.y11a{bottom:407.640600px;}
.y33{bottom:416.999833px;}
.y118{bottom:424.020600px;}
.yc7{bottom:426.539829px;}
.y78{bottom:429.419828px;}
.y69{bottom:429.599828px;}
.y32{bottom:440.039824px;}
.y116{bottom:440.580600px;}
.yc6{bottom:449.579820px;}
.y93{bottom:452.279819px;}
.y77{bottom:452.459819px;}
.y68{bottom:452.639819px;}
.y114{bottom:456.960600px;}
.y31{bottom:463.079815px;}
.yc5{bottom:472.439811px;}
.y112{bottom:473.520600px;}
.y92{bottom:475.319810px;}
.y67{bottom:475.679810px;}
.y30{bottom:486.119806px;}
.y110{bottom:489.900600px;}
.yc4{bottom:495.479802px;}
.y91{bottom:498.359801px;}
.y66{bottom:498.719801px;}
.y10e{bottom:506.460600px;}
.y2f{bottom:508.979796px;}
.yc3{bottom:518.519793px;}
.y90{bottom:521.399791px;}
.y154{bottom:521.579791px;}
.y65{bottom:521.759791px;}
.y10c{bottom:522.840600px;}
.y2e{bottom:532.019787px;}
.y10a{bottom:539.400600px;}
.yc2{bottom:541.559783px;}
.y8f{bottom:544.439782px;}
.y64{bottom:544.799782px;}
.y2d{bottom:555.059778px;}
.y108{bottom:555.780600px;}
.y153{bottom:557.039777px;}
.yc1{bottom:564.599774px;}
.y8e{bottom:567.479773px;}
.y63{bottom:567.659773px;}
.y106{bottom:572.340600px;}
.y2c{bottom:578.099769px;}
.y152{bottom:579.359768px;}
.yc0{bottom:587.639765px;}
.y104{bottom:588.720600px;}
.y8d{bottom:590.339764px;}
.y62{bottom:590.699764px;}
.y2b{bottom:601.139760px;}
.y151{bottom:601.499759px;}
.y102{bottom:605.100600px;}
.ybf{bottom:610.499756px;}
.y8c{bottom:613.379755px;}
.y61{bottom:613.739755px;}
.y150{bottom:621.479751px;}
.y100{bottom:621.660600px;}
.y2a{bottom:624.179750px;}
.ybe{bottom:633.539747px;}
.y8b{bottom:636.419745px;}
.y60{bottom:636.779745px;}
.yfe{bottom:638.040600px;}
.y14f{bottom:641.099744px;}
.y29{bottom:647.039741px;}
.ybd{bottom:656.579737px;}
.yfd{bottom:657.659737px;}
.y8a{bottom:659.459736px;}
.y5f{bottom:659.819736px;}
.y14e{bottom:663.239735px;}
.y27{bottom:667.020600px;}
.yfb{bottom:669.900600px;}
.ybc{bottom:679.619728px;}
.y89{bottom:682.499727px;}
.y5e{bottom:682.679727px;}
.y14d{bottom:685.559726px;}
.yf9{bottom:686.460600px;}
.y24{bottom:695.100600px;}
.y26{bottom:698.519721px;}
.ybb{bottom:702.659719px;}
.yf7{bottom:702.840600px;}
.y88{bottom:705.539718px;}
.y5d{bottom:705.719718px;}
.y14c{bottom:707.879717px;}
.yf5{bottom:719.220600px;}
.yba{bottom:722.999711px;}
.y87{bottom:728.399709px;}
.y5c{bottom:728.759708px;}
.y14b{bottom:730.019708px;}
.y22{bottom:731.460600px;}
.yf3{bottom:735.780600px;}
.y21{bottom:736.319705px;}
.yb9{bottom:737.939705px;}
.yb7{bottom:750.180600px;}
.y86{bottom:751.619699px;}
.y5b{bottom:751.799699px;}
.yf2{bottom:752.160600px;}
.y14a{bottom:752.339699px;}
.yb5{bottom:766.740600px;}
.yf1{bottom:768.720600px;}
.y149{bottom:774.479690px;}
.y5a{bottom:774.839690px;}
.y1f{bottom:775.920600px;}
.y1d{bottom:777.180600px;}
.yb3{bottom:783.120600px;}
.yf0{bottom:785.100600px;}
.y1c{bottom:796.259681px;}
.y148{bottom:796.799681px;}
.y59{bottom:797.879681px;}
.yb1{bottom:799.500600px;}
.yef{bottom:801.660600px;}
.yaf{bottom:816.060600px;}
.yee{bottom:818.040600px;}
.y147{bottom:818.939672px;}
.y58{bottom:820.739672px;}
.y1b{bottom:824.339670px;}
.yad{bottom:832.440600px;}
.yed{bottom:834.600600px;}
.y146{bottom:841.259663px;}
.y57{bottom:843.779662px;}
.yab{bottom:849.000600px;}
.y19{bottom:850.080600px;}
.yec{bottom:854.039658px;}
.y145{bottom:863.579655px;}
.ya9{bottom:865.380600px;}
.yeb{bottom:866.280600px;}
.y56{bottom:866.819653px;}
.y18{bottom:872.759651px;}
.ya7{bottom:881.940600px;}
.yea{bottom:882.840600px;}
.y144{bottom:885.719646px;}
.y55{bottom:889.859644px;}
.y15{bottom:895.440600px;}
.ya5{bottom:898.320600px;}
.ye9{bottom:900.480600px;}
.y17{bottom:905.519638px;}
.y143{bottom:908.039637px;}
.y54{bottom:912.899635px;}
.ya3{bottom:914.880600px;}
.y13{bottom:915.780600px;}
.ye8{bottom:928.919628px;}
.y142{bottom:930.179628px;}
.ya1{bottom:931.260600px;}
.y53{bottom:935.939626px;}
.y9f{bottom:947.820600px;}
.y11{bottom:949.259548px;}
.y12{bottom:949.259620px;}
.y141{bottom:950.159620px;}
.ye7{bottom:951.959619px;}
.y52{bottom:958.799616px;}
.y9d{bottom:964.200600px;}
.ye6{bottom:966.180600px;}
.y140{bottom:969.779612px;}
.y51{bottom:981.839607px;}
.y9b{bottom:981.840600px;}
.ye5{bottom:982.740600px;}
.y9a{bottom:987.059605px;}
.y10{bottom:990.119604px;}
.y13f{bottom:991.919603px;}
.ye4{bottom:999.120600px;}
.y98{bottom:999.480600px;}
.y50{bottom:1004.879598px;}
.y13e{bottom:1012.079595px;}
.yf{bottom:1013.519595px;}
.ye2{bottom:1015.680600px;}
.y4f{bottom:1027.919589px;}
.ye{bottom:1029.899588px;}
.yd{bottom:1030.259588px;}
.y13d{bottom:1031.519587px;}
.ye0{bottom:1032.060600px;}
.yde{bottom:1048.620600px;}
.y4e{bottom:1050.959580px;}
.y13c{bottom:1053.839578px;}
.ydc{bottom:1065.000600px;}
.y48{bottom:1073.280600px;}
.y4d{bottom:1073.999570px;}
.y13b{bottom:1075.979570px;}
.yda{bottom:1081.560600px;}
.y47{bottom:1082.279567px;}
.y4c{bottom:1096.859561px;}
.y13a{bottom:1098.299561px;}
.yd8{bottom:1099.020600px;}
.yd7{bottom:1102.079559px;}
.y46{bottom:1103.519559px;}
.yd5{bottom:1114.500600px;}
.y4b{bottom:1119.899552px;}
.y139{bottom:1120.439552px;}
.y45{bottom:1124.939550px;}
.yc{bottom:1127.099549px;}
.yb{bottom:1127.459549px;}
.y9{bottom:1134.300600px;}
.y138{bottom:1142.759543px;}
.y4a{bottom:1142.939543px;}
.y43{bottom:1145.280600px;}
.y42{bottom:1149.059540px;}
.y1{bottom:1192.799523px;}
.y7{bottom:1195.860600px;}
.h24{height:2.880000px;}
.hb{height:8.169958px;}
.he{height:13.500000px;}
.h17{height:15.120000px;}
.h27{height:15.300000px;}
.h29{height:15.480000px;}
.h1e{height:15.859330px;}
.h19{height:16.380000px;}
.h1c{height:17.100000px;}
.h10{height:20.160000px;}
.h14{height:20.340000px;}
.h2{height:20.520000px;}
.h7{height:20.700000px;}
.h4{height:20.880000px;}
.h22{height:21.780000px;}
.h1f{height:25.913662px;}
.h12{height:25.951630px;}
.h28{height:31.585065px;}
.hf{height:32.199245px;}
.h1b{height:33.588971px;}
.h13{height:36.886626px;}
.h16{height:40.005336px;}
.h18{height:40.842757px;}
.h23{height:41.290999px;}
.h20{height:43.185920px;}
.h1d{height:45.199318px;}
.h8{height:47.988262px;}
.h11{height:48.058575px;}
.h15{height:48.199199px;}
.h25{height:49.907793px;}
.h1a{height:50.132792px;}
.h26{height:52.998026px;}
.ha{height:54.457009px;}
.h21{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;}
.w25{width:1.800000px;}
.w22{width:2.340000px;}
.w57{width:2.700000px;}
.w50{width:3.240000px;}
.w12{width:3.420000px;}
.w1a{width:3.600000px;}
.w10{width:4.500000px;}
.wa{width:4.680000px;}
.w28{width:5.040000px;}
.w64{width:5.220000px;}
.w58{width:5.760000px;}
.w55{width:5.940000px;}
.w1{width:6.480000px;}
.w49{width:6.840000px;}
.w66{width:7.020000px;}
.w48{width:7.200000px;}
.w3f{width:7.380000px;}
.w4c{width:7.560000px;}
.w16{width:7.740000px;}
.w44{width:8.100000px;}
.w7{width:8.280000px;}
.w29{width:8.640000px;}
.w17{width:8.820000px;}
.w38{width:9.540000px;}
.w1e{width:9.900000px;}
.w1d{width:10.620000px;}
.w5{width:11.160000px;}
.w6{width:11.340000px;}
.w43{width:11.520000px;}
.w6b{width:12.420000px;}
.wa1{width:12.600000px;}
.wc3{width:12.780000px;}
.we{width:12.960000px;}
.wdc{width:13.140000px;}
.w45{width:13.320000px;}
.w98{width:13.500000px;}
.wa4{width:13.860000px;}
.w8c{width:14.040000px;}
.wda{width:14.220000px;}
.wbd{width:14.400000px;}
.wb5{width:14.580000px;}
.wb7{width:14.760000px;}
.wb0{width:14.940000px;}
.wab{width:15.120000px;}
.wdb{width:15.480000px;}
.wc1{width:15.660000px;}
.w46{width:15.840000px;}
.w3{width:16.020000px;}
.w5c{width:16.740000px;}
.w8e{width:16.920000px;}
.wcf{width:17.100000px;}
.w51{width:17.280000px;}
.w52{width:17.820000px;}
.waa{width:18.360000px;}
.w82{width:18.540000px;}
.w14{width:18.720000px;}
.wa3{width:19.080000px;}
.w7f{width:19.620000px;}
.wcd{width:21.240000px;}
.wd6{width:21.780000px;}
.w9d{width:22.320000px;}
.w72{width:22.860000px;}
.w77{width:23.580000px;}
.wd4{width:23.940000px;}
.wd7{width:24.120000px;}
.w94{width:24.300000px;}
.w5a{width:24.480000px;}
.w9b{width:24.660000px;}
.w9{width:25.200000px;}
.w86{width:25.380000px;}
.w93{width:25.560000px;}
.w68{width:25.740000px;}
.w67{width:25.920000px;}
.wb3{width:26.100000px;}
.w71{width:26.280000px;}
.w8b{width:26.460000px;}
.w7e{width:26.640000px;}
.w7a{width:26.820000px;}
.w7b{width:27.000000px;}
.w6e{width:27.180000px;}
.w6f{width:27.540000px;}
.w73{width:29.160000px;}
.wd3{width:29.520000px;}
.w59{width:29.700000px;}
.wa5{width:30.960000px;}
.w5f{width:31.320000px;}
.wde{width:31.680000px;}
.wdf{width:31.860000px;}
.w80{width:32.040000px;}
.w89{width:32.220000px;}
.we0{width:33.120000px;}
.w4{width:33.480000px;}
.wbb{width:33.660000px;}
.w99{width:34.200000px;}
.w3d{width:34.380000px;}
.w60{width:34.560000px;}
.w3a{width:35.100000px;}
.w95{width:36.180000px;}
.w78{width:36.540000px;}
.w87{width:37.440000px;}
.w7c{width:37.620000px;}
.wac{width:37.800000px;}
.w97{width:38.520000px;}
.wca{width:38.700000px;}
.wc2{width:38.880000px;}
.w62{width:39.060000px;}
.wd0{width:39.240000px;}
.wb8{width:39.420000px;}
.w69{width:40.140000px;}
.wd8{width:40.500000px;}
.w8d{width:40.680000px;}
.w40{width:40.860000px;}
.w9c{width:41.040000px;}
.wa2{width:41.220000px;}
.w6c{width:41.400000px;}
.w9e{width:41.580000px;}
.wc6{width:41.940000px;}
.w74{width:42.120000px;}
.wc5{width:42.300000px;}
.w91{width:42.480000px;}
.w54{width:42.660000px;}
.wc8{width:44.280000px;}
.w85{width:44.640000px;}
.w21{width:45.180000px;}
.w3b{width:45.360000px;}
.wd1{width:45.720000px;}
.w41{width:46.080000px;}
.w5e{width:46.440000px;}
.w3c{width:46.800000px;}
.w84{width:46.980000px;}
.w24{width:48.600000px;}
.w27{width:48.960000px;}
.w2e{width:49.140000px;}
.w32{width:50.040000px;}
.w39{width:50.580000px;}
.wb{width:51.120000px;}
.w4f{width:51.480000px;}
.w23{width:52.200000px;}
.w33{width:53.460000px;}
.w2c{width:55.080000px;}
.w56{width:55.260000px;}
.wd5{width:56.880000px;}
.w65{width:57.060000px;}
.wc9{width:57.240000px;}
.w26{width:57.420000px;}
.w79{width:58.860000px;}
.w7d{width:59.040000px;}
.w83{width:59.220000px;}
.wcb{width:62.820000px;}
.w30{width:63.540000px;}
.w2a{width:64.980000px;}
.w3e{width:65.520000px;}
.w18{width:65.700000px;}
.wcc{width:66.060000px;}
.w75{width:66.600000px;}
.w31{width:67.320000px;}
.w2b{width:67.500000px;}
.we2{width:67.860000px;}
.w8a{width:68.220000px;}
.wba{width:69.300000px;}
.w5d{width:71.280000px;}
.we1{width:71.820000px;}
.w5b{width:72.360000px;}
.w20{width:72.900000px;}
.w36{width:73.620000px;}
.wb4{width:77.760000px;}
.wf{width:77.940000px;}
.wa8{width:78.300000px;}
.wa0{width:80.100000px;}
.w81{width:80.280000px;}
.waf{width:80.640000px;}
.wce{width:80.820000px;}
.wb1{width:81.000000px;}
.w35{width:82.080000px;}
.w6d{width:82.980000px;}
.w9a{width:85.140000px;}
.w2d{width:86.760000px;}
.w2f{width:87.480000px;}
.wae{width:87.840000px;}
.wbe{width:88.200000px;}
.w76{width:88.740000px;}
.w70{width:90.540000px;}
.w1f{width:91.080000px;}
.wc7{width:92.700000px;}
.w63{width:93.060000px;}
.wa6{width:93.780000px;}
.w42{width:94.860000px;}
.w34{width:96.840000px;}
.w37{width:97.380000px;}
.w88{width:98.820000px;}
.w6a{width:100.800000px;}
.w53{width:102.780000px;}
.w4a{width:102.960000px;}
.w4d{width:103.860000px;}
.w4e{width:108.360000px;}
.wc0{width:110.880000px;}
.wbf{width:112.680000px;}
.wdd{width:113.220000px;}
.w19{width:114.660000px;}
.w13{width:117.720000px;}
.w2{width:119.700000px;}
.wa7{width:123.840000px;}
.wd9{width:128.880000px;}
.wbc{width:129.600000px;}
.w15{width:129.960000px;}
.w8{width:132.840000px;}
.wd2{width:142.200000px;}
.w90{width:146.880000px;}
.w47{width:155.700000px;}
.w9f{width:161.460000px;}
.wad{width:163.620000px;}
.w4b{width:168.480000px;}
.w8f{width:168.840000px;}
.wb6{width:170.820000px;}
.wb2{width:173.520000px;}
.w96{width:178.200000px;}
.wc4{width:180.900000px;}
.wa9{width:192.240000px;}
.w61{width:195.120000px;}
.wd{width:222.840000px;}
.wb9{width:243.900000px;}
.w92{width:256.320000px;}
.w1b{width:266.580000px;}
.wc{width:272.880000px;}
.w1c{width:288.360000px;}
.w11{width:310.320000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2c{left:1.073798px;}
.x1{left:107.999957px;}
.x1e{left:109.259956px;}
.x88{left:113.760000px;}
.x9c{left:115.380000px;}
.x37{left:116.459953px;}
.x5{left:120.240000px;}
.xbc{left:122.040000px;}
.xd1{left:123.840000px;}
.x2{left:128.699878px;}
.x82{left:135.000000px;}
.x83{left:152.820000px;}
.x3{left:155.700000px;}
.x47{left:156.960000px;}
.x56{left:158.040000px;}
.x7d{left:159.480000px;}
.x57{left:161.460000px;}
.x51{left:163.080000px;}
.x89{left:164.700000px;}
.xd0{left:165.960000px;}
.xad{left:167.040000px;}
.x93{left:169.560000px;}
.x4{left:171.899931px;}
.x4f{left:172.980000px;}
.x32{left:174.599930px;}
.xbd{left:175.680000px;}
.xc1{left:177.480000px;}
.x7e{left:180.000000px;}
.xa{left:185.219926px;}
.x28{left:187.200000px;}
.x84{left:189.000000px;}
.x59{left:190.080000px;}
.x29{left:191.700000px;}
.x52{left:194.760000px;}
.x94{left:196.380000px;}
.xa4{left:199.800000px;}
.x95{left:201.420000px;}
.x65{left:202.860000px;}
.x58{left:204.840000px;}
.xbe{left:205.920000px;}
.xf4{left:207.180000px;}
.x73{left:210.960000px;}
.x8a{left:213.480000px;}
.x40{left:215.280000px;}
.x7c{left:216.360000px;}
.x8b{left:218.520000px;}
.xed{left:219.600000px;}
.x33{left:222.840000px;}
.xd2{left:224.100000px;}
.xc3{left:225.180000px;}
.x34{left:226.440000px;}
.xeb{left:227.520000px;}
.xd3{left:229.140000px;}
.xc4{left:230.220000px;}
.xea{left:234.180000px;}
.x48{left:235.260000px;}
.x20{left:236.519905px;}
.xec{left:238.320000px;}
.x6{left:239.940000px;}
.x21{left:241.919903px;}
.x22{left:246.780000px;}
.xab{left:248.040000px;}
.xee{left:251.820000px;}
.xaa{left:258.660000px;}
.xb{left:259.740316px;}
.x6e{left:263.700000px;}
.x41{left:264.780000px;}
.xe1{left:266.760000px;}
.xde{left:270.000000px;}
.x23{left:271.980000px;}
.xcb{left:274.140000px;}
.x24{left:276.660000px;}
.xa2{left:279.540000px;}
.xe2{left:281.340000px;}
.x3e{left:286.020000px;}
.x49{left:288.540000px;}
.x9d{left:289.800000px;}
.x85{left:291.780000px;}
.x4a{left:293.580000px;}
.x50{left:295.380000px;}
.xe4{left:296.820000px;}
.xf7{left:298.800000px;}
.xb2{left:300.420000px;}
.xae{left:303.480000px;}
.xb3{left:305.460000px;}
.x9e{left:307.260000px;}
.xaf{left:308.520000px;}
.xb4{left:311.220000px;}
.x8c{left:312.660000px;}
.x42{left:316.980000px;}
.xa5{left:318.600000px;}
.x43{left:320.760000px;}
.xef{left:323.100000px;}
.xa6{left:326.160000px;}
.x25{left:327.779869px;}
.xa7{left:331.200000px;}
.x5a{left:334.799866px;}
.xf3{left:337.140000px;}
.x4b{left:340.920000px;}
.x39{left:342.539863px;}
.xf0{left:344.340000px;}
.x66{left:345.960000px;}
.x53{left:347.760000px;}
.x4c{left:349.560000px;}
.xd4{left:352.980000px;}
.x76{left:354.240000px;}
.x6f{left:355.860000px;}
.x67{left:357.480000px;}
.x3f{left:358.920000px;}
.xcc{left:363.060000px;}
.x9f{left:366.300000px;}
.xcd{left:368.280000px;}
.x44{left:369.360000px;}
.xa0{left:371.340000px;}
.x45{left:372.780000px;}
.xbf{left:379.440000px;}
.x26{left:381.960000px;}
.xb5{left:384.840000px;}
.x8d{left:388.980000px;}
.xb0{left:390.960000px;}
.x8e{left:394.020000px;}
.xb1{left:396.000000px;}
.x4d{left:397.260000px;}
.x54{left:399.060000px;}
.xda{left:400.320000px;}
.xf2{left:402.120000px;}
.x55{left:404.100000px;}
.x4e{left:405.900000px;}
.xc5{left:408.060000px;}
.xc6{left:413.100000px;}
.xa8{left:419.940000px;}
.x5c{left:421.559831px;}
.xe9{left:424.440000px;}
.xc{left:427.680106px;}
.x46{left:430.200000px;}
.xd{left:432.180102px;}
.x5b{left:434.880000px;}
.x3b{left:435.959826px;}
.xe5{left:439.020000px;}
.x77{left:441.000000px;}
.x68{left:442.440000px;}
.xe6{left:444.240000px;}
.xc2{left:445.320000px;}
.x30{left:448.920000px;}
.x8f{left:450.900000px;}
.xe3{left:452.160000px;}
.xa1{left:454.320000px;}
.x38{left:462.600512px;}
.xb6{left:470.160000px;}
.xb7{left:475.200000px;}
.xe7{left:481.680000px;}
.xb8{left:482.760000px;}
.xb9{left:487.800000px;}
.x35{left:493.020000px;}
.x36{left:496.620000px;}
.x5d{left:497.700000px;}
.xdf{left:499.140000px;}
.xdb{left:500.760000px;}
.x2a{left:502.020000px;}
.x2b{left:504.360000px;}
.xc7{left:506.160000px;}
.xc8{left:511.200000px;}
.xe{left:516.060050px;}
.x5f{left:519.659792px;}
.xc9{left:523.800000px;}
.xc0{left:526.140000px;}
.xf{left:529.380042px;}
.x70{left:532.440000px;}
.x78{left:534.060000px;}
.x3d{left:536.939785px;}
.x79{left:539.100000px;}
.x71{left:540.720000px;}
.x10{left:542.700033px;}
.x5e{left:544.500000px;}
.xe0{left:546.840000px;}
.x96{left:549.720000px;}
.xdc{left:554.580000px;}
.xba{left:556.020000px;}
.xdd{left:559.620000px;}
.xbb{left:561.060000px;}
.x11{left:564.659960px;}
.x12{left:569.159957px;}
.xd5{left:577.980000px;}
.x13{left:582.479948px;}
.x3c{left:589.679764px;}
.xca{left:590.760000px;}
.x14{left:595.619941px;}
.x27{left:603.900000px;}
.x60{left:606.960000px;}
.x15{left:608.939932px;}
.x97{left:611.820000px;}
.x16{left:613.439928px;}
.x2d{left:622.080000px;}
.x17{left:631.079858px;}
.x69{left:633.780000px;}
.x18{left:635.399856px;}
.x2e{left:640.440000px;}
.x6a{left:642.060000px;}
.x19{left:648.719847px;}
.x1a{left:653.039845px;}
.x1b{left:657.539841px;}
.x1c{left:666.359733px;}
.x86{left:673.740000px;}
.xf5{left:679.500000px;}
.x61{left:681.120000px;}
.x90{left:682.740000px;}
.xd7{left:683.820000px;}
.xce{left:685.800000px;}
.x62{left:693.900000px;}
.x98{left:695.339722px;}
.x7{left:697.320000px;}
.xcf{left:704.880000px;}
.xd8{left:706.680000px;}
.x91{left:707.940000px;}
.xd6{left:709.020000px;}
.xf6{left:711.180000px;}
.x7f{left:713.700000px;}
.x1f{left:715.139714px;}
.x87{left:716.400000px;}
.x64{left:718.739713px;}
.x6b{left:722.880000px;}
.x74{left:724.320000px;}
.x72{left:727.200000px;}
.x7a{left:728.280000px;}
.x8{left:730.800000px;}
.x80{left:732.060000px;}
.x7b{left:733.320000px;}
.x63{left:734.760000px;}
.xe8{left:736.200000px;}
.x75{left:737.280000px;}
.x6c{left:738.720000px;}
.x99{left:739.800000px;}
.xa9{left:740.880000px;}
.x9{left:741.960000px;}
.xd9{left:743.580000px;}
.x81{left:748.080000px;}
.x9b{left:752.759699px;}
.xf1{left:761.220000px;}
.xac{left:762.480000px;}
.xa3{left:764.100000px;}
.x9a{left:765.540000px;}
.x92{left:768.420000px;}
.x2f{left:770.400000px;}
.x6d{left:773.280000px;}
.x3a{left:779.580000px;}
.x31{left:781.559687px;}
.x1d{left:783.539686px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.559999pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009381pt;}
.ls0{letter-spacing:0.018878pt;}
.ls2{letter-spacing:0.064960pt;}
.ls5{letter-spacing:1.454293pt;}
.ls4{letter-spacing:26.854016pt;}
.ws8{word-spacing:-37.295985pt;}
.ws1{word-spacing:-19.918072pt;}
.ws2{word-spacing:-17.023993pt;}
.ws0{word-spacing:-16.018872pt;}
.ws3{word-spacing:-15.999994pt;}
.ws4{word-spacing:-13.492475pt;}
.ws9{word-spacing:-12.191995pt;}
.ws7{word-spacing:-11.999995pt;}
.ws5{word-spacing:-11.567995pt;}
.ws6{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;}
._1b{margin-left:-2.001163pt;}
._0{margin-left:-1.055625pt;}
._4{width:1.308994pt;}
._14{width:2.216464pt;}
._f{width:3.246595pt;}
._e{width:4.263303pt;}
._10{width:5.487146pt;}
._11{width:6.749068pt;}
._15{width:7.868850pt;}
._16{width:8.943162pt;}
._19{width:10.583696pt;}
._1c{width:12.602387pt;}
._26{width:13.520268pt;}
._13{width:14.436665pt;}
._12{width:15.354209pt;}
._2b{width:16.653432pt;}
._29{width:17.622055pt;}
._2a{width:18.563831pt;}
._37{width:19.487624pt;}
._17{width:20.390148pt;}
._18{width:21.289353pt;}
._1a{width:22.425602pt;}
._23{width:23.657229pt;}
._34{width:24.726916pt;}
._27{width:25.622499pt;}
._28{width:26.887380pt;}
._1d{width:27.939957pt;}
._1e{width:29.021448pt;}
._3d{width:30.218528pt;}
._24{width:31.471339pt;}
._35{width:32.471286pt;}
._36{width:33.978565pt;}
._3b{width:34.943648pt;}
._31{width:35.983814pt;}
._32{width:37.151376pt;}
._39{width:38.333617pt;}
._3f{width:39.801535pt;}
._30{width:40.907984pt;}
._2f{width:41.947363pt;}
._2e{width:42.980635pt;}
._3a{width:44.202136pt;}
._2d{width:46.914851pt;}
._2c{width:47.944323pt;}
._21{width:49.325413pt;}
._22{width:50.271794pt;}
._25{width:51.201367pt;}
._40{width:53.106046pt;}
._20{width:55.507537pt;}
._38{width:56.423272pt;}
._1f{width:57.552362pt;}
._3e{width:62.203335pt;}
._41{width:65.453922pt;}
._3c{width:67.741526pt;}
._d{width:79.625053pt;}
._c{width:80.570798pt;}
._42{width:105.578761pt;}
._43{width:106.969872pt;}
._33{width:180.531768pt;}
.fsb{font-size:8.319997pt;}
.fs3{font-size:10.879996pt;}
.fsa{font-size:21.119992pt;}
.fs7{font-size:34.559986pt;}
.fsd{font-size:37.119985pt;}
.fs6{font-size:42.879983pt;}
.fs9{font-size:47.999981pt;}
.fs8{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.fsc{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;}
.yd6{bottom:2.719069pt;}
.yd9{bottom:2.719075pt;}
.ydb{bottom:2.719081pt;}
.ydd{bottom:2.719087pt;}
.ydf{bottom:2.719093pt;}
.ye1{bottom:2.719099pt;}
.ye3{bottom:2.719104pt;}
.y99{bottom:2.719110pt;}
.y9c{bottom:2.719116pt;}
.y9e{bottom:2.719123pt;}
.ya0{bottom:2.719129pt;}
.ya2{bottom:2.719134pt;}
.ya4{bottom:2.719140pt;}
.ya6{bottom:2.719146pt;}
.ya8{bottom:2.719152pt;}
.yaa{bottom:2.719158pt;}
.yac{bottom:2.719164pt;}
.yae{bottom:2.719170pt;}
.yb0{bottom:2.719175pt;}
.yb2{bottom:2.719181pt;}
.yb4{bottom:2.719187pt;}
.y1e{bottom:2.719189pt;}
.yb6{bottom:2.719193pt;}
.yb8{bottom:2.719199pt;}
.yf4{bottom:2.719204pt;}
.yf6{bottom:2.719210pt;}
.yf8{bottom:2.719216pt;}
.yfa{bottom:2.719222pt;}
.yfc{bottom:2.719227pt;}
.y28{bottom:2.719228pt;}
.yff{bottom:2.719239pt;}
.y101{bottom:2.719245pt;}
.y103{bottom:2.719250pt;}
.y105{bottom:2.719256pt;}
.y107{bottom:2.719262pt;}
.y109{bottom:2.719268pt;}
.y10b{bottom:2.719274pt;}
.y10d{bottom:2.719280pt;}
.y10f{bottom:2.719286pt;}
.y111{bottom:2.719291pt;}
.y113{bottom:2.719297pt;}
.y115{bottom:2.719303pt;}
.y117{bottom:2.719309pt;}
.y119{bottom:2.719315pt;}
.y11b{bottom:2.719321pt;}
.y11d{bottom:2.719327pt;}
.y11f{bottom:2.719332pt;}
.y121{bottom:2.719338pt;}
.y123{bottom:2.719344pt;}
.y125{bottom:2.719350pt;}
.y127{bottom:2.719356pt;}
.y129{bottom:2.719362pt;}
.y12b{bottom:2.719367pt;}
.y12d{bottom:2.719373pt;}
.y12f{bottom:2.719379pt;}
.y131{bottom:2.719385pt;}
.y133{bottom:2.719391pt;}
.y14{bottom:2.879140pt;}
.y25{bottom:3.039218pt;}
.y44{bottom:3.359058pt;}
.ya{bottom:3.679062pt;}
.y20{bottom:3.839189pt;}
.y4{bottom:3.840025pt;}
.y16{bottom:4.319147pt;}
.y1a{bottom:4.319163pt;}
.y23{bottom:4.319205pt;}
.y6{bottom:52.106912pt;}
.y3{bottom:66.666880pt;}
.y5{bottom:70.186905pt;}
.y2{bottom:70.506638pt;}
.y41{bottom:109.706623pt;}
.y137{bottom:112.586622pt;}
.y85{bottom:115.146621pt;}
.y97{bottom:115.786620pt;}
.y76{bottom:116.106620pt;}
.yd4{bottom:117.706620pt;}
.y40{bottom:130.186615pt;}
.y136{bottom:133.066613pt;}
.y84{bottom:135.786612pt;}
.y96{bottom:136.266612pt;}
.y75{bottom:136.426612pt;}
.yd3{bottom:138.186611pt;}
.y3f{bottom:150.666606pt;}
.y135{bottom:153.546605pt;}
.y83{bottom:156.426604pt;}
.y95{bottom:156.746604pt;}
.y74{bottom:156.906604pt;}
.yd2{bottom:158.666603pt;}
.y3e{bottom:171.146598pt;}
.y134{bottom:174.026597pt;}
.y82{bottom:176.906596pt;}
.y94{bottom:177.066596pt;}
.y73{bottom:177.386596pt;}
.yd1{bottom:179.146595pt;}
.y132{bottom:186.667200pt;}
.y3d{bottom:191.626590pt;}
.yd0{bottom:197.226588pt;}
.y81{bottom:197.546588pt;}
.y72{bottom:197.866588pt;}
.y130{bottom:201.387200pt;}
.y3c{bottom:211.946582pt;}
.ycf{bottom:215.466580pt;}
.y12e{bottom:215.947200pt;}
.y80{bottom:218.026579pt;}
.y71{bottom:218.346579pt;}
.y12c{bottom:230.667200pt;}
.y3b{bottom:232.426574pt;}
.yce{bottom:235.946572pt;}
.y7f{bottom:238.506571pt;}
.y70{bottom:238.826571pt;}
.y12a{bottom:245.227200pt;}
.y3a{bottom:246.826568pt;}
.y39{bottom:250.186567pt;}
.ycd{bottom:256.426564pt;}
.y7e{bottom:258.986563pt;}
.y6f{bottom:259.146563pt;}
.y128{bottom:259.947200pt;}
.y38{bottom:268.426559pt;}
.y126{bottom:274.507200pt;}
.ycc{bottom:276.906556pt;}
.y7d{bottom:279.466555pt;}
.y6e{bottom:279.626555pt;}
.y37{bottom:288.906551pt;}
.y124{bottom:289.067200pt;}
.ycb{bottom:297.226548pt;}
.y7c{bottom:299.786547pt;}
.y6d{bottom:300.106547pt;}
.y122{bottom:303.787200pt;}
.y36{bottom:309.386543pt;}
.yca{bottom:317.706540pt;}
.y120{bottom:318.347200pt;}
.y7b{bottom:320.266539pt;}
.y6c{bottom:320.586538pt;}
.y35{bottom:329.706535pt;}
.y11e{bottom:333.067200pt;}
.yc9{bottom:338.186531pt;}
.y7a{bottom:340.746530pt;}
.y6b{bottom:341.066530pt;}
.y11c{bottom:347.627200pt;}
.y34{bottom:350.186527pt;}
.yc8{bottom:358.666523pt;}
.y79{bottom:361.226522pt;}
.y6a{bottom:361.546522pt;}
.y11a{bottom:362.347200pt;}
.y33{bottom:370.666518pt;}
.y118{bottom:376.907200pt;}
.yc7{bottom:379.146515pt;}
.y78{bottom:381.706514pt;}
.y69{bottom:381.866514pt;}
.y32{bottom:391.146510pt;}
.y116{bottom:391.627200pt;}
.yc6{bottom:399.626507pt;}
.y93{bottom:402.026506pt;}
.y77{bottom:402.186506pt;}
.y68{bottom:402.346506pt;}
.y114{bottom:406.187200pt;}
.y31{bottom:411.626502pt;}
.yc5{bottom:419.946499pt;}
.y112{bottom:420.907200pt;}
.y92{bottom:422.506498pt;}
.y67{bottom:422.826498pt;}
.y30{bottom:432.106494pt;}
.y110{bottom:435.467200pt;}
.yc4{bottom:440.426490pt;}
.y91{bottom:442.986489pt;}
.y66{bottom:443.306489pt;}
.y10e{bottom:450.187200pt;}
.y2f{bottom:452.426486pt;}
.yc3{bottom:460.906482pt;}
.y90{bottom:463.466481pt;}
.y154{bottom:463.626481pt;}
.y65{bottom:463.786481pt;}
.y10c{bottom:464.747200pt;}
.y2e{bottom:472.906478pt;}
.y10a{bottom:479.467200pt;}
.yc2{bottom:481.386474pt;}
.y8f{bottom:483.946473pt;}
.y64{bottom:484.266473pt;}
.y2d{bottom:493.386469pt;}
.y108{bottom:494.027200pt;}
.y153{bottom:495.146469pt;}
.yc1{bottom:501.866466pt;}
.y8e{bottom:504.426465pt;}
.y63{bottom:504.586465pt;}
.y106{bottom:508.747200pt;}
.y2c{bottom:513.866461pt;}
.y152{bottom:514.986461pt;}
.yc0{bottom:522.346458pt;}
.y104{bottom:523.307200pt;}
.y8d{bottom:524.746457pt;}
.y62{bottom:525.066457pt;}
.y2b{bottom:534.346453pt;}
.y151{bottom:534.666453pt;}
.y102{bottom:537.867200pt;}
.ybf{bottom:542.666450pt;}
.y8c{bottom:545.226449pt;}
.y61{bottom:545.546448pt;}
.y150{bottom:552.426446pt;}
.y100{bottom:552.587200pt;}
.y2a{bottom:554.826445pt;}
.ybe{bottom:563.146441pt;}
.y8b{bottom:565.706440pt;}
.y60{bottom:566.026440pt;}
.yfe{bottom:567.147200pt;}
.y14f{bottom:569.866439pt;}
.y29{bottom:575.146437pt;}
.ybd{bottom:583.626433pt;}
.yfd{bottom:584.586433pt;}
.y8a{bottom:586.186432pt;}
.y5f{bottom:586.506432pt;}
.y14e{bottom:589.546431pt;}
.y27{bottom:592.907200pt;}
.yfb{bottom:595.467200pt;}
.ybc{bottom:604.106425pt;}
.y89{bottom:606.666424pt;}
.y5e{bottom:606.826424pt;}
.y14d{bottom:609.386423pt;}
.yf9{bottom:610.187200pt;}
.y24{bottom:617.867200pt;}
.y26{bottom:620.906418pt;}
.ybb{bottom:624.586417pt;}
.yf7{bottom:624.747200pt;}
.y88{bottom:627.146416pt;}
.y5d{bottom:627.306416pt;}
.y14c{bottom:629.226415pt;}
.yf5{bottom:639.307200pt;}
.yba{bottom:642.666410pt;}
.y87{bottom:647.466408pt;}
.y5c{bottom:647.786408pt;}
.y14b{bottom:648.906407pt;}
.y22{bottom:650.187200pt;}
.yf3{bottom:654.027200pt;}
.y21{bottom:654.506405pt;}
.yb9{bottom:655.946404pt;}
.yb7{bottom:666.827200pt;}
.y86{bottom:668.106399pt;}
.y5b{bottom:668.266399pt;}
.yf2{bottom:668.587200pt;}
.y14a{bottom:668.746399pt;}
.yb5{bottom:681.547200pt;}
.yf1{bottom:683.307200pt;}
.y149{bottom:688.426391pt;}
.y5a{bottom:688.746391pt;}
.y1f{bottom:689.707200pt;}
.y1d{bottom:690.827200pt;}
.yb3{bottom:696.107200pt;}
.yf0{bottom:697.867200pt;}
.y1c{bottom:707.786384pt;}
.y148{bottom:708.266383pt;}
.y59{bottom:709.226383pt;}
.yb1{bottom:710.667200pt;}
.yef{bottom:712.587200pt;}
.yaf{bottom:725.387200pt;}
.yee{bottom:727.147200pt;}
.y147{bottom:727.946375pt;}
.y58{bottom:729.546375pt;}
.y1b{bottom:732.746374pt;}
.yad{bottom:739.947200pt;}
.yed{bottom:741.867200pt;}
.y146{bottom:747.786368pt;}
.y57{bottom:750.026367pt;}
.yab{bottom:754.667200pt;}
.y19{bottom:755.627200pt;}
.yec{bottom:759.146363pt;}
.y145{bottom:767.626360pt;}
.ya9{bottom:769.227200pt;}
.yeb{bottom:770.027200pt;}
.y56{bottom:770.506358pt;}
.y18{bottom:775.786356pt;}
.ya7{bottom:783.947200pt;}
.yea{bottom:784.747200pt;}
.y144{bottom:787.306352pt;}
.y55{bottom:790.986350pt;}
.y15{bottom:795.947200pt;}
.ya5{bottom:798.507200pt;}
.ye9{bottom:800.427200pt;}
.y17{bottom:804.906345pt;}
.y143{bottom:807.146344pt;}
.y54{bottom:811.466342pt;}
.ya3{bottom:813.227200pt;}
.y13{bottom:814.027200pt;}
.ye8{bottom:825.706336pt;}
.y142{bottom:826.826336pt;}
.ya1{bottom:827.787200pt;}
.y53{bottom:831.946334pt;}
.y9f{bottom:842.507200pt;}
.y11{bottom:843.786265pt;}
.y12{bottom:843.786329pt;}
.y141{bottom:844.586329pt;}
.ye7{bottom:846.186328pt;}
.y52{bottom:852.266326pt;}
.y9d{bottom:857.067200pt;}
.ye6{bottom:858.827200pt;}
.y140{bottom:862.026322pt;}
.y51{bottom:872.746318pt;}
.y9b{bottom:872.747200pt;}
.ye5{bottom:873.547200pt;}
.y9a{bottom:877.386316pt;}
.y10{bottom:880.106315pt;}
.y13f{bottom:881.706314pt;}
.ye4{bottom:888.107200pt;}
.y98{bottom:888.427200pt;}
.y50{bottom:893.226309pt;}
.y13e{bottom:899.626307pt;}
.yf{bottom:900.906306pt;}
.ye2{bottom:902.827200pt;}
.y4f{bottom:913.706301pt;}
.ye{bottom:915.466300pt;}
.yd{bottom:915.786300pt;}
.y13d{bottom:916.906300pt;}
.ye0{bottom:917.387200pt;}
.yde{bottom:932.107200pt;}
.y4e{bottom:934.186293pt;}
.y13c{bottom:936.746292pt;}
.ydc{bottom:946.667200pt;}
.y48{bottom:954.027200pt;}
.y4d{bottom:954.666285pt;}
.y13b{bottom:956.426284pt;}
.yda{bottom:961.387200pt;}
.y47{bottom:962.026282pt;}
.y4c{bottom:974.986277pt;}
.y13a{bottom:976.266276pt;}
.yd8{bottom:976.907200pt;}
.yd7{bottom:979.626275pt;}
.y46{bottom:980.906274pt;}
.yd5{bottom:990.667200pt;}
.y4b{bottom:995.466268pt;}
.y139{bottom:995.946268pt;}
.y45{bottom:999.946267pt;}
.yc{bottom:1001.866266pt;}
.yb{bottom:1002.186266pt;}
.y9{bottom:1008.267200pt;}
.y138{bottom:1015.786260pt;}
.y4a{bottom:1015.946260pt;}
.y43{bottom:1018.027200pt;}
.y42{bottom:1021.386258pt;}
.y1{bottom:1060.266243pt;}
.y7{bottom:1062.987200pt;}
.h24{height:2.560000pt;}
.hb{height:7.262185pt;}
.he{height:12.000000pt;}
.h17{height:13.440000pt;}
.h27{height:13.600000pt;}
.h29{height:13.760000pt;}
.h1e{height:14.097182pt;}
.h19{height:14.560000pt;}
.h1c{height:15.200000pt;}
.h10{height:17.920000pt;}
.h14{height:18.080000pt;}
.h2{height:18.240000pt;}
.h7{height:18.400000pt;}
.h4{height:18.560000pt;}
.h22{height:19.360000pt;}
.h1f{height:23.034366pt;}
.h12{height:23.068116pt;}
.h28{height:28.075614pt;}
.hf{height:28.621551pt;}
.h1b{height:29.856863pt;}
.h13{height:32.788112pt;}
.h16{height:35.560298pt;}
.h18{height:36.304673pt;}
.h23{height:36.703110pt;}
.h20{height:38.387485pt;}
.h1d{height:40.177171pt;}
.h8{height:42.656233pt;}
.h11{height:42.718733pt;}
.h15{height:42.843733pt;}
.h25{height:44.362482pt;}
.h1a{height:44.562482pt;}
.h26{height:47.109356pt;}
.ha{height:48.406231pt;}
.h21{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;}
.w25{width:1.600000pt;}
.w22{width:2.080000pt;}
.w57{width:2.400000pt;}
.w50{width:2.880000pt;}
.w12{width:3.040000pt;}
.w1a{width:3.200000pt;}
.w10{width:4.000000pt;}
.wa{width:4.160000pt;}
.w28{width:4.480000pt;}
.w64{width:4.640000pt;}
.w58{width:5.120000pt;}
.w55{width:5.280000pt;}
.w1{width:5.760000pt;}
.w49{width:6.080000pt;}
.w66{width:6.240000pt;}
.w48{width:6.400000pt;}
.w3f{width:6.560000pt;}
.w4c{width:6.720000pt;}
.w16{width:6.880000pt;}
.w44{width:7.200000pt;}
.w7{width:7.360000pt;}
.w29{width:7.680000pt;}
.w17{width:7.840000pt;}
.w38{width:8.480000pt;}
.w1e{width:8.800000pt;}
.w1d{width:9.440000pt;}
.w5{width:9.920000pt;}
.w6{width:10.080000pt;}
.w43{width:10.240000pt;}
.w6b{width:11.040000pt;}
.wa1{width:11.200000pt;}
.wc3{width:11.360000pt;}
.we{width:11.520000pt;}
.wdc{width:11.680000pt;}
.w45{width:11.840000pt;}
.w98{width:12.000000pt;}
.wa4{width:12.320000pt;}
.w8c{width:12.480000pt;}
.wda{width:12.640000pt;}
.wbd{width:12.800000pt;}
.wb5{width:12.960000pt;}
.wb7{width:13.120000pt;}
.wb0{width:13.280000pt;}
.wab{width:13.440000pt;}
.wdb{width:13.760000pt;}
.wc1{width:13.920000pt;}
.w46{width:14.080000pt;}
.w3{width:14.240000pt;}
.w5c{width:14.880000pt;}
.w8e{width:15.040000pt;}
.wcf{width:15.200000pt;}
.w51{width:15.360000pt;}
.w52{width:15.840000pt;}
.waa{width:16.320000pt;}
.w82{width:16.480000pt;}
.w14{width:16.640000pt;}
.wa3{width:16.960000pt;}
.w7f{width:17.440000pt;}
.wcd{width:18.880000pt;}
.wd6{width:19.360000pt;}
.w9d{width:19.840000pt;}
.w72{width:20.320000pt;}
.w77{width:20.960000pt;}
.wd4{width:21.280000pt;}
.wd7{width:21.440000pt;}
.w94{width:21.600000pt;}
.w5a{width:21.760000pt;}
.w9b{width:21.920000pt;}
.w9{width:22.400000pt;}
.w86{width:22.560000pt;}
.w93{width:22.720000pt;}
.w68{width:22.880000pt;}
.w67{width:23.040000pt;}
.wb3{width:23.200000pt;}
.w71{width:23.360000pt;}
.w8b{width:23.520000pt;}
.w7e{width:23.680000pt;}
.w7a{width:23.840000pt;}
.w7b{width:24.000000pt;}
.w6e{width:24.160000pt;}
.w6f{width:24.480000pt;}
.w73{width:25.920000pt;}
.wd3{width:26.240000pt;}
.w59{width:26.400000pt;}
.wa5{width:27.520000pt;}
.w5f{width:27.840000pt;}
.wde{width:28.160000pt;}
.wdf{width:28.320000pt;}
.w80{width:28.480000pt;}
.w89{width:28.640000pt;}
.we0{width:29.440000pt;}
.w4{width:29.760000pt;}
.wbb{width:29.920000pt;}
.w99{width:30.400000pt;}
.w3d{width:30.560000pt;}
.w60{width:30.720000pt;}
.w3a{width:31.200000pt;}
.w95{width:32.160000pt;}
.w78{width:32.480000pt;}
.w87{width:33.280000pt;}
.w7c{width:33.440000pt;}
.wac{width:33.600000pt;}
.w97{width:34.240000pt;}
.wca{width:34.400000pt;}
.wc2{width:34.560000pt;}
.w62{width:34.720000pt;}
.wd0{width:34.880000pt;}
.wb8{width:35.040000pt;}
.w69{width:35.680000pt;}
.wd8{width:36.000000pt;}
.w8d{width:36.160000pt;}
.w40{width:36.320000pt;}
.w9c{width:36.480000pt;}
.wa2{width:36.640000pt;}
.w6c{width:36.800000pt;}
.w9e{width:36.960000pt;}
.wc6{width:37.280000pt;}
.w74{width:37.440000pt;}
.wc5{width:37.600000pt;}
.w91{width:37.760000pt;}
.w54{width:37.920000pt;}
.wc8{width:39.360000pt;}
.w85{width:39.680000pt;}
.w21{width:40.160000pt;}
.w3b{width:40.320000pt;}
.wd1{width:40.640000pt;}
.w41{width:40.960000pt;}
.w5e{width:41.280000pt;}
.w3c{width:41.600000pt;}
.w84{width:41.760000pt;}
.w24{width:43.200000pt;}
.w27{width:43.520000pt;}
.w2e{width:43.680000pt;}
.w32{width:44.480000pt;}
.w39{width:44.960000pt;}
.wb{width:45.440000pt;}
.w4f{width:45.760000pt;}
.w23{width:46.400000pt;}
.w33{width:47.520000pt;}
.w2c{width:48.960000pt;}
.w56{width:49.120000pt;}
.wd5{width:50.560000pt;}
.w65{width:50.720000pt;}
.wc9{width:50.880000pt;}
.w26{width:51.040000pt;}
.w79{width:52.320000pt;}
.w7d{width:52.480000pt;}
.w83{width:52.640000pt;}
.wcb{width:55.840000pt;}
.w30{width:56.480000pt;}
.w2a{width:57.760000pt;}
.w3e{width:58.240000pt;}
.w18{width:58.400000pt;}
.wcc{width:58.720000pt;}
.w75{width:59.200000pt;}
.w31{width:59.840000pt;}
.w2b{width:60.000000pt;}
.we2{width:60.320000pt;}
.w8a{width:60.640000pt;}
.wba{width:61.600000pt;}
.w5d{width:63.360000pt;}
.we1{width:63.840000pt;}
.w5b{width:64.320000pt;}
.w20{width:64.800000pt;}
.w36{width:65.440000pt;}
.wb4{width:69.120000pt;}
.wf{width:69.280000pt;}
.wa8{width:69.600000pt;}
.wa0{width:71.200000pt;}
.w81{width:71.360000pt;}
.waf{width:71.680000pt;}
.wce{width:71.840000pt;}
.wb1{width:72.000000pt;}
.w35{width:72.960000pt;}
.w6d{width:73.760000pt;}
.w9a{width:75.680000pt;}
.w2d{width:77.120000pt;}
.w2f{width:77.760000pt;}
.wae{width:78.080000pt;}
.wbe{width:78.400000pt;}
.w76{width:78.880000pt;}
.w70{width:80.480000pt;}
.w1f{width:80.960000pt;}
.wc7{width:82.400000pt;}
.w63{width:82.720000pt;}
.wa6{width:83.360000pt;}
.w42{width:84.320000pt;}
.w34{width:86.080000pt;}
.w37{width:86.560000pt;}
.w88{width:87.840000pt;}
.w6a{width:89.600000pt;}
.w53{width:91.360000pt;}
.w4a{width:91.520000pt;}
.w4d{width:92.320000pt;}
.w4e{width:96.320000pt;}
.wc0{width:98.560000pt;}
.wbf{width:100.160000pt;}
.wdd{width:100.640000pt;}
.w19{width:101.920000pt;}
.w13{width:104.640000pt;}
.w2{width:106.400000pt;}
.wa7{width:110.080000pt;}
.wd9{width:114.560000pt;}
.wbc{width:115.200000pt;}
.w15{width:115.520000pt;}
.w8{width:118.080000pt;}
.wd2{width:126.400000pt;}
.w90{width:130.560000pt;}
.w47{width:138.400000pt;}
.w9f{width:143.520000pt;}
.wad{width:145.440000pt;}
.w4b{width:149.760000pt;}
.w8f{width:150.080000pt;}
.wb6{width:151.840000pt;}
.wb2{width:154.240000pt;}
.w96{width:158.400000pt;}
.wc4{width:160.800000pt;}
.wa9{width:170.880000pt;}
.w61{width:173.440000pt;}
.wd{width:198.080000pt;}
.wb9{width:216.800000pt;}
.w92{width:227.840000pt;}
.w1b{width:236.960000pt;}
.wc{width:242.560000pt;}
.w1c{width:256.320000pt;}
.w11{width:275.840000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2c{left:0.954487pt;}
.x1{left:95.999962pt;}
.x1e{left:97.119961pt;}
.x88{left:101.120000pt;}
.x9c{left:102.560000pt;}
.x37{left:103.519959pt;}
.x5{left:106.880000pt;}
.xbc{left:108.480000pt;}
.xd1{left:110.080000pt;}
.x2{left:114.399892pt;}
.x82{left:120.000000pt;}
.x83{left:135.840000pt;}
.x3{left:138.400000pt;}
.x47{left:139.520000pt;}
.x56{left:140.480000pt;}
.x7d{left:141.760000pt;}
.x57{left:143.520000pt;}
.x51{left:144.960000pt;}
.x89{left:146.400000pt;}
.xd0{left:147.520000pt;}
.xad{left:148.480000pt;}
.x93{left:150.720000pt;}
.x4{left:152.799939pt;}
.x4f{left:153.760000pt;}
.x32{left:155.199938pt;}
.xbd{left:156.160000pt;}
.xc1{left:157.760000pt;}
.x7e{left:160.000000pt;}
.xa{left:164.639934pt;}
.x28{left:166.400000pt;}
.x84{left:168.000000pt;}
.x59{left:168.960000pt;}
.x29{left:170.400000pt;}
.x52{left:173.120000pt;}
.x94{left:174.560000pt;}
.xa4{left:177.600000pt;}
.x95{left:179.040000pt;}
.x65{left:180.320000pt;}
.x58{left:182.080000pt;}
.xbe{left:183.040000pt;}
.xf4{left:184.160000pt;}
.x73{left:187.520000pt;}
.x8a{left:189.760000pt;}
.x40{left:191.360000pt;}
.x7c{left:192.320000pt;}
.x8b{left:194.240000pt;}
.xed{left:195.200000pt;}
.x33{left:198.080000pt;}
.xd2{left:199.200000pt;}
.xc3{left:200.160000pt;}
.x34{left:201.280000pt;}
.xeb{left:202.240000pt;}
.xd3{left:203.680000pt;}
.xc4{left:204.640000pt;}
.xea{left:208.160000pt;}
.x48{left:209.120000pt;}
.x20{left:210.239916pt;}
.xec{left:211.840000pt;}
.x6{left:213.280000pt;}
.x21{left:215.039914pt;}
.x22{left:219.360000pt;}
.xab{left:220.480000pt;}
.xee{left:223.840000pt;}
.xaa{left:229.920000pt;}
.xb{left:230.880281pt;}
.x6e{left:234.400000pt;}
.x41{left:235.360000pt;}
.xe1{left:237.120000pt;}
.xde{left:240.000000pt;}
.x23{left:241.760000pt;}
.xcb{left:243.680000pt;}
.x24{left:245.920000pt;}
.xa2{left:248.480000pt;}
.xe2{left:250.080000pt;}
.x3e{left:254.240000pt;}
.x49{left:256.480000pt;}
.x9d{left:257.600000pt;}
.x85{left:259.360000pt;}
.x4a{left:260.960000pt;}
.x50{left:262.560000pt;}
.xe4{left:263.840000pt;}
.xf7{left:265.600000pt;}
.xb2{left:267.040000pt;}
.xae{left:269.760000pt;}
.xb3{left:271.520000pt;}
.x9e{left:273.120000pt;}
.xaf{left:274.240000pt;}
.xb4{left:276.640000pt;}
.x8c{left:277.920000pt;}
.x42{left:281.760000pt;}
.xa5{left:283.200000pt;}
.x43{left:285.120000pt;}
.xef{left:287.200000pt;}
.xa6{left:289.920000pt;}
.x25{left:291.359883pt;}
.xa7{left:294.400000pt;}
.x5a{left:297.599881pt;}
.xf3{left:299.680000pt;}
.x4b{left:303.040000pt;}
.x39{left:304.479878pt;}
.xf0{left:306.080000pt;}
.x66{left:307.520000pt;}
.x53{left:309.120000pt;}
.x4c{left:310.720000pt;}
.xd4{left:313.760000pt;}
.x76{left:314.880000pt;}
.x6f{left:316.320000pt;}
.x67{left:317.760000pt;}
.x3f{left:319.040000pt;}
.xcc{left:322.720000pt;}
.x9f{left:325.600000pt;}
.xcd{left:327.360000pt;}
.x44{left:328.320000pt;}
.xa0{left:330.080000pt;}
.x45{left:331.360000pt;}
.xbf{left:337.280000pt;}
.x26{left:339.520000pt;}
.xb5{left:342.080000pt;}
.x8d{left:345.760000pt;}
.xb0{left:347.520000pt;}
.x8e{left:350.240000pt;}
.xb1{left:352.000000pt;}
.x4d{left:353.120000pt;}
.x54{left:354.720000pt;}
.xda{left:355.840000pt;}
.xf2{left:357.440000pt;}
.x55{left:359.200000pt;}
.x4e{left:360.800000pt;}
.xc5{left:362.720000pt;}
.xc6{left:367.200000pt;}
.xa8{left:373.280000pt;}
.x5c{left:374.719850pt;}
.xe9{left:377.280000pt;}
.xc{left:380.160094pt;}
.x46{left:382.400000pt;}
.xd{left:384.160091pt;}
.x5b{left:386.560000pt;}
.x3b{left:387.519845pt;}
.xe5{left:390.240000pt;}
.x77{left:392.000000pt;}
.x68{left:393.280000pt;}
.xe6{left:394.880000pt;}
.xc2{left:395.840000pt;}
.x30{left:399.040000pt;}
.x8f{left:400.800000pt;}
.xe3{left:401.920000pt;}
.xa1{left:403.840000pt;}
.x38{left:411.200455pt;}
.xb6{left:417.920000pt;}
.xb7{left:422.400000pt;}
.xe7{left:428.160000pt;}
.xb8{left:429.120000pt;}
.xb9{left:433.600000pt;}
.x35{left:438.240000pt;}
.x36{left:441.440000pt;}
.x5d{left:442.400000pt;}
.xdf{left:443.680000pt;}
.xdb{left:445.120000pt;}
.x2a{left:446.240000pt;}
.x2b{left:448.320000pt;}
.xc7{left:449.920000pt;}
.xc8{left:454.400000pt;}
.xe{left:458.720045pt;}
.x5f{left:461.919815pt;}
.xc9{left:465.600000pt;}
.xc0{left:467.680000pt;}
.xf{left:470.560037pt;}
.x70{left:473.280000pt;}
.x78{left:474.720000pt;}
.x3d{left:477.279809pt;}
.x79{left:479.200000pt;}
.x71{left:480.640000pt;}
.x10{left:482.400029pt;}
.x5e{left:484.000000pt;}
.xe0{left:486.080000pt;}
.x96{left:488.640000pt;}
.xdc{left:492.960000pt;}
.xba{left:494.240000pt;}
.xdd{left:497.440000pt;}
.xbb{left:498.720000pt;}
.x11{left:501.919965pt;}
.x12{left:505.919962pt;}
.xd5{left:513.760000pt;}
.x13{left:517.759954pt;}
.x3c{left:524.159790pt;}
.xca{left:525.120000pt;}
.x14{left:529.439947pt;}
.x27{left:536.800000pt;}
.x60{left:539.520000pt;}
.x15{left:541.279939pt;}
.x97{left:543.840000pt;}
.x16{left:545.279936pt;}
.x2d{left:552.960000pt;}
.x17{left:560.959873pt;}
.x69{left:563.360000pt;}
.x18{left:564.799872pt;}
.x2e{left:569.280000pt;}
.x6a{left:570.720000pt;}
.x19{left:576.639864pt;}
.x1a{left:580.479862pt;}
.x1b{left:584.479859pt;}
.x1c{left:592.319763pt;}
.x86{left:598.880000pt;}
.xf5{left:604.000000pt;}
.x61{left:605.440000pt;}
.x90{left:606.880000pt;}
.xd7{left:607.840000pt;}
.xce{left:609.600000pt;}
.x62{left:616.800000pt;}
.x98{left:618.079753pt;}
.x7{left:619.840000pt;}
.xcf{left:626.560000pt;}
.xd8{left:628.160000pt;}
.x91{left:629.280000pt;}
.xd6{left:630.240000pt;}
.xf6{left:632.160000pt;}
.x7f{left:634.400000pt;}
.x1f{left:635.679746pt;}
.x87{left:636.800000pt;}
.x64{left:638.879744pt;}
.x6b{left:642.560000pt;}
.x74{left:643.840000pt;}
.x72{left:646.400000pt;}
.x7a{left:647.360000pt;}
.x8{left:649.600000pt;}
.x80{left:650.720000pt;}
.x7b{left:651.840000pt;}
.x63{left:653.120000pt;}
.xe8{left:654.400000pt;}
.x75{left:655.360000pt;}
.x6c{left:656.640000pt;}
.x99{left:657.600000pt;}
.xa9{left:658.560000pt;}
.x9{left:659.520000pt;}
.xd9{left:660.960000pt;}
.x81{left:664.960000pt;}
.x9b{left:669.119732pt;}
.xf1{left:676.640000pt;}
.xac{left:677.760000pt;}
.xa3{left:679.200000pt;}
.x9a{left:680.480000pt;}
.x92{left:683.040000pt;}
.x2f{left:684.800000pt;}
.x6d{left:687.360000pt;}
.x3a{left:692.960000pt;}
.x31{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; }
  