
    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_bbb8970dd250b97446003b84.woff')format("woff");}.ff1{font-family:ff1;line-height:0.890137;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_30c56e4e340517addca9539b.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_de518ff7aca87314cb94488b.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_62e5c0807f45b045c5d7d754.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7b2d36a03252acf5c65ab59e.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_dfa75bac17511dc97962e652.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_799b8701a23a2d9e13f7b87a.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_833808e81ff4fe233d9f267a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.931641;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_f55308cf9191d69be3882182.woff')format("woff");}.ffa{font-family:ffa;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1c7bc2a4e2d2c2fc6430f337.woff')format("woff");}.ffb{font-family:ffb;line-height:0.940430;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_bbe6d7d5cf5388873707ca2b.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_e8c026811667e36e5fd0e0de.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_9d1c9f7eaba4bc812c81c1a0.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_c10fb345c2832f9280d6e7b8.woff')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_654f9f85bb29ebc1d5103d1c.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_6eb0b5adffcd041fbaddb4de.woff')format("woff");}.ff11{font-family:ff11;line-height:0.910156;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_abfc3f906c0f33c4cd381df0.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_ddf0ebb2f79b1732f4dd37ee.woff')format("woff");}.ff13{font-family:ff13;line-height:0.922363;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;}
.m3{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m6{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m5{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);}
.m0{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m9{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;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010553px;}
.ls6{letter-spacing:0.055440px;}
.ls1{letter-spacing:0.073080px;}
.ls5{letter-spacing:0.093305px;}
.lsa{letter-spacing:0.109440px;}
.ls9{letter-spacing:0.195300px;}
.ls7{letter-spacing:0.237060px;}
.ls8{letter-spacing:0.308220px;}
.ls4{letter-spacing:0.365940px;}
.ls3{letter-spacing:35.272066px;}
.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;}
}
.ws0{word-spacing:-18.532793px;}
.ws1{word-spacing:-17.999993px;}
.ws6{word-spacing:-13.715995px;}
.ws4{word-spacing:-13.107300px;}
.ws2{word-spacing:-13.013995px;}
.ws5{word-spacing:-8.675997px;}
.ws3{word-spacing:0.000000px;}
._7{margin-left:-937.399989px;}
._c{margin-left:-468.216941px;}
._3{margin-left:-277.545825px;}
._b{margin-left:-229.327439px;}
._6{margin-left:-219.254252px;}
._9{margin-left:-211.190256px;}
._1{margin-left:-90.563177px;}
._a{margin-left:-68.874927px;}
._8{margin-left:-52.559242px;}
._0{margin-left:-25.559162px;}
._5{margin-left:-16.559129px;}
._31{margin-left:-2.744086px;}
._2{margin-left:-1.684403px;}
._4{width:1.236066px;}
._1b{width:2.333667px;}
._f{width:4.030787px;}
._10{width:5.141868px;}
._12{width:6.461435px;}
._13{width:7.583834px;}
._11{width:8.720368px;}
._30{width:9.774843px;}
._15{width:10.781698px;}
._1a{width:11.955546px;}
._24{width:14.223456px;}
._17{width:15.496283px;}
._1c{width:16.767401px;}
._16{width:17.789815px;}
._21{width:19.368665px;}
._2a{width:21.010583px;}
._14{width:22.547544px;}
._18{width:23.694462px;}
._27{width:25.287603px;}
._34{width:26.428949px;}
._1f{width:27.494517px;}
._20{width:28.934959px;}
._2b{width:29.939245px;}
._32{width:31.556007px;}
._2e{width:33.017962px;}
._28{width:34.649709px;}
._1d{width:35.847592px;}
._19{width:37.770451px;}
._29{width:39.069101px;}
._25{width:40.081456px;}
._26{width:41.501594px;}
._d{width:42.973505px;}
._e{width:44.714055px;}
._2f{width:46.078350px;}
._38{width:47.284261px;}
._3a{width:48.793933px;}
._36{width:50.953005px;}
._35{width:52.101998px;}
._39{width:54.251499px;}
._1e{width:56.501993px;}
._3b{width:59.049454px;}
._23{width:60.483937px;}
._22{width:62.066219px;}
._33{width:64.320566px;}
._2c{width:67.027364px;}
._2d{width:68.309900px;}
._37{width:88.994290px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,101,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,130,59);}
.fc0{color:rgb(51,153,51);}
.fs3{font-size:17.999993px;}
.fsa{font-size:35.999986px;}
.fs6{font-size:38.879984px;}
.fs5{font-size:48.239981px;}
.fs8{font-size:53.999978px;}
.fs9{font-size:59.759976px;}
.fs7{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fsb{font-size:74.879970px;}
.fs0{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs2{font-size:107.999957px;}
.y4e{bottom:-5.761018px;}
.y0{bottom:0.000000px;}
.y89{bottom:2.879092px;}
.y8d{bottom:2.879098px;}
.y91{bottom:2.879104px;}
.y95{bottom:2.879110px;}
.y99{bottom:2.879116px;}
.y9d{bottom:2.879123px;}
.ya1{bottom:2.879129px;}
.ya5{bottom:2.879135px;}
.ya9{bottom:2.879141px;}
.yad{bottom:2.879147px;}
.yb1{bottom:2.879153px;}
.yb5{bottom:2.879159px;}
.yb9{bottom:2.879166px;}
.ybd{bottom:2.879172px;}
.yc1{bottom:2.879178px;}
.yc5{bottom:2.879184px;}
.yc9{bottom:2.879190px;}
.ycd{bottom:2.879196px;}
.yd1{bottom:2.879202px;}
.yd5{bottom:2.879208px;}
.yd9{bottom:2.879215px;}
.ydd{bottom:2.879221px;}
.ye1{bottom:2.879227px;}
.ye5{bottom:2.879233px;}
.ye9{bottom:2.879239px;}
.yed{bottom:2.879245px;}
.yf1{bottom:2.879251px;}
.yf5{bottom:2.879258px;}
.yf9{bottom:2.879264px;}
.yfd{bottom:2.879270px;}
.y85{bottom:3.059085px;}
.y87{bottom:3.059092px;}
.y110{bottom:3.059096px;}
.y8b{bottom:3.059098px;}
.y8f{bottom:3.059104px;}
.y1d{bottom:3.059106px;}
.y93{bottom:3.059110px;}
.y97{bottom:3.059116px;}
.y9b{bottom:3.059123px;}
.y9f{bottom:3.059129px;}
.ya3{bottom:3.059135px;}
.ya7{bottom:3.059141px;}
.yab{bottom:3.059147px;}
.yaf{bottom:3.059153px;}
.yb3{bottom:3.059159px;}
.yb7{bottom:3.059166px;}
.ybb{bottom:3.059172px;}
.ybf{bottom:3.059178px;}
.yc3{bottom:3.059184px;}
.yc7{bottom:3.059190px;}
.ycb{bottom:3.059196px;}
.ycf{bottom:3.059202px;}
.yd3{bottom:3.059208px;}
.yd7{bottom:3.059215px;}
.ydb{bottom:3.059221px;}
.ydf{bottom:3.059227px;}
.ye3{bottom:3.059233px;}
.ye7{bottom:3.059239px;}
.y115{bottom:3.059244px;}
.yeb{bottom:3.059245px;}
.yef{bottom:3.059251px;}
.yf3{bottom:3.059258px;}
.yf7{bottom:3.059264px;}
.yfb{bottom:3.059270px;}
.yf{bottom:3.239038px;}
.y18{bottom:3.599088px;}
.y1b{bottom:3.599092px;}
.y6{bottom:4.138948px;}
.y2{bottom:4.678926px;}
.y11{bottom:4.859046px;}
.y15{bottom:4.859064px;}
.y49{bottom:6.478948px;}
.y10a{bottom:58.440277px;}
.y4{bottom:58.620277px;}
.y121{bottom:113.879954px;}
.y13c{bottom:114.599954px;}
.y16c{bottom:117.119953px;}
.y7b{bottom:121.619951px;}
.y107{bottom:123.959950px;}
.y81{bottom:124.139950px;}
.y47{bottom:125.039950px;}
.y3a{bottom:127.919949px;}
.y120{bottom:136.919945px;}
.y13b{bottom:137.639945px;}
.y16b{bottom:140.699944px;}
.y7a{bottom:144.659942px;}
.y106{bottom:146.999941px;}
.y80{bottom:147.179941px;}
.y46{bottom:148.079941px;}
.y39{bottom:148.619941px;}
.y11f{bottom:159.959936px;}
.y13a{bottom:160.499936px;}
.y16a{bottom:164.279934px;}
.y78{bottom:167.699933px;}
.y38{bottom:169.319932px;}
.y105{bottom:170.039932px;}
.y7f{bottom:170.219932px;}
.y45{bottom:171.119932px;}
.y79{bottom:171.479931px;}
.y11e{bottom:182.999927px;}
.y139{bottom:183.539927px;}
.y169{bottom:187.859925px;}
.y37{bottom:190.019924px;}
.y77{bottom:190.559924px;}
.y7e{bottom:191.819923px;}
.y104{bottom:193.079923px;}
.y141{bottom:193.259923px;}
.y44{bottom:194.159922px;}
.y11d{bottom:206.039918px;}
.y138{bottom:206.579917px;}
.y36{bottom:210.719916px;}
.y168{bottom:211.619915px;}
.y76{bottom:213.599915px;}
.y103{bottom:216.119914px;}
.y43{bottom:217.019913px;}
.y11c{bottom:228.899908px;}
.y137{bottom:229.619908px;}
.y35{bottom:231.419907px;}
.y167{bottom:235.199906px;}
.y75{bottom:236.639905px;}
.y102{bottom:239.159904px;}
.y42{bottom:240.059904px;}
.y11b{bottom:251.939899px;}
.y34{bottom:252.119899px;}
.y136{bottom:252.659899px;}
.y41{bottom:256.619897px;}
.y166{bottom:258.779896px;}
.y74{bottom:259.679896px;}
.y101{bottom:262.019895px;}
.y140{bottom:262.199895px;}
.y33{bottom:272.819891px;}
.y11a{bottom:274.979890px;}
.y135{bottom:275.699890px;}
.y40{bottom:277.319889px;}
.y165{bottom:282.539887px;}
.y73{bottom:282.719887px;}
.yff{bottom:285.059886px;}
.y13f{bottom:285.239886px;}
.y100{bottom:288.839884px;}
.y32{bottom:293.519883px;}
.y3f{bottom:298.019881px;}
.y134{bottom:298.559881px;}
.y72{bottom:305.759878px;}
.y164{bottom:306.119878px;}
.y13e{bottom:307.019877px;}
.yfe{bottom:308.099877px;}
.y31{bottom:314.219874px;}
.y3e{bottom:318.719873px;}
.y119{bottom:321.059872px;}
.y133{bottom:321.599871px;}
.yfa{bottom:322.500600px;}
.yfc{bottom:322.680600px;}
.y118{bottom:324.839870px;}
.y71{bottom:328.619869px;}
.y163{bottom:329.879868px;}
.y30{bottom:334.919866px;}
.yf6{bottom:337.800600px;}
.yf8{bottom:337.980600px;}
.y3d{bottom:339.419864px;}
.y132{bottom:343.379863px;}
.y117{bottom:343.919862px;}
.y70{bottom:351.659859px;}
.yf2{bottom:353.100600px;}
.yf4{bottom:353.280600px;}
.y162{bottom:353.459859px;}
.y3c{bottom:360.119856px;}
.y2f{bottom:361.919855px;}
.y131{bottom:365.159854px;}
.y116{bottom:366.959853px;}
.yee{bottom:368.400600px;}
.yf0{bottom:368.580600px;}
.y6f{bottom:374.699850px;}
.y161{bottom:377.039849px;}
.y3b{bottom:380.819848px;}
.yea{bottom:383.880600px;}
.yec{bottom:384.060600px;}
.y2e{bottom:384.959846px;}
.y114{bottom:386.940600px;}
.y130{bottom:388.019845px;}
.y6e{bottom:397.739841px;}
.ye6{bottom:399.180600px;}
.ye8{bottom:399.360600px;}
.y160{bottom:400.799840px;}
.y2d{bottom:401.159840px;}
.y2c{bottom:404.939838px;}
.y113{bottom:409.979836px;}
.y12f{bottom:411.059836px;}
.ye2{bottom:414.480600px;}
.ye4{bottom:414.660600px;}
.y6d{bottom:420.779832px;}
.y15f{bottom:424.379830px;}
.y2b{bottom:425.459830px;}
.yde{bottom:429.780600px;}
.ye0{bottom:429.960600px;}
.y12e{bottom:434.099826px;}
.y6c{bottom:443.819822px;}
.yda{bottom:445.080600px;}
.ydc{bottom:445.260600px;}
.y15e{bottom:447.959821px;}
.y2a{bottom:448.499821px;}
.y12d{bottom:457.139817px;}
.yd6{bottom:460.560600px;}
.yd8{bottom:460.740600px;}
.y6b{bottom:466.679813px;}
.y29{bottom:471.539811px;}
.y15d{bottom:471.719811px;}
.yd2{bottom:475.860600px;}
.yd4{bottom:476.040600px;}
.y12c{bottom:480.179808px;}
.y6a{bottom:489.719804px;}
.yce{bottom:491.160600px;}
.yd0{bottom:491.340600px;}
.y28{bottom:494.399802px;}
.y15c{bottom:495.299802px;}
.y12b{bottom:503.219799px;}
.yca{bottom:506.460600px;}
.ycc{bottom:506.640600px;}
.y69{bottom:512.759795px;}
.y27{bottom:517.439793px;}
.y15b{bottom:519.059792px;}
.yc6{bottom:521.940600px;}
.yc8{bottom:522.120600px;}
.y12a{bottom:526.079790px;}
.y68{bottom:535.799786px;}
.yc2{bottom:537.240600px;}
.yc4{bottom:537.420600px;}
.y26{bottom:540.479784px;}
.y15a{bottom:542.639783px;}
.y129{bottom:549.119780px;}
.ybe{bottom:552.540600px;}
.yc0{bottom:552.720600px;}
.y67{bottom:558.839776px;}
.y7d{bottom:562.619775px;}
.y25{bottom:563.519775px;}
.y159{bottom:566.219774px;}
.yba{bottom:567.840600px;}
.ybc{bottom:568.020600px;}
.y128{bottom:572.159771px;}
.y66{bottom:581.699767px;}
.yb6{bottom:583.140600px;}
.yb8{bottom:583.320600px;}
.y24{bottom:586.559765px;}
.y158{bottom:589.979764px;}
.y127{bottom:595.199762px;}
.yb2{bottom:598.620600px;}
.yb4{bottom:598.800600px;}
.y65{bottom:604.739758px;}
.y13d{bottom:608.519757px;}
.y23{bottom:609.419756px;}
.y157{bottom:613.559755px;}
.yae{bottom:613.920600px;}
.yb0{bottom:614.100600px;}
.y126{bottom:615.180600px;}
.y64{bottom:627.779749px;}
.yaa{bottom:629.220600px;}
.yac{bottom:629.400600px;}
.y22{bottom:632.459747px;}
.y156{bottom:637.139745px;}
.y125{bottom:638.039745px;}
.ya6{bottom:644.520600px;}
.ya8{bottom:644.700600px;}
.y63{bottom:650.819740px;}
.y21{bottom:655.499738px;}
.ya2{bottom:660.000600px;}
.ya4{bottom:660.180600px;}
.y155{bottom:660.899736px;}
.y62{bottom:673.859730px;}
.y9e{bottom:675.300600px;}
.ya0{bottom:675.480600px;}
.y20{bottom:678.539729px;}
.y154{bottom:684.479726px;}
.y9a{bottom:690.600600px;}
.y9c{bottom:690.780600px;}
.y61{bottom:696.899721px;}
.y1f{bottom:702.479719px;}
.y96{bottom:705.900600px;}
.y98{bottom:706.080600px;}
.y153{bottom:708.239717px;}
.y112{bottom:714.179714px;}
.y60{bottom:719.759712px;}
.y92{bottom:721.200600px;}
.y94{bottom:721.380600px;}
.y152{bottom:731.819707px;}
.y1c{bottom:733.080600px;}
.y1e{bottom:736.139706px;}
.y8e{bottom:736.680600px;}
.y90{bottom:736.860600px;}
.y111{bottom:737.039705px;}
.y5f{bottom:742.799703px;}
.y8a{bottom:751.980600px;}
.y8c{bottom:752.160600px;}
.y151{bottom:755.399698px;}
.y10f{bottom:757.020600px;}
.y5e{bottom:765.839694px;}
.y1a{bottom:766.560600px;}
.y86{bottom:767.280600px;}
.y88{bottom:767.460600px;}
.y19{bottom:770.159692px;}
.y17{bottom:775.560600px;}
.y150{bottom:779.159688px;}
.y10e{bottom:780.059688px;}
.y84{bottom:783.300600px;}
.y5d{bottom:788.879684px;}
.y14f{bottom:802.739679px;}
.y16{bottom:809.399676px;}
.y5c{bottom:811.919675px;}
.y14e{bottom:826.319669px;}
.y5b{bottom:834.959666px;}
.y14{bottom:835.140600px;}
.y14d{bottom:850.079660px;}
.y13{bottom:857.819657px;}
.y14c{bottom:873.659651px;}
.y10{bottom:880.500600px;}
.y5a{bottom:880.859648px;}
.y12{bottom:890.579644px;}
.y14b{bottom:897.419641px;}
.ye{bottom:900.840600px;}
.y59{bottom:903.899638px;}
.y14a{bottom:920.999632px;}
.y58{bottom:926.939629px;}
.yd{bottom:934.319626px;}
.y149{bottom:944.579622px;}
.y57{bottom:949.979620px;}
.y148{bottom:968.339613px;}
.y56{bottom:973.019611px;}
.yc{bottom:974.999610px;}
.y147{bottom:991.919603px;}
.y83{bottom:995.159602px;}
.y55{bottom:995.879602px;}
.yb{bottom:999.299600px;}
.y146{bottom:1015.499594px;}
.ya{bottom:1017.659593px;}
.y9{bottom:1018.019593px;}
.y82{bottom:1018.199593px;}
.y124{bottom:1018.739593px;}
.y54{bottom:1018.919592px;}
.y145{bottom:1039.259584px;}
.y123{bottom:1041.779583px;}
.y53{bottom:1041.959583px;}
.y4d{bottom:1051.500600px;}
.y144{bottom:1062.839575px;}
.y122{bottom:1064.819574px;}
.y52{bottom:1064.999574px;}
.y4c{bottom:1066.979573px;}
.y7c{bottom:1068.779572px;}
.y143{bottom:1086.599565px;}
.y4b{bottom:1087.319565px;}
.y10d{bottom:1087.859565px;}
.y51{bottom:1088.039565px;}
.y4a{bottom:1107.659557px;}
.y142{bottom:1110.179556px;}
.y10c{bottom:1110.719556px;}
.y50{bottom:1110.899556px;}
.y8{bottom:1118.099553px;}
.y7{bottom:1118.459553px;}
.y48{bottom:1122.600600px;}
.y5{bottom:1125.480600px;}
.y10b{bottom:1133.759546px;}
.y4f{bottom:1133.939546px;}
.y109{bottom:1150.859540px;}
.y3{bottom:1151.039540px;}
.y108{bottom:1178.940600px;}
.y1{bottom:1179.120600px;}
.h21{height:12.060000px;}
.hb{height:13.500000px;}
.h25{height:14.940000px;}
.h16{height:15.120000px;}
.h24{height:15.300000px;}
.h13{height:18.720000px;}
.h9{height:18.773430px;}
.h15{height:18.900000px;}
.hd{height:20.160000px;}
.h11{height:20.340000px;}
.h5{height:20.520000px;}
.h1e{height:23.760000px;}
.h1{height:24.480000px;}
.h1a{height:25.913662px;}
.hf{height:25.951630px;}
.h1c{height:27.228505px;}
.h18{height:32.152136px;}
.hc{height:32.199245px;}
.h10{height:36.179986px;}
.h23{height:36.486196px;}
.h17{height:40.842757px;}
.h1b{height:43.185920px;}
.h19{height:45.199318px;}
.h6{height:47.988262px;}
.he{height:48.058575px;}
.h12{height:48.234356px;}
.h14{height:50.100449px;}
.h20{height:53.999978px;}
.h8{height:54.457009px;}
.h22{height:56.159978px;}
.h26{height:56.320290px;}
.h2{height:58.861031px;}
.h1f{height:63.179975px;}
.ha{height:63.917904px;}
.h1d{height:70.664034px;}
.h4{height:72.562471px;}
.h7{height:78.468719px;}
.h3{height:82.676920px;}
.h0{height:1263.000000px;}
.waf{width:0.180000px;}
.w20{width:3.240000px;}
.w5a{width:3.420000px;}
.w2{width:4.680000px;}
.w24{width:5.040000px;}
.w3d{width:5.760000px;}
.w8f{width:5.940000px;}
.w8e{width:6.480000px;}
.w2e{width:6.660000px;}
.w4{width:7.020000px;}
.w77{width:7.200000px;}
.w46{width:7.380000px;}
.wa0{width:7.560000px;}
.w15{width:7.740000px;}
.w98{width:7.920000px;}
.wf{width:8.100000px;}
.w7{width:8.280000px;}
.w94{width:8.460000px;}
.w6{width:8.820000px;}
.w52{width:9.180000px;}
.w1c{width:9.360000px;}
.we{width:9.540000px;}
.w64{width:9.720000px;}
.w5d{width:9.900000px;}
.wab{width:10.080000px;}
.w69{width:10.260000px;}
.w40{width:10.440000px;}
.w71{width:10.620000px;}
.w13{width:10.800000px;}
.w26{width:11.160000px;}
.w33{width:11.340000px;}
.w14{width:11.520000px;}
.w47{width:11.700000px;}
.wa{width:12.420000px;}
.wd{width:12.960000px;}
.w48{width:15.120000px;}
.w57{width:15.300000px;}
.w34{width:15.480000px;}
.w27{width:15.660000px;}
.w39{width:16.020000px;}
.w70{width:16.200000px;}
.w41{width:16.380000px;}
.w68{width:16.560000px;}
.w23{width:16.740000px;}
.w5c{width:16.920000px;}
.w63{width:17.100000px;}
.w1d{width:17.460000px;}
.w51{width:17.640000px;}
.w9b{width:18.000000px;}
.w93{width:18.360000px;}
.w8a{width:18.540000px;}
.w76{width:18.720000px;}
.w97{width:18.900000px;}
.w2c{width:19.260000px;}
.w7e{width:19.440000px;}
.w5{width:24.840000px;}
.w7b{width:26.640000px;}
.w28{width:28.620000px;}
.w17{width:33.300000px;}
.w19{width:33.480000px;}
.w7f{width:33.660000px;}
.w1b{width:34.560000px;}
.w25{width:37.080000px;}
.w60{width:37.260000px;}
.w67{width:37.440000px;}
.w35{width:37.800000px;}
.w5b{width:39.060000px;}
.w9a{width:40.320000px;}
.w1a{width:41.400000px;}
.w2f{width:41.760000px;}
.wa2{width:42.480000px;}
.w62{width:43.560000px;}
.wa9{width:45.540000px;}
.w21{width:45.720000px;}
.w5e{width:46.260000px;}
.wa3{width:46.620000px;}
.waa{width:47.520000px;}
.w22{width:47.880000px;}
.w32{width:48.420000px;}
.w61{width:49.680000px;}
.w85{width:50.940000px;}
.w4f{width:52.380000px;}
.w4d{width:53.100000px;}
.w1e{width:54.540000px;}
.w92{width:55.980000px;}
.w16{width:58.140000px;}
.w18{width:58.320000px;}
.w50{width:58.680000px;}
.w9f{width:59.580000px;}
.w7d{width:60.300000px;}
.w99{width:60.480000px;}
.w3a{width:61.380000px;}
.w44{width:61.920000px;}
.w6e{width:62.100000px;}
.wa6{width:62.280000px;}
.w38{width:63.000000px;}
.w6a{width:63.360000px;}
.w4e{width:63.900000px;}
.w75{width:64.080000px;}
.w4b{width:64.980000px;}
.w74{width:65.160000px;}
.w37{width:65.340000px;}
.w2d{width:66.240000px;}
.w3c{width:66.420000px;}
.w7a{width:68.760000px;}
.w2b{width:69.840000px;}
.w65{width:70.560000px;}
.w58{width:72.180000px;}
.w3e{width:72.540000px;}
.w6f{width:72.900000px;}
.w1{width:73.980000px;}
.w88{width:74.340000px;}
.w49{width:74.880000px;}
.w4c{width:75.780000px;}
.w54{width:75.960000px;}
.w3{width:77.400000px;}
.w82{width:77.760000px;}
.w36{width:79.020000px;}
.w31{width:79.740000px;}
.w89{width:80.100000px;}
.w83{width:80.280000px;}
.w96{width:80.640000px;}
.w10{width:81.360000px;}
.w8b{width:81.540000px;}
.w84{width:81.900000px;}
.w9e{width:82.260000px;}
.w5f{width:84.420000px;}
.w72{width:85.860000px;}
.w79{width:88.380000px;}
.w80{width:89.280000px;}
.w6b{width:90.360000px;}
.w56{width:92.880000px;}
.w8c{width:94.500000px;}
.w45{width:95.940000px;}
.w73{width:96.480000px;}
.w29{width:97.560000px;}
.w9d{width:97.740000px;}
.w53{width:98.280000px;}
.w86{width:98.460000px;}
.w43{width:100.440000px;}
.w42{width:100.620000px;}
.w87{width:100.800000px;}
.wa7{width:101.880000px;}
.w59{width:102.780000px;}
.w7c{width:103.320000px;}
.wa1{width:104.580000px;}
.w30{width:106.020000px;}
.w9c{width:108.900000px;}
.wa5{width:110.520000px;}
.wa4{width:110.700000px;}
.w3b{width:115.020000px;}
.w55{width:118.620000px;}
.w3f{width:120.960000px;}
.w9{width:124.380000px;}
.w6d{width:124.560000px;}
.w90{width:125.280000px;}
.w81{width:126.360000px;}
.w8d{width:129.780000px;}
.w95{width:134.640000px;}
.w4a{width:140.940000px;}
.w91{width:144.180000px;}
.w2a{width:149.580000px;}
.w78{width:149.760000px;}
.w66{width:151.020000px;}
.w6c{width:151.560000px;}
.w1f{width:155.160000px;}
.wa8{width:184.680000px;}
.w8{width:193.320000px;}
.wc{width:241.200000px;}
.wac{width:266.400000px;}
.wad{width:270.000000px;}
.w11{width:276.120000px;}
.wae{width:278.100000px;}
.wb{width:367.380000px;}
.w12{width:532.080000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:107.999957px;}
.x99{left:110.339956px;}
.x21{left:111.779955px;}
.xa{left:116.100000px;}
.x3a{left:117.360000px;}
.x53{left:118.440000px;}
.x32{left:119.520000px;}
.x64{left:123.300000px;}
.x6d{left:124.560000px;}
.x5f{left:125.640000px;}
.x7c{left:127.440000px;}
.xc{left:130.679908px;}
.x33{left:134.820000px;}
.x96{left:155.700000px;}
.x98{left:162.180000px;}
.x42{left:163.440000px;}
.x97{left:165.780000px;}
.x43{left:168.480000px;}
.x4d{left:172.620000px;}
.x49{left:176.580000px;}
.x68{left:180.900000px;}
.x6a{left:184.500000px;}
.x1f{left:188.460000px;}
.x34{left:192.960000px;}
.x95{left:195.119922px;}
.x51{left:196.200000px;}
.x6e{left:198.180000px;}
.xd{left:200.339857px;}
.xe{left:204.839853px;}
.xb{left:206.999917px;}
.x58{left:209.700000px;}
.x7f{left:215.100000px;}
.x83{left:216.360000px;}
.x76{left:220.680000px;}
.x35{left:226.260000px;}
.x60{left:232.920000px;}
.x54{left:235.440000px;}
.x93{left:236.700000px;}
.x8b{left:243.720000px;}
.x8f{left:245.520000px;}
.x24{left:249.120000px;}
.xf{left:259.740421px;}
.x7d{left:262.620000px;}
.x44{left:266.040000px;}
.x28{left:268.919892px;}
.x29{left:280.799888px;}
.x4a{left:282.600000px;}
.x79{left:284.580000px;}
.x72{left:286.380000px;}
.x18{left:300.419880px;}
.x19{left:305.280000px;}
.x61{left:308.880000px;}
.x84{left:315.900000px;}
.x65{left:322.020000px;}
.x36{left:341.640000px;}
.x9{left:370.619852px;}
.x5b{left:394.740000px;}
.x5c{left:397.980000px;}
.x37{left:399.960000px;}
.x89{left:403.560000px;}
.x8a{left:406.800000px;}
.x6f{left:407.880000px;}
.x70{left:411.120000px;}
.x4b{left:421.380000px;}
.x80{left:423.540000px;}
.x4c{left:424.620000px;}
.x69{left:426.060000px;}
.x4e{left:427.140000px;}
.x1a{left:429.660000px;}
.x25{left:433.079827px;}
.x77{left:438.120000px;}
.x8c{left:439.200000px;}
.x55{left:442.080000px;}
.x56{left:445.320000px;}
.x66{left:447.840000px;}
.x8d{left:449.460000px;}
.x90{left:452.160000px;}
.x91{left:455.400000px;}
.x52{left:456.660000px;}
.x62{left:460.260000px;}
.x23{left:462.600477px;}
.x20{left:464.579814px;}
.x73{left:466.020000px;}
.x2f{left:467.099813px;}
.x30{left:469.799812px;}
.x7e{left:471.420000px;}
.x1b{left:474.480000px;}
.x59{left:482.580000px;}
.x5a{left:485.820000px;}
.x67{left:486.900000px;}
.x86{left:489.060000px;}
.x45{left:491.220000px;}
.x4f{left:492.480000px;}
.x10{left:493.920784px;}
.x3b{left:496.800000px;}
.x3c{left:500.040000px;}
.x71{left:501.480000px;}
.x2d{left:502.919799px;}
.x2e{left:505.439798px;}
.x11{left:507.240775px;}
.x9a{left:508.500000px;}
.x6b{left:513.000000px;}
.x12{left:520.560767px;}
.x1d{left:525.592290px;}
.x31{left:529.199788px;}
.x74{left:531.360000px;}
.x13{left:533.700759px;}
.x14{left:538.200756px;}
.x3d{left:545.760000px;}
.x1{left:549.000000px;}
.x26{left:550.250930px;}
.x87{left:554.220000px;}
.x63{left:556.380000px;}
.x46{left:564.300000px;}
.x94{left:575.100000px;}
.x22{left:581.939767px;}
.x27{left:588.779764px;}
.x15{left:591.300737px;}
.x16{left:608.940666px;}
.x2{left:622.980000px;}
.x6c{left:626.040000px;}
.x3{left:627.660000px;}
.x8e{left:629.100000px;}
.x3e{left:630.360000px;}
.x81{left:633.420000px;}
.x5d{left:634.860000px;}
.x88{left:638.460000px;}
.x7b{left:642.780000px;}
.x92{left:644.760000px;}
.x78{left:646.560000px;}
.x2a{left:650.699740px;}
.x75{left:655.380000px;}
.x2b{left:656.819737px;}
.x82{left:662.580000px;}
.x17{left:666.359733px;}
.x57{left:678.420000px;}
.x38{left:685.800000px;}
.x3f{left:702.540000px;}
.x4{left:705.060000px;}
.x40{left:707.580000px;}
.x47{left:710.100000px;}
.x85{left:714.060000px;}
.x1c{left:715.680000px;}
.x39{left:720.360000px;}
.x5{left:722.340000px;}
.x7a{left:737.460000px;}
.x41{left:744.660000px;}
.x6{left:747.180000px;}
.x5e{left:769.500000px;}
.x7{left:772.020000px;}
.x50{left:773.820000px;}
.x48{left:776.340000px;}
.x1e{left:780.300000px;}
.x2c{left:784.799686px;}
.x9b{left:786.600000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009381pt;}
.ls6{letter-spacing:0.049280pt;}
.ls1{letter-spacing:0.064960pt;}
.ls5{letter-spacing:0.082938pt;}
.lsa{letter-spacing:0.097280pt;}
.ls9{letter-spacing:0.173600pt;}
.ls7{letter-spacing:0.210720pt;}
.ls8{letter-spacing:0.273973pt;}
.ls4{letter-spacing:0.325280pt;}
.ls3{letter-spacing:31.352947pt;}
.ws0{word-spacing:-16.473593pt;}
.ws1{word-spacing:-15.999994pt;}
.ws6{word-spacing:-12.191995pt;}
.ws4{word-spacing:-11.650934pt;}
.ws2{word-spacing:-11.567995pt;}
.ws5{word-spacing:-7.711997pt;}
.ws3{word-spacing:0.000000pt;}
._7{margin-left:-833.244435pt;}
._c{margin-left:-416.192836pt;}
._3{margin-left:-246.707400pt;}
._b{margin-left:-203.846612pt;}
._6{margin-left:-194.892669pt;}
._9{margin-left:-187.724672pt;}
._1{margin-left:-80.500602pt;}
._a{margin-left:-61.222157pt;}
._8{margin-left:-46.719326pt;}
._0{margin-left:-22.719255pt;}
._5{margin-left:-14.719226pt;}
._31{margin-left:-2.439188pt;}
._2{margin-left:-1.497247pt;}
._4{width:1.098725pt;}
._1b{width:2.074370pt;}
._f{width:3.582922pt;}
._10{width:4.570549pt;}
._12{width:5.743498pt;}
._13{width:6.741186pt;}
._11{width:7.751439pt;}
._30{width:8.688750pt;}
._15{width:9.583732pt;}
._1a{width:10.627152pt;}
._24{width:12.643072pt;}
._17{width:13.774474pt;}
._1c{width:14.904357pt;}
._16{width:15.813169pt;}
._21{width:17.216591pt;}
._2a{width:18.676074pt;}
._14{width:20.042261pt;}
._18{width:21.061744pt;}
._27{width:22.477869pt;}
._34{width:23.492399pt;}
._1f{width:24.439571pt;}
._20{width:25.719964pt;}
._2b{width:26.612662pt;}
._32{width:28.049784pt;}
._2e{width:29.349299pt;}
._28{width:30.799742pt;}
._1d{width:31.864526pt;}
._19{width:33.573734pt;}
._29{width:34.728090pt;}
._25{width:35.627961pt;}
._26{width:36.890305pt;}
._d{width:38.198671pt;}
._e{width:39.745827pt;}
._2f{width:40.958534pt;}
._38{width:42.030455pt;}
._3a{width:43.372385pt;}
._36{width:45.291560pt;}
._35{width:46.312887pt;}
._39{width:48.223555pt;}
._1e{width:50.223994pt;}
._3b{width:52.488404pt;}
._23{width:53.763500pt;}
._22{width:55.169973pt;}
._33{width:57.173837pt;}
._2c{width:59.579879pt;}
._2d{width:60.719911pt;}
._37{width:79.106035pt;}
.fs3{font-size:15.999994pt;}
.fsa{font-size:31.999987pt;}
.fs6{font-size:34.559986pt;}
.fs5{font-size:42.879983pt;}
.fs8{font-size:47.999981pt;}
.fs9{font-size:53.119979pt;}
.fs7{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fsb{font-size:66.559973pt;}
.fs0{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs2{font-size:95.999962pt;}
.y4e{bottom:-5.120905pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:2.559193pt;}
.y8d{bottom:2.559198pt;}
.y91{bottom:2.559204pt;}
.y95{bottom:2.559209pt;}
.y99{bottom:2.559215pt;}
.y9d{bottom:2.559220pt;}
.ya1{bottom:2.559225pt;}
.ya5{bottom:2.559231pt;}
.ya9{bottom:2.559236pt;}
.yad{bottom:2.559242pt;}
.yb1{bottom:2.559247pt;}
.yb5{bottom:2.559253pt;}
.yb9{bottom:2.559258pt;}
.ybd{bottom:2.559264pt;}
.yc1{bottom:2.559269pt;}
.yc5{bottom:2.559275pt;}
.yc9{bottom:2.559280pt;}
.ycd{bottom:2.559286pt;}
.yd1{bottom:2.559291pt;}
.yd5{bottom:2.559296pt;}
.yd9{bottom:2.559302pt;}
.ydd{bottom:2.559307pt;}
.ye1{bottom:2.559313pt;}
.ye5{bottom:2.559318pt;}
.ye9{bottom:2.559324pt;}
.yed{bottom:2.559329pt;}
.yf1{bottom:2.559335pt;}
.yf5{bottom:2.559340pt;}
.yf9{bottom:2.559345pt;}
.yfd{bottom:2.559351pt;}
.y85{bottom:2.719187pt;}
.y87{bottom:2.719193pt;}
.y110{bottom:2.719196pt;}
.y8b{bottom:2.719198pt;}
.y8f{bottom:2.719204pt;}
.y1d{bottom:2.719205pt;}
.y93{bottom:2.719209pt;}
.y97{bottom:2.719215pt;}
.y9b{bottom:2.719220pt;}
.y9f{bottom:2.719225pt;}
.ya3{bottom:2.719231pt;}
.ya7{bottom:2.719236pt;}
.yab{bottom:2.719242pt;}
.yaf{bottom:2.719247pt;}
.yb3{bottom:2.719253pt;}
.yb7{bottom:2.719258pt;}
.ybb{bottom:2.719264pt;}
.ybf{bottom:2.719269pt;}
.yc3{bottom:2.719275pt;}
.yc7{bottom:2.719280pt;}
.ycb{bottom:2.719286pt;}
.ycf{bottom:2.719291pt;}
.yd3{bottom:2.719296pt;}
.yd7{bottom:2.719302pt;}
.ydb{bottom:2.719307pt;}
.ydf{bottom:2.719313pt;}
.ye3{bottom:2.719318pt;}
.ye7{bottom:2.719324pt;}
.y115{bottom:2.719328pt;}
.yeb{bottom:2.719329pt;}
.yef{bottom:2.719335pt;}
.yf3{bottom:2.719340pt;}
.yf7{bottom:2.719345pt;}
.yfb{bottom:2.719351pt;}
.yf{bottom:2.879145pt;}
.y18{bottom:3.199190pt;}
.y1b{bottom:3.199193pt;}
.y6{bottom:3.679065pt;}
.y2{bottom:4.159046pt;}
.y11{bottom:4.319152pt;}
.y15{bottom:4.319168pt;}
.y49{bottom:5.759065pt;}
.y10a{bottom:51.946913pt;}
.y4{bottom:52.106912pt;}
.y121{bottom:101.226626pt;}
.y13c{bottom:101.866626pt;}
.y16c{bottom:104.106625pt;}
.y7b{bottom:108.106623pt;}
.y107{bottom:110.186623pt;}
.y81{bottom:110.346623pt;}
.y47{bottom:111.146622pt;}
.y3a{bottom:113.706621pt;}
.y120{bottom:121.706618pt;}
.y13b{bottom:122.346618pt;}
.y16b{bottom:125.066617pt;}
.y7a{bottom:128.586615pt;}
.y106{bottom:130.666614pt;}
.y80{bottom:130.826614pt;}
.y46{bottom:131.626614pt;}
.y39{bottom:132.106614pt;}
.y11f{bottom:142.186610pt;}
.y13a{bottom:142.666610pt;}
.y16a{bottom:146.026608pt;}
.y78{bottom:149.066607pt;}
.y38{bottom:150.506606pt;}
.y105{bottom:151.146606pt;}
.y7f{bottom:151.306606pt;}
.y45{bottom:152.106606pt;}
.y79{bottom:152.426606pt;}
.y11e{bottom:162.666602pt;}
.y139{bottom:163.146601pt;}
.y169{bottom:166.986600pt;}
.y37{bottom:168.906599pt;}
.y77{bottom:169.386599pt;}
.y7e{bottom:170.506598pt;}
.y104{bottom:171.626598pt;}
.y141{bottom:171.786598pt;}
.y44{bottom:172.586598pt;}
.y11d{bottom:183.146593pt;}
.y138{bottom:183.626593pt;}
.y36{bottom:187.306592pt;}
.y168{bottom:188.106591pt;}
.y76{bottom:189.866591pt;}
.y103{bottom:192.106590pt;}
.y43{bottom:192.906590pt;}
.y11c{bottom:203.466585pt;}
.y137{bottom:204.106585pt;}
.y35{bottom:205.706584pt;}
.y167{bottom:209.066583pt;}
.y75{bottom:210.346583pt;}
.y102{bottom:212.586582pt;}
.y42{bottom:213.386581pt;}
.y11b{bottom:223.946577pt;}
.y34{bottom:224.106577pt;}
.y136{bottom:224.586577pt;}
.y41{bottom:228.106575pt;}
.y166{bottom:230.026575pt;}
.y74{bottom:230.826574pt;}
.y101{bottom:232.906574pt;}
.y140{bottom:233.066573pt;}
.y33{bottom:242.506570pt;}
.y11a{bottom:244.426569pt;}
.y135{bottom:245.066569pt;}
.y40{bottom:246.506568pt;}
.y165{bottom:251.146566pt;}
.y73{bottom:251.306566pt;}
.yff{bottom:253.386565pt;}
.y13f{bottom:253.546565pt;}
.y100{bottom:256.746564pt;}
.y32{bottom:260.906562pt;}
.y3f{bottom:264.906561pt;}
.y134{bottom:265.386561pt;}
.y72{bottom:271.786558pt;}
.y164{bottom:272.106558pt;}
.y13e{bottom:272.906558pt;}
.yfe{bottom:273.866557pt;}
.y31{bottom:279.306555pt;}
.y3e{bottom:283.306553pt;}
.y119{bottom:285.386553pt;}
.y133{bottom:285.866552pt;}
.yfa{bottom:286.667200pt;}
.yfc{bottom:286.827200pt;}
.y118{bottom:288.746551pt;}
.y71{bottom:292.106550pt;}
.y163{bottom:293.226549pt;}
.y30{bottom:297.706548pt;}
.yf6{bottom:300.267200pt;}
.yf8{bottom:300.427200pt;}
.y3d{bottom:301.706546pt;}
.y132{bottom:305.226545pt;}
.y117{bottom:305.706544pt;}
.y70{bottom:312.586542pt;}
.yf2{bottom:313.867200pt;}
.yf4{bottom:314.027200pt;}
.y162{bottom:314.186541pt;}
.y3c{bottom:320.106539pt;}
.y2f{bottom:321.706538pt;}
.y131{bottom:324.586537pt;}
.y116{bottom:326.186536pt;}
.yee{bottom:327.467200pt;}
.yf0{bottom:327.627200pt;}
.y6f{bottom:333.066533pt;}
.y161{bottom:335.146533pt;}
.y3b{bottom:338.506531pt;}
.yea{bottom:341.227200pt;}
.yec{bottom:341.387200pt;}
.y2e{bottom:342.186530pt;}
.y114{bottom:343.947200pt;}
.y130{bottom:344.906529pt;}
.y6e{bottom:353.546525pt;}
.ye6{bottom:354.827200pt;}
.ye8{bottom:354.987200pt;}
.y160{bottom:356.266524pt;}
.y2d{bottom:356.586524pt;}
.y2c{bottom:359.946523pt;}
.y113{bottom:364.426521pt;}
.y12f{bottom:365.386521pt;}
.ye2{bottom:368.427200pt;}
.ye4{bottom:368.587200pt;}
.y6d{bottom:374.026517pt;}
.y15f{bottom:377.226516pt;}
.y2b{bottom:378.186515pt;}
.yde{bottom:382.027200pt;}
.ye0{bottom:382.187200pt;}
.y12e{bottom:385.866512pt;}
.y6c{bottom:394.506509pt;}
.yda{bottom:395.627200pt;}
.ydc{bottom:395.787200pt;}
.y15e{bottom:398.186507pt;}
.y2a{bottom:398.666507pt;}
.y12d{bottom:406.346504pt;}
.yd6{bottom:409.387200pt;}
.yd8{bottom:409.547200pt;}
.y6b{bottom:414.826501pt;}
.y29{bottom:419.146499pt;}
.y15d{bottom:419.306499pt;}
.yd2{bottom:422.987200pt;}
.yd4{bottom:423.147200pt;}
.y12c{bottom:426.826496pt;}
.y6a{bottom:435.306493pt;}
.yce{bottom:436.587200pt;}
.yd0{bottom:436.747200pt;}
.y28{bottom:439.466491pt;}
.y15c{bottom:440.266491pt;}
.y12b{bottom:447.306488pt;}
.yca{bottom:450.187200pt;}
.ycc{bottom:450.347200pt;}
.y69{bottom:455.786484pt;}
.y27{bottom:459.946483pt;}
.y15b{bottom:461.386482pt;}
.yc6{bottom:463.947200pt;}
.yc8{bottom:464.107200pt;}
.y12a{bottom:467.626480pt;}
.y68{bottom:476.266476pt;}
.yc2{bottom:477.547200pt;}
.yc4{bottom:477.707200pt;}
.y26{bottom:480.426474pt;}
.y15a{bottom:482.346474pt;}
.y129{bottom:488.106471pt;}
.ybe{bottom:491.147200pt;}
.yc0{bottom:491.307200pt;}
.y67{bottom:496.746468pt;}
.y7d{bottom:500.106467pt;}
.y25{bottom:500.906466pt;}
.y159{bottom:503.306465pt;}
.yba{bottom:504.747200pt;}
.ybc{bottom:504.907200pt;}
.y128{bottom:508.586463pt;}
.y66{bottom:517.066460pt;}
.yb6{bottom:518.347200pt;}
.yb8{bottom:518.507200pt;}
.y24{bottom:521.386458pt;}
.y158{bottom:524.426457pt;}
.y127{bottom:529.066455pt;}
.yb2{bottom:532.107200pt;}
.yb4{bottom:532.267200pt;}
.y65{bottom:537.546452pt;}
.y13d{bottom:540.906450pt;}
.y23{bottom:541.706450pt;}
.y157{bottom:545.386449pt;}
.yae{bottom:545.707200pt;}
.yb0{bottom:545.867200pt;}
.y126{bottom:546.827200pt;}
.y64{bottom:558.026443pt;}
.yaa{bottom:559.307200pt;}
.yac{bottom:559.467200pt;}
.y22{bottom:562.186442pt;}
.y156{bottom:566.346440pt;}
.y125{bottom:567.146440pt;}
.ya6{bottom:572.907200pt;}
.ya8{bottom:573.067200pt;}
.y63{bottom:578.506435pt;}
.y21{bottom:582.666434pt;}
.ya2{bottom:586.667200pt;}
.ya4{bottom:586.827200pt;}
.y155{bottom:587.466432pt;}
.y62{bottom:598.986427pt;}
.y9e{bottom:600.267200pt;}
.ya0{bottom:600.427200pt;}
.y20{bottom:603.146425pt;}
.y154{bottom:608.426423pt;}
.y9a{bottom:613.867200pt;}
.y9c{bottom:614.027200pt;}
.y61{bottom:619.466419pt;}
.y1f{bottom:624.426417pt;}
.y96{bottom:627.467200pt;}
.y98{bottom:627.627200pt;}
.y153{bottom:629.546415pt;}
.y112{bottom:634.826413pt;}
.y60{bottom:639.786411pt;}
.y92{bottom:641.067200pt;}
.y94{bottom:641.227200pt;}
.y152{bottom:650.506406pt;}
.y1c{bottom:651.627200pt;}
.y1e{bottom:654.346405pt;}
.y8e{bottom:654.827200pt;}
.y90{bottom:654.987200pt;}
.y111{bottom:655.146405pt;}
.y5f{bottom:660.266403pt;}
.y8a{bottom:668.427200pt;}
.y8c{bottom:668.587200pt;}
.y151{bottom:671.466398pt;}
.y10f{bottom:672.907200pt;}
.y5e{bottom:680.746394pt;}
.y1a{bottom:681.387200pt;}
.y86{bottom:682.027200pt;}
.y88{bottom:682.187200pt;}
.y19{bottom:684.586393pt;}
.y17{bottom:689.387200pt;}
.y150{bottom:692.586390pt;}
.y10e{bottom:693.386389pt;}
.y84{bottom:696.267200pt;}
.y5d{bottom:701.226386pt;}
.y14f{bottom:713.546381pt;}
.y16{bottom:719.466379pt;}
.y5c{bottom:721.706378pt;}
.y14e{bottom:734.506373pt;}
.y5b{bottom:742.186370pt;}
.y14{bottom:742.347200pt;}
.y14d{bottom:755.626364pt;}
.y13{bottom:762.506362pt;}
.y14c{bottom:776.586356pt;}
.y10{bottom:782.667200pt;}
.y5a{bottom:782.986353pt;}
.y12{bottom:791.626350pt;}
.y14b{bottom:797.706348pt;}
.ye{bottom:800.747200pt;}
.y59{bottom:803.466345pt;}
.y14a{bottom:818.666339pt;}
.y58{bottom:823.946337pt;}
.yd{bottom:830.506334pt;}
.y149{bottom:839.626331pt;}
.y57{bottom:844.426329pt;}
.y148{bottom:860.746322pt;}
.y56{bottom:864.906321pt;}
.yc{bottom:866.666320pt;}
.y147{bottom:881.706314pt;}
.y83{bottom:884.586313pt;}
.y55{bottom:885.226313pt;}
.yb{bottom:888.266311pt;}
.y146{bottom:902.666306pt;}
.ya{bottom:904.586305pt;}
.y9{bottom:904.906305pt;}
.y82{bottom:905.066305pt;}
.y124{bottom:905.546304pt;}
.y54{bottom:905.706304pt;}
.y145{bottom:923.786297pt;}
.y123{bottom:926.026296pt;}
.y53{bottom:926.186296pt;}
.y4d{bottom:934.667200pt;}
.y144{bottom:944.746289pt;}
.y122{bottom:946.506288pt;}
.y52{bottom:946.666288pt;}
.y4c{bottom:948.426287pt;}
.y7c{bottom:950.026287pt;}
.y143{bottom:965.866280pt;}
.y4b{bottom:966.506280pt;}
.y10d{bottom:966.986280pt;}
.y51{bottom:967.146280pt;}
.y4a{bottom:984.586273pt;}
.y142{bottom:986.826272pt;}
.y10c{bottom:987.306272pt;}
.y50{bottom:987.466272pt;}
.y8{bottom:993.866269pt;}
.y7{bottom:994.186269pt;}
.y48{bottom:997.867200pt;}
.y5{bottom:1000.427200pt;}
.y10b{bottom:1007.786264pt;}
.y4f{bottom:1007.946263pt;}
.y109{bottom:1022.986257pt;}
.y3{bottom:1023.146257pt;}
.y108{bottom:1047.947200pt;}
.y1{bottom:1048.107200pt;}
.h21{height:10.720000pt;}
.hb{height:12.000000pt;}
.h25{height:13.280000pt;}
.h16{height:13.440000pt;}
.h24{height:13.600000pt;}
.h13{height:16.640000pt;}
.h9{height:16.687493pt;}
.h15{height:16.800000pt;}
.hd{height:17.920000pt;}
.h11{height:18.080000pt;}
.h5{height:18.240000pt;}
.h1e{height:21.120000pt;}
.h1{height:21.760000pt;}
.h1a{height:23.034366pt;}
.hf{height:23.068116pt;}
.h1c{height:24.203115pt;}
.h18{height:28.579676pt;}
.hc{height:28.621551pt;}
.h10{height:32.159987pt;}
.h23{height:32.432175pt;}
.h17{height:36.304673pt;}
.h1b{height:38.387485pt;}
.h19{height:40.177171pt;}
.h6{height:42.656233pt;}
.he{height:42.718733pt;}
.h12{height:42.874983pt;}
.h14{height:44.533732pt;}
.h20{height:47.999981pt;}
.h8{height:48.406231pt;}
.h22{height:49.919980pt;}
.h26{height:50.062480pt;}
.h2{height:52.320917pt;}
.h1f{height:56.159978pt;}
.ha{height:56.815915pt;}
.h1d{height:62.812475pt;}
.h4{height:64.499974pt;}
.h7{height:69.749972pt;}
.h3{height:73.490596pt;}
.h0{height:1122.666667pt;}
.waf{width:0.160000pt;}
.w20{width:2.880000pt;}
.w5a{width:3.040000pt;}
.w2{width:4.160000pt;}
.w24{width:4.480000pt;}
.w3d{width:5.120000pt;}
.w8f{width:5.280000pt;}
.w8e{width:5.760000pt;}
.w2e{width:5.920000pt;}
.w4{width:6.240000pt;}
.w77{width:6.400000pt;}
.w46{width:6.560000pt;}
.wa0{width:6.720000pt;}
.w15{width:6.880000pt;}
.w98{width:7.040000pt;}
.wf{width:7.200000pt;}
.w7{width:7.360000pt;}
.w94{width:7.520000pt;}
.w6{width:7.840000pt;}
.w52{width:8.160000pt;}
.w1c{width:8.320000pt;}
.we{width:8.480000pt;}
.w64{width:8.640000pt;}
.w5d{width:8.800000pt;}
.wab{width:8.960000pt;}
.w69{width:9.120000pt;}
.w40{width:9.280000pt;}
.w71{width:9.440000pt;}
.w13{width:9.600000pt;}
.w26{width:9.920000pt;}
.w33{width:10.080000pt;}
.w14{width:10.240000pt;}
.w47{width:10.400000pt;}
.wa{width:11.040000pt;}
.wd{width:11.520000pt;}
.w48{width:13.440000pt;}
.w57{width:13.600000pt;}
.w34{width:13.760000pt;}
.w27{width:13.920000pt;}
.w39{width:14.240000pt;}
.w70{width:14.400000pt;}
.w41{width:14.560000pt;}
.w68{width:14.720000pt;}
.w23{width:14.880000pt;}
.w5c{width:15.040000pt;}
.w63{width:15.200000pt;}
.w1d{width:15.520000pt;}
.w51{width:15.680000pt;}
.w9b{width:16.000000pt;}
.w93{width:16.320000pt;}
.w8a{width:16.480000pt;}
.w76{width:16.640000pt;}
.w97{width:16.800000pt;}
.w2c{width:17.120000pt;}
.w7e{width:17.280000pt;}
.w5{width:22.080000pt;}
.w7b{width:23.680000pt;}
.w28{width:25.440000pt;}
.w17{width:29.600000pt;}
.w19{width:29.760000pt;}
.w7f{width:29.920000pt;}
.w1b{width:30.720000pt;}
.w25{width:32.960000pt;}
.w60{width:33.120000pt;}
.w67{width:33.280000pt;}
.w35{width:33.600000pt;}
.w5b{width:34.720000pt;}
.w9a{width:35.840000pt;}
.w1a{width:36.800000pt;}
.w2f{width:37.120000pt;}
.wa2{width:37.760000pt;}
.w62{width:38.720000pt;}
.wa9{width:40.480000pt;}
.w21{width:40.640000pt;}
.w5e{width:41.120000pt;}
.wa3{width:41.440000pt;}
.waa{width:42.240000pt;}
.w22{width:42.560000pt;}
.w32{width:43.040000pt;}
.w61{width:44.160000pt;}
.w85{width:45.280000pt;}
.w4f{width:46.560000pt;}
.w4d{width:47.200000pt;}
.w1e{width:48.480000pt;}
.w92{width:49.760000pt;}
.w16{width:51.680000pt;}
.w18{width:51.840000pt;}
.w50{width:52.160000pt;}
.w9f{width:52.960000pt;}
.w7d{width:53.600000pt;}
.w99{width:53.760000pt;}
.w3a{width:54.560000pt;}
.w44{width:55.040000pt;}
.w6e{width:55.200000pt;}
.wa6{width:55.360000pt;}
.w38{width:56.000000pt;}
.w6a{width:56.320000pt;}
.w4e{width:56.800000pt;}
.w75{width:56.960000pt;}
.w4b{width:57.760000pt;}
.w74{width:57.920000pt;}
.w37{width:58.080000pt;}
.w2d{width:58.880000pt;}
.w3c{width:59.040000pt;}
.w7a{width:61.120000pt;}
.w2b{width:62.080000pt;}
.w65{width:62.720000pt;}
.w58{width:64.160000pt;}
.w3e{width:64.480000pt;}
.w6f{width:64.800000pt;}
.w1{width:65.760000pt;}
.w88{width:66.080000pt;}
.w49{width:66.560000pt;}
.w4c{width:67.360000pt;}
.w54{width:67.520000pt;}
.w3{width:68.800000pt;}
.w82{width:69.120000pt;}
.w36{width:70.240000pt;}
.w31{width:70.880000pt;}
.w89{width:71.200000pt;}
.w83{width:71.360000pt;}
.w96{width:71.680000pt;}
.w10{width:72.320000pt;}
.w8b{width:72.480000pt;}
.w84{width:72.800000pt;}
.w9e{width:73.120000pt;}
.w5f{width:75.040000pt;}
.w72{width:76.320000pt;}
.w79{width:78.560000pt;}
.w80{width:79.360000pt;}
.w6b{width:80.320000pt;}
.w56{width:82.560000pt;}
.w8c{width:84.000000pt;}
.w45{width:85.280000pt;}
.w73{width:85.760000pt;}
.w29{width:86.720000pt;}
.w9d{width:86.880000pt;}
.w53{width:87.360000pt;}
.w86{width:87.520000pt;}
.w43{width:89.280000pt;}
.w42{width:89.440000pt;}
.w87{width:89.600000pt;}
.wa7{width:90.560000pt;}
.w59{width:91.360000pt;}
.w7c{width:91.840000pt;}
.wa1{width:92.960000pt;}
.w30{width:94.240000pt;}
.w9c{width:96.800000pt;}
.wa5{width:98.240000pt;}
.wa4{width:98.400000pt;}
.w3b{width:102.240000pt;}
.w55{width:105.440000pt;}
.w3f{width:107.520000pt;}
.w9{width:110.560000pt;}
.w6d{width:110.720000pt;}
.w90{width:111.360000pt;}
.w81{width:112.320000pt;}
.w8d{width:115.360000pt;}
.w95{width:119.680000pt;}
.w4a{width:125.280000pt;}
.w91{width:128.160000pt;}
.w2a{width:132.960000pt;}
.w78{width:133.120000pt;}
.w66{width:134.240000pt;}
.w6c{width:134.720000pt;}
.w1f{width:137.920000pt;}
.wa8{width:164.160000pt;}
.w8{width:171.840000pt;}
.wc{width:214.400000pt;}
.wac{width:236.800000pt;}
.wad{width:240.000000pt;}
.w11{width:245.440000pt;}
.wae{width:247.200000pt;}
.wb{width:326.560000pt;}
.w12{width:472.960000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:95.999962pt;}
.x99{left:98.079961pt;}
.x21{left:99.359960pt;}
.xa{left:103.200000pt;}
.x3a{left:104.320000pt;}
.x53{left:105.280000pt;}
.x32{left:106.240000pt;}
.x64{left:109.600000pt;}
.x6d{left:110.720000pt;}
.x5f{left:111.680000pt;}
.x7c{left:113.280000pt;}
.xc{left:116.159918pt;}
.x33{left:119.840000pt;}
.x96{left:138.400000pt;}
.x98{left:144.160000pt;}
.x42{left:145.280000pt;}
.x97{left:147.360000pt;}
.x43{left:149.760000pt;}
.x4d{left:153.440000pt;}
.x49{left:156.960000pt;}
.x68{left:160.800000pt;}
.x6a{left:164.000000pt;}
.x1f{left:167.520000pt;}
.x34{left:171.520000pt;}
.x95{left:173.439931pt;}
.x51{left:174.400000pt;}
.x6e{left:176.160000pt;}
.xd{left:178.079873pt;}
.xe{left:182.079870pt;}
.xb{left:183.999926pt;}
.x58{left:186.400000pt;}
.x7f{left:191.200000pt;}
.x83{left:192.320000pt;}
.x76{left:196.160000pt;}
.x35{left:201.120000pt;}
.x60{left:207.040000pt;}
.x54{left:209.280000pt;}
.x93{left:210.400000pt;}
.x8b{left:216.640000pt;}
.x8f{left:218.240000pt;}
.x24{left:221.440000pt;}
.xf{left:230.880374pt;}
.x7d{left:233.440000pt;}
.x44{left:236.480000pt;}
.x28{left:239.039904pt;}
.x29{left:249.599900pt;}
.x4a{left:251.200000pt;}
.x79{left:252.960000pt;}
.x72{left:254.560000pt;}
.x18{left:267.039893pt;}
.x19{left:271.360000pt;}
.x61{left:274.560000pt;}
.x84{left:280.800000pt;}
.x65{left:286.240000pt;}
.x36{left:303.680000pt;}
.x9{left:329.439868pt;}
.x5b{left:350.880000pt;}
.x5c{left:353.760000pt;}
.x37{left:355.520000pt;}
.x89{left:358.720000pt;}
.x8a{left:361.600000pt;}
.x6f{left:362.560000pt;}
.x70{left:365.440000pt;}
.x4b{left:374.560000pt;}
.x80{left:376.480000pt;}
.x4c{left:377.440000pt;}
.x69{left:378.720000pt;}
.x4e{left:379.680000pt;}
.x1a{left:381.920000pt;}
.x25{left:384.959846pt;}
.x77{left:389.440000pt;}
.x8c{left:390.400000pt;}
.x55{left:392.960000pt;}
.x56{left:395.840000pt;}
.x66{left:398.080000pt;}
.x8d{left:399.520000pt;}
.x90{left:401.920000pt;}
.x91{left:404.800000pt;}
.x52{left:405.920000pt;}
.x62{left:409.120000pt;}
.x23{left:411.200424pt;}
.x20{left:412.959835pt;}
.x73{left:414.240000pt;}
.x2f{left:415.199834pt;}
.x30{left:417.599833pt;}
.x7e{left:419.040000pt;}
.x1b{left:421.760000pt;}
.x59{left:428.960000pt;}
.x5a{left:431.840000pt;}
.x67{left:432.800000pt;}
.x86{left:434.720000pt;}
.x45{left:436.640000pt;}
.x4f{left:437.760000pt;}
.x10{left:439.040697pt;}
.x3b{left:441.600000pt;}
.x3c{left:444.480000pt;}
.x71{left:445.760000pt;}
.x2d{left:447.039821pt;}
.x2e{left:449.279820pt;}
.x11{left:450.880689pt;}
.x9a{left:452.000000pt;}
.x6b{left:456.000000pt;}
.x12{left:462.720681pt;}
.x1d{left:467.193146pt;}
.x31{left:470.399812pt;}
.x74{left:472.320000pt;}
.x13{left:474.400675pt;}
.x14{left:478.400672pt;}
.x3d{left:485.120000pt;}
.x1{left:488.000000pt;}
.x26{left:489.111938pt;}
.x87{left:492.640000pt;}
.x63{left:494.560000pt;}
.x46{left:501.600000pt;}
.x94{left:511.200000pt;}
.x22{left:517.279793pt;}
.x27{left:523.359791pt;}
.x15{left:525.600655pt;}
.x16{left:541.280592pt;}
.x2{left:553.760000pt;}
.x6c{left:556.480000pt;}
.x3{left:557.920000pt;}
.x8e{left:559.200000pt;}
.x3e{left:560.320000pt;}
.x81{left:563.040000pt;}
.x5d{left:564.320000pt;}
.x88{left:567.520000pt;}
.x7b{left:571.360000pt;}
.x92{left:573.120000pt;}
.x78{left:574.720000pt;}
.x2a{left:578.399769pt;}
.x75{left:582.560000pt;}
.x2b{left:583.839766pt;}
.x82{left:588.960000pt;}
.x17{left:592.319763pt;}
.x57{left:603.040000pt;}
.x38{left:609.600000pt;}
.x3f{left:624.480000pt;}
.x4{left:626.720000pt;}
.x40{left:628.960000pt;}
.x47{left:631.200000pt;}
.x85{left:634.720000pt;}
.x1c{left:636.160000pt;}
.x39{left:640.320000pt;}
.x5{left:642.080000pt;}
.x7a{left:655.520000pt;}
.x41{left:661.920000pt;}
.x6{left:664.160000pt;}
.x5e{left:684.000000pt;}
.x7{left:686.240000pt;}
.x50{left:687.840000pt;}
.x48{left:690.080000pt;}
.x1e{left:693.600000pt;}
.x2c{left:697.599721pt;}
.x9b{left:699.200000pt;}
}




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