
    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_04b2d953ca94bd248fa02ae3.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_d59948088475ec90632c5c3c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.435059;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_c2e1f0c780eebd4d7a48228c.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_0a2d6b1338c0c2985173b413.woff')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_7fc15b73249fae6c8024a7d8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_837cc84080e104199f2e049e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.901855;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_2708fd9fd160649447b04223.woff')format("woff");}.ff7{font-family:ff7;line-height:1.035156;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_b0b15e2014e9299aee880581.woff')format("woff");}.ff8{font-family:ff8;line-height:0.690918;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_e8329b06470d463be772c6d4.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_db461c00721370d22cb6eea1.woff')format("woff");}.ffa{font-family:ffa;line-height:1.003906;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_a07afe1b1823860ac453566f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.737793;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_2c260f432673771f3a8bb686.woff')format("woff");}.ffc{font-family:ffc;line-height:0.921387;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_30be622c7edf5f97d752028e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_863fa374908edd152982e486.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_9b03f4b4327374dcb79e06db.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_a958de0b2a6af718bfb8423a.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_a816073968f8ffa8497021c2.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_1fd29e24411c062c92dfce43.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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-72.180000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.ls11{letter-spacing:-1.440000px;}
.lsf{letter-spacing:-0.810000px;}
.ls18{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.223800px;}
.ls22{letter-spacing:-0.206400px;}
.ls1d{letter-spacing:-0.181200px;}
.ls10{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.108000px;}
.ls1e{letter-spacing:0.135600px;}
.ls3{letter-spacing:0.144720px;}
.lsa{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.181200px;}
.ls1b{letter-spacing:0.218160px;}
.ls13{letter-spacing:0.259800px;}
.ls1f{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.270720px;}
.ls16{letter-spacing:0.289440px;}
.ls6{letter-spacing:0.315360px;}
.ls17{letter-spacing:0.324000px;}
.lsb{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.398160px;}
.ls20{letter-spacing:0.480000px;}
.ls7{letter-spacing:0.493920px;}
.ls14{letter-spacing:0.666000px;}
.ls9{letter-spacing:0.720000px;}
.ls1a{letter-spacing:0.938160px;}
.ls5{letter-spacing:1.080000px;}
.ls19{letter-spacing:1.596240px;}
.ls2{letter-spacing:47.700000px;}
.ls15{letter-spacing:66.420000px;}
.ls0{letter-spacing:71.280000px;}
.ls1{letter-spacing:71.400000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws17{word-spacing:-48.240000px;}
.wsb{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.560000px;}
.wse{word-spacing:-15.300000px;}
.ws18{word-spacing:-15.199800px;}
.ws1a{word-spacing:-14.993280px;}
.wsd{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886720px;}
.ws19{word-spacing:-14.733600px;}
.ws13{word-spacing:-13.824000px;}
.ws14{word-spacing:-13.536000px;}
.ws7{word-spacing:-13.500000px;}
.ws12{word-spacing:-12.349440px;}
.ws5{word-spacing:-12.241200px;}
.ws6{word-spacing:-12.060000px;}
.ws15{word-spacing:-11.878800px;}
.ws11{word-spacing:-11.836200px;}
.ws2{word-spacing:-11.700000px;}
.ws4{word-spacing:-11.340000px;}
.ws3{word-spacing:-10.980000px;}
.ws16{word-spacing:-10.902240px;}
.ws9{word-spacing:-10.440000px;}
.ws8{word-spacing:-9.000000px;}
.ws1{word-spacing:-7.560000px;}
.ws10{word-spacing:-6.840000px;}
.wsa{word-spacing:0.000000px;}
.ws0{word-spacing:60.300000px;}
._5{margin-left:-59.580000px;}
._1b{margin-left:-3.402000px;}
._1a{margin-left:-2.196240px;}
._2{margin-left:-1.111680px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._c{width:3.824640px;}
._8{width:4.900320px;}
._9{width:5.916240px;}
._10{width:7.207200px;}
._11{width:8.421120px;}
._7{width:9.979920px;}
._d{width:11.234880px;}
._15{width:12.318480px;}
._14{width:13.625280px;}
._1f{width:16.035840px;}
._22{width:17.210880px;}
._19{width:18.896400px;}
._18{width:20.326320px;}
._1c{width:21.609360px;}
._17{width:22.947840px;}
._16{width:24.023520px;}
._27{width:25.298880px;}
._1d{width:26.776080px;}
._2b{width:27.907920px;}
._e{width:28.923840px;}
._f{width:30.178800px;}
._28{width:31.493520px;}
._29{width:32.541120px;}
._39{width:33.644880px;}
._2a{width:34.780320px;}
._a{width:36.035280px;}
._b{width:37.170720px;}
._26{width:38.963520px;}
._12{width:40.457520px;}
._13{width:41.772240px;}
._2d{width:43.090560px;}
._24{width:44.162640px;}
._23{width:45.238320px;}
._2c{width:47.039040px;}
._32{width:48.114720px;}
._30{width:49.600800px;}
._20{width:51.907680px;}
._34{width:54.381600px;}
._33{width:55.457280px;}
._31{width:56.831760px;}
._35{width:59.102640px;}
._2e{width:61.194240px;}
._25{width:63.285840px;}
._3{width:65.496000px;}
._3b{width:67.409280px;}
._2f{width:68.425200px;}
._38{width:81.691920px;}
._1e{width:87.153120px;}
._36{width:107.554080px;}
._3c{width:113.663520px;}
._3d{width:115.248960px;}
._4{width:199.620000px;}
._21{width:282.270000px;}
._3a{width:613.197360px;}
._6{width:755.976000px;}
._37{width:900.456480px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs10{font-size:6.000000px;}
.fsc{font-size:23.760000px;}
.fs7{font-size:30.240000px;}
.fsd{font-size:36.000000px;}
.fsb{font-size:37.946952px;}
.fs0{font-size:41.760000px;}
.fsa{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fsf{font-size:54.144000px;}
.fs1{font-size:59.760000px;}
.fse{font-size:62.991941px;}
.fs6{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y46{bottom:-247.710000px;}
.y45{bottom:-214.050000px;}
.y44{bottom:-180.210000px;}
.y80{bottom:-156.450000px;}
.y43{bottom:-146.550000px;}
.y7f{bottom:-122.610000px;}
.y42{bottom:-112.710000px;}
.y7e{bottom:-88.950000px;}
.y41{bottom:-79.050000px;}
.y7d{bottom:-55.110000px;}
.y40{bottom:-45.360000px;}
.y49{bottom:-27.180000px;}
.y7c{bottom:-21.450000px;}
.y82{bottom:-17.922750px;}
.y3f{bottom:-11.520000px;}
.y0{bottom:0.000000px;}
.y66{bottom:0.885000px;}
.y279{bottom:1.837500px;}
.y1ca{bottom:2.685000px;}
.y1bc{bottom:2.700000px;}
.y1b9{bottom:2.880000px;}
.y1ba{bottom:3.240000px;}
.y1b8{bottom:3.780000px;}
.y2{bottom:3.960000px;}
.y10f{bottom:4.680000px;}
.y11e{bottom:4.845000px;}
.y10a{bottom:4.860000px;}
.y11a{bottom:5.025000px;}
.y48{bottom:5.040000px;}
.y1c4{bottom:5.220000px;}
.y1a4{bottom:5.385000px;}
.y71{bottom:5.580000px;}
.y1c6{bottom:5.760000px;}
.y1d0{bottom:6.105000px;}
.y14c{bottom:6.285000px;}
.y1c1{bottom:6.300000px;}
.y154{bottom:6.465000px;}
.y17d{bottom:6.480000px;}
.y155{bottom:6.645000px;}
.y17e{bottom:6.660000px;}
.y14b{bottom:6.825000px;}
.y3e{bottom:6.840000px;}
.y151{bottom:7.005000px;}
.y150{bottom:7.185000px;}
.y17a{bottom:7.200000px;}
.y17b{bottom:7.380000px;}
.y181{bottom:8.640000px;}
.y1ab{bottom:8.985000px;}
.y1a0{bottom:9.165000px;}
.y173{bottom:9.900000px;}
.y19d{bottom:10.065000px;}
.y176{bottom:10.080000px;}
.y174{bottom:10.260000px;}
.y19e{bottom:10.650000px;}
.y1a8{bottom:10.785000px;}
.y1a9{bottom:10.965000px;}
.y7b{bottom:12.255000px;}
.y1a5{bottom:12.585000px;}
.y5{bottom:12.600000px;}
.y1af{bottom:13.485000px;}
.y1ae{bottom:13.665000px;}
.y6f{bottom:15.315000px;}
.y1a1{bottom:15.465000px;}
.y147{bottom:15.645000px;}
.y172{bottom:15.840000px;}
.y149{bottom:16.185000px;}
.y65{bottom:16.365000px;}
.y157{bottom:16.545000px;}
.y1bf{bottom:16.560000px;}
.y1cb{bottom:16.725000px;}
.y182{bottom:16.740000px;}
.y183{bottom:16.920000px;}
.y14e{bottom:17.265000px;}
.y19c{bottom:18.570000px;}
.y1a3{bottom:19.245000px;}
.y1cf{bottom:19.965000px;}
.y1d1{bottom:20.145000px;}
.y1ad{bottom:20.325000px;}
.y3d{bottom:20.700000px;}
.y6{bottom:21.960000px;}
.y3{bottom:23.220000px;}
.y16d{bottom:23.865000px;}
.y180{bottom:24.480000px;}
.y4{bottom:24.660000px;}
.y6e{bottom:28.635000px;}
.y16b{bottom:30.270000px;}
.y1c9{bottom:30.405000px;}
.y64{bottom:31.665000px;}
.y1ce{bottom:33.645000px;}
.y3c{bottom:34.740000px;}
.y164{bottom:34.770000px;}
.y16c{bottom:39.390000px;}
.y6d{bottom:41.775000px;}
.y7a{bottom:43.395000px;}
.y63{bottom:44.265000px;}
.y16a{bottom:45.750000px;}
.y84{bottom:46.980000px;}
.y3b{bottom:47.520000px;}
.y163{bottom:48.630000px;}
.y6c{bottom:54.735000px;}
.y79{bottom:56.355000px;}
.y1{bottom:57.420000px;}
.y62{bottom:62.085000px;}
.y81{bottom:63.780000px;}
.y6b{bottom:67.875000px;}
.y78{bottom:69.315000px;}
.y61{bottom:79.950000px;}
.y6a{bottom:80.835000px;}
.y77{bottom:82.455000px;}
.y69{bottom:93.825000px;}
.y76{bottom:95.415000px;}
.y60{bottom:97.770000px;}
.y1f1{bottom:99.900000px;}
.y15d{bottom:100.080000px;}
.y1f8{bottom:101.520000px;}
.yef{bottom:103.680000px;}
.y106{bottom:107.460000px;}
.y75{bottom:108.375000px;}
.yf9{bottom:109.620000px;}
.y278{bottom:109.800000px;}
.y241{bottom:110.340000px;}
.y68{bottom:110.925000px;}
.y213{bottom:111.060000px;}
.y39{bottom:112.320000px;}
.ye0{bottom:115.560000px;}
.y5f{bottom:115.590000px;}
.y15c{bottom:117.180000px;}
.yb4{bottom:117.360000px;}
.y1f0{bottom:119.700000px;}
.y1b6{bottom:120.420000px;}
.y1f7{bottom:121.320000px;}
.y74{bottom:121.515000px;}
.yee{bottom:123.480000px;}
.y13f{bottom:126.900000px;}
.y277{bottom:127.080000px;}
.y105{bottom:127.260000px;}
.y240{bottom:127.620000px;}
.y5e{bottom:128.910000px;}
.yf8{bottom:129.420000px;}
.y212{bottom:130.860000px;}
.y38{bottom:132.300000px;}
.y1b5{bottom:132.480000px;}
.y73{bottom:133.935000px;}
.y15b{bottom:135.180000px;}
.ydf{bottom:135.360000px;}
.yb3{bottom:137.160000px;}
.y5d{bottom:137.730000px;}
.y1ef{bottom:139.500000px;}
.y1f6{bottom:141.120000px;}
.yed{bottom:143.280000px;}
.y276{bottom:144.360000px;}
.y1b4{bottom:144.540000px;}
.y23f{bottom:144.900000px;}
.y13e{bottom:146.880000px;}
.y104{bottom:147.060000px;}
.y15a{bottom:149.040000px;}
.yf7{bottom:149.220000px;}
.y211{bottom:150.660000px;}
.y37{bottom:152.100000px;}
.yde{bottom:155.160000px;}
.y5c{bottom:155.730000px;}
.y1b3{bottom:156.780000px;}
.yb2{bottom:156.960000px;}
.y1ee{bottom:159.300000px;}
.y1f5{bottom:161.100000px;}
.y275{bottom:161.640000px;}
.y23e{bottom:162.210000px;}
.y159{bottom:162.930000px;}
.yec{bottom:163.110000px;}
.y13d{bottom:166.710000px;}
.y103{bottom:167.070000px;}
.y1b2{bottom:168.870000px;}
.yf6{bottom:169.050000px;}
.y210{bottom:171.390000px;}
.y36{bottom:171.930000px;}
.y5b{bottom:173.550000px;}
.y156{bottom:174.825000px;}
.ydd{bottom:174.990000px;}
.yb1{bottom:176.970000px;}
.y274{bottom:178.950000px;}
.y1ed{bottom:179.310000px;}
.y1b1{bottom:180.930000px;}
.y1f4{bottom:181.830000px;}
.yeb{bottom:183.090000px;}
.y13c{bottom:186.510000px;}
.y102{bottom:186.870000px;}
.yf5{bottom:189.030000px;}
.y5a{bottom:191.370000px;}
.y35{bottom:191.730000px;}
.y1b0{bottom:192.990000px;}
.ydc{bottom:194.970000px;}
.y158{bottom:194.985000px;}
.y273{bottom:196.050000px;}
.y23d{bottom:196.590000px;}
.yb0{bottom:196.770000px;}
.y1ec{bottom:199.110000px;}
.yea{bottom:202.890000px;}
.y1ac{bottom:204.705000px;}
.y13b{bottom:206.310000px;}
.y101{bottom:206.670000px;}
.yf4{bottom:208.830000px;}
.y59{bottom:209.190000px;}
.y162{bottom:209.880000px;}
.y34{bottom:211.530000px;}
.y20f{bottom:212.250000px;}
.y272{bottom:213.330000px;}
.y23c{bottom:213.870000px;}
.ydb{bottom:214.770000px;}
.y152{bottom:215.325000px;}
.y169{bottom:216.030000px;}
.yaf{bottom:216.570000px;}
.y1eb{bottom:218.910000px;}
.y16f{bottom:222.120000px;}
.y58{bottom:222.510000px;}
.ye9{bottom:222.690000px;}
.y161{bottom:223.740000px;}
.y13a{bottom:226.110000px;}
.y100{bottom:226.470000px;}
.yf3{bottom:228.630000px;}
.y271{bottom:230.610000px;}
.y23b{bottom:231.150000px;}
.y57{bottom:231.330000px;}
.y33{bottom:231.510000px;}
.y20e{bottom:232.230000px;}
.yda{bottom:235.470000px;}
.y153{bottom:235.485000px;}
.yae{bottom:236.370000px;}
.y16e{bottom:237.630000px;}
.y1ea{bottom:238.710000px;}
.y1aa{bottom:240.525000px;}
.ye8{bottom:242.490000px;}
.y139{bottom:246.090000px;}
.yff{bottom:246.270000px;}
.y270{bottom:247.890000px;}
.yf2{bottom:248.430000px;}
.y56{bottom:249.150000px;}
.y32{bottom:251.310000px;}
.y166{bottom:251.745000px;}
.y20d{bottom:252.030000px;}
.y170{bottom:253.770000px;}
.y14d{bottom:255.105000px;}
.yd9{bottom:255.270000px;}
.y160{bottom:255.495000px;}
.yad{bottom:256.170000px;}
.y1e9{bottom:258.510000px;}
.ye7{bottom:262.290000px;}
.y26f{bottom:265.170000px;}
.y165{bottom:265.605000px;}
.y23a{bottom:265.710000px;}
.y138{bottom:265.890000px;}
.yfe{bottom:266.250000px;}
.y55{bottom:267.150000px;}
.y1a7{bottom:267.525000px;}
.yd8{bottom:268.230000px;}
.y15f{bottom:269.355000px;}
.y31{bottom:271.110000px;}
.y20c{bottom:271.830000px;}
.y14f{bottom:275.985000px;}
.yac{bottom:276.150000px;}
.y1e8{bottom:278.490000px;}
.ye6{bottom:282.270000px;}
.y26e{bottom:282.450000px;}
.y239{bottom:282.810000px;}
.y54{bottom:284.970000px;}
.y137{bottom:285.690000px;}
.yfd{bottom:286.050000px;}
.yd7{bottom:288.210000px;}
.y20b{bottom:291.630000px;}
.y30{bottom:291.810000px;}
.y167{bottom:293.325000px;}
.yab{bottom:295.950000px;}
.y148{bottom:297.045000px;}
.y1a6{bottom:297.945000px;}
.y1e7{bottom:298.290000px;}
.y26d{bottom:299.550000px;}
.y238{bottom:300.090000px;}
.ye5{bottom:302.070000px;}
.y53{bottom:302.790000px;}
.y136{bottom:305.490000px;}
.yfc{bottom:306.750000px;}
.yd6{bottom:308.010000px;}
.y2f{bottom:309.090000px;}
.y20a{bottom:312.330000px;}
.y14a{bottom:316.485000px;}
.yaa{bottom:316.650000px;}
.y26c{bottom:316.830000px;}
.y237{bottom:317.370000px;}
.y2e{bottom:317.550000px;}
.y1e6{bottom:318.090000px;}
.y4a{bottom:318.105000px;}
.y1a2{bottom:319.545000px;}
.y52{bottom:320.640000px;}
.ye4{bottom:321.870000px;}
.y135{bottom:325.290000px;}
.yd5{bottom:327.810000px;}
.y26b{bottom:334.110000px;}
.y236{bottom:334.650000px;}
.y1e5{bottom:337.890000px;}
.y146{bottom:338.265000px;}
.y51{bottom:338.460000px;}
.y2d{bottom:338.790000px;}
.ya9{bottom:340.410000px;}
.ye3{bottom:341.670000px;}
.y134{bottom:345.270000px;}
.yd4{bottom:347.610000px;}
.y26a{bottom:351.390000px;}
.y235{bottom:351.930000px;}
.y19f{bottom:353.205000px;}
.y209{bottom:353.370000px;}
.y2c{bottom:355.350000px;}
.y50{bottom:356.460000px;}
.y1e4{bottom:357.690000px;}
.ye2{bottom:361.470000px;}
.y133{bottom:365.070000px;}
.yd3{bottom:367.410000px;}
.y269{bottom:368.670000px;}
.y234{bottom:369.030000px;}
.y4f{bottom:369.780000px;}
.y208{bottom:373.170000px;}
.y1e3{bottom:377.670000px;}
.y4e{bottom:378.600000px;}
.y2b{bottom:379.110000px;}
.ya8{bottom:381.450000px;}
.y19b{bottom:381.825000px;}
.y132{bottom:384.870000px;}
.y268{bottom:385.770000px;}
.y233{bottom:386.310000px;}
.yd2{bottom:387.390000px;}
.yf1{bottom:388.290000px;}
.y207{bottom:393.015000px;}
.y72{bottom:393.720000px;}
.y4d{bottom:396.420000px;}
.y1e2{bottom:397.515000px;}
.ya7{bottom:401.295000px;}
.y145{bottom:402.015000px;}
.y2a{bottom:402.915000px;}
.y267{bottom:403.095000px;}
.y232{bottom:403.635000px;}
.y131{bottom:404.715000px;}
.yd1{bottom:407.235000px;}
.yf0{bottom:408.135000px;}
.y206{bottom:412.815000px;}
.y4c{bottom:414.240000px;}
.y1e1{bottom:417.315000px;}
.y19a{bottom:419.115000px;}
.y266{bottom:420.375000px;}
.y231{bottom:420.915000px;}
.ya6{bottom:421.095000px;}
.y144{bottom:421.635000px;}
.y29{bottom:423.795000px;}
.y130{bottom:424.515000px;}
.yd0{bottom:427.035000px;}
.y4b{bottom:432.060000px;}
.y205{bottom:433.515000px;}
.y143{bottom:437.115000px;}
.y265{bottom:437.655000px;}
.y230{bottom:438.195000px;}
.y168{bottom:439.200000px;}
.ya5{bottom:440.895000px;}
.y28{bottom:443.775000px;}
.y12f{bottom:444.495000px;}
.ycf{bottom:446.835000px;}
.y264{bottom:454.935000px;}
.y199{bottom:455.475000px;}
.y1e0{bottom:456.915000px;}
.y27{bottom:457.455000px;}
.ya4{bottom:460.695000px;}
.y12e{bottom:464.295000px;}
.y26{bottom:466.095000px;}
.yce{bottom:466.635000px;}
.y263{bottom:472.215000px;}
.y22f{bottom:472.575000px;}
.y198{bottom:475.275000px;}
.y1df{bottom:476.895000px;}
.ya3{bottom:480.675000px;}
.y12d{bottom:484.095000px;}
.ycd{bottom:486.615000px;}
.y262{bottom:489.315000px;}
.y25{bottom:489.495000px;}
.y22e{bottom:489.855000px;}
.y197{bottom:495.255000px;}
.y1de{bottom:496.695000px;}
.y204{bottom:498.315000px;}
.ya2{bottom:500.475000px;}
.y12c{bottom:503.895000px;}
.ycc{bottom:506.415000px;}
.y261{bottom:506.595000px;}
.y22d{bottom:507.135000px;}
.y24{bottom:512.715000px;}
.y196{bottom:515.055000px;}
.y1dd{bottom:516.495000px;}
.y203{bottom:518.115000px;}
.ya1{bottom:520.275000px;}
.y12b{bottom:523.695000px;}
.y260{bottom:523.875000px;}
.y22c{bottom:524.415000px;}
.ycb{bottom:526.215000px;}
.y195{bottom:534.855000px;}
.y23{bottom:535.935000px;}
.y1dc{bottom:536.295000px;}
.y202{bottom:537.915000px;}
.ya0{bottom:540.075000px;}
.y25f{bottom:541.155000px;}
.y67{bottom:541.500000px;}
.y22b{bottom:541.695000px;}
.y12a{bottom:543.675000px;}
.yca{bottom:546.015000px;}
.y194{bottom:554.655000px;}
.y1db{bottom:556.095000px;}
.y201{bottom:557.715000px;}
.y25e{bottom:558.435000px;}
.y22a{bottom:558.975000px;}
.y9f{bottom:559.875000px;}
.y129{bottom:563.475000px;}
.yc9{bottom:565.815000px;}
.y193{bottom:574.455000px;}
.y25d{bottom:575.715000px;}
.y1da{bottom:576.075000px;}
.y200{bottom:577.695000px;}
.y9e{bottom:579.855000px;}
.y128{bottom:583.275000px;}
.yc8{bottom:585.795000px;}
.y22{bottom:590.835000px;}
.y25c{bottom:592.815000px;}
.y229{bottom:593.355000px;}
.y192{bottom:594.435000px;}
.y1d9{bottom:595.875000px;}
.y1ff{bottom:597.495000px;}
.y9d{bottom:599.655000px;}
.y127{bottom:603.075000px;}
.yc7{bottom:605.595000px;}
.y21{bottom:606.315000px;}
.y25b{bottom:610.095000px;}
.y228{bottom:610.635000px;}
.y191{bottom:614.235000px;}
.y1d8{bottom:615.675000px;}
.y1fe{bottom:617.295000px;}
.y9c{bottom:619.455000px;}
.y20{bottom:621.795000px;}
.y126{bottom:622.905000px;}
.yc6{bottom:625.425000px;}
.y25a{bottom:627.405000px;}
.y227{bottom:627.945000px;}
.y190{bottom:634.065000px;}
.y1d7{bottom:635.505000px;}
.y1fd{bottom:637.125000px;}
.y1f{bottom:637.485000px;}
.y9b{bottom:639.285000px;}
.y125{bottom:642.885000px;}
.y259{bottom:644.685000px;}
.yc5{bottom:645.225000px;}
.y1e{bottom:652.965000px;}
.y18f{bottom:653.865000px;}
.y1d6{bottom:656.205000px;}
.y1fc{bottom:656.925000px;}
.y1f3{bottom:657.825000px;}
.y9a{bottom:659.085000px;}
.y258{bottom:661.965000px;}
.y226{bottom:662.505000px;}
.y124{bottom:662.685000px;}
.y1d{bottom:664.125000px;}
.yc4{bottom:665.025000px;}
.y3a{bottom:672.765000px;}
.y18e{bottom:673.665000px;}
.y1fb{bottom:676.905000px;}
.y1c{bottom:677.625000px;}
.y99{bottom:679.065000px;}
.y257{bottom:679.245000px;}
.y225{bottom:679.605000px;}
.y1d5{bottom:680.145000px;}
.y123{bottom:680.685000px;}
.y1f2{bottom:683.205000px;}
.yc3{bottom:685.005000px;}
.y1b{bottom:690.585000px;}
.y18d{bottom:693.645000px;}
.y122{bottom:694.545000px;}
.y256{bottom:696.345000px;}
.y1fa{bottom:696.705000px;}
.y224{bottom:696.885000px;}
.y98{bottom:698.865000px;}
.y1d4{bottom:700.305000px;}
.y1a{bottom:703.545000px;}
.yc2{bottom:704.805000px;}
.y121{bottom:706.425000px;}
.y1d3{bottom:713.265000px;}
.y18c{bottom:713.445000px;}
.y255{bottom:713.625000px;}
.y223{bottom:714.165000px;}
.y19{bottom:716.505000px;}
.y1f9{bottom:717.405000px;}
.y97{bottom:718.665000px;}
.y120{bottom:722.985000px;}
.y142{bottom:724.065000px;}
.yc1{bottom:724.605000px;}
.yfb{bottom:725.505000px;}
.y1d2{bottom:726.405000px;}
.y18{bottom:730.365000px;}
.y254{bottom:730.905000px;}
.y222{bottom:731.445000px;}
.y18b{bottom:733.245000px;}
.y1cd{bottom:738.120000px;}
.y96{bottom:738.465000px;}
.y11f{bottom:739.545000px;}
.y17{bottom:743.145000px;}
.y141{bottom:743.685000px;}
.yc0{bottom:744.405000px;}
.yfa{bottom:745.305000px;}
.y253{bottom:748.185000px;}
.y221{bottom:749.085000px;}
.y18a{bottom:753.045000px;}
.y11d{bottom:756.120000px;}
.y95{bottom:758.265000px;}
.y140{bottom:758.985000px;}
.y15e{bottom:759.960000px;}
.ybf{bottom:764.205000px;}
.y252{bottom:765.465000px;}
.y16{bottom:769.965000px;}
.y11c{bottom:772.845000px;}
.y94{bottom:778.245000px;}
.y15{bottom:781.125000px;}
.y251{bottom:782.565000px;}
.ybe{bottom:784.185000px;}
.y1cc{bottom:786.705000px;}
.y11b{bottom:789.405000px;}
.y220{bottom:789.765000px;}
.y189{bottom:792.825000px;}
.y93{bottom:798.045000px;}
.y250{bottom:799.845000px;}
.y14{bottom:803.985000px;}
.y119{bottom:805.980000px;}
.y21f{bottom:809.565000px;}
.y188{bottom:812.625000px;}
.y1c8{bottom:815.160000px;}
.y24f{bottom:817.125000px;}
.y92{bottom:817.845000px;}
.y118{bottom:822.705000px;}
.ybd{bottom:823.785000px;}
.y13{bottom:827.925000px;}
.y21e{bottom:830.265000px;}
.y187{bottom:831.885000px;}
.y24e{bottom:834.405000px;}
.y91{bottom:837.645000px;}
.y12{bottom:838.365000px;}
.y117{bottom:839.265000px;}
.ybc{bottom:843.585000px;}
.y186{bottom:848.445000px;}
.y24d{bottom:851.685000px;}
.y116{bottom:855.870000px;}
.y1c7{bottom:857.310000px;}
.y90{bottom:857.490000px;}
.y11{bottom:857.850000px;}
.y185{bottom:862.350000px;}
.ybb{bottom:863.430000px;}
.y24c{bottom:869.010000px;}
.y21d{bottom:871.350000px;}
.y115{bottom:872.610000px;}
.y10{bottom:872.790000px;}
.y184{bottom:876.210000px;}
.y8f{bottom:877.470000px;}
.y1c5{bottom:879.630000px;}
.yf{bottom:883.050000px;}
.yba{bottom:883.410000px;}
.y24b{bottom:886.110000px;}
.y17f{bottom:888.090000px;}
.y114{bottom:889.170000px;}
.y21c{bottom:891.150000px;}
.y8e{bottom:897.270000px;}
.y1c3{bottom:899.790000px;}
.ye{bottom:902.490000px;}
.yb9{bottom:903.210000px;}
.y24a{bottom:903.390000px;}
.y113{bottom:905.730000px;}
.y21b{bottom:911.850000px;}
.yd{bottom:915.630000px;}
.y8d{bottom:917.070000px;}
.y1c2{bottom:918.690000px;}
.y249{bottom:920.670000px;}
.y112{bottom:922.470000px;}
.yb8{bottom:923.010000px;}
.y17c{bottom:928.590000px;}
.y8c{bottom:936.870000px;}
.yc{bottom:937.590000px;}
.y248{bottom:937.950000px;}
.y111{bottom:939.030000px;}
.yb7{bottom:942.810000px;}
.y1c0{bottom:947.130000px;}
.y179{bottom:948.750000px;}
.y21a{bottom:952.710000px;}
.y247{bottom:955.230000px;}
.y110{bottom:955.590000px;}
.y8b{bottom:956.670000px;}
.yb{bottom:959.190000px;}
.yb6{bottom:963.510000px;}
.y1be{bottom:968.730000px;}
.y178{bottom:970.350000px;}
.y10e{bottom:972.330000px;}
.y219{bottom:972.510000px;}
.y8a{bottom:976.650000px;}
.ya{bottom:980.970000px;}
.yb5{bottom:983.310000px;}
.y177{bottom:987.090000px;}
.y10d{bottom:988.890000px;}
.y246{bottom:989.610000px;}
.y218{bottom:992.490000px;}
.y89{bottom:996.450000px;}
.y1bd{bottom:996.990000px;}
.y10c{bottom:1005.450000px;}
.y245{bottom:1006.890000px;}
.y9{bottom:1008.690000px;}
.y217{bottom:1012.290000px;}
.y175{bottom:1014.090000px;}
.y88{bottom:1016.250000px;}
.y10b{bottom:1022.190000px;}
.y244{bottom:1024.170000px;}
.y1bb{bottom:1025.430000px;}
.y216{bottom:1032.090000px;}
.y87{bottom:1036.050000px;}
.y8{bottom:1036.230000px;}
.y109{bottom:1040.190000px;}
.y1b7{bottom:1041.450000px;}
.y171{bottom:1042.530000px;}
.y215{bottom:1051.890000px;}
.y86{bottom:1055.850000px;}
.y243{bottom:1058.730000px;}
.y108{bottom:1061.610000px;}
.y7{bottom:1063.230000px;}
.y214{bottom:1072.590000px;}
.ye1{bottom:1075.290000px;}
.y85{bottom:1075.650000px;}
.y242{bottom:1075.830000px;}
.y107{bottom:1077.090000px;}
.y70{bottom:1096.200000px;}
.y83{bottom:1123.200000px;}
.y47{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h1a{height:5.805000px;}
.h57{height:6.257812px;}
.h2{height:13.500000px;}
.h4d{height:13.665000px;}
.h4c{height:14.745000px;}
.h31{height:15.825000px;}
.h33{height:15.840000px;}
.h32{height:15.862500px;}
.h30{height:16.005000px;}
.h1e{height:16.920000px;}
.h50{height:18.165000px;}
.h37{height:18.705000px;}
.h3c{height:18.885000px;}
.h3d{height:19.425000px;}
.h36{height:19.605000px;}
.h3b{height:20.145000px;}
.h39{height:20.325000px;}
.h45{height:20.865000px;}
.h51{height:21.585000px;}
.h27{height:22.140000px;}
.h19{height:23.319141px;}
.h44{height:26.265000px;}
.h43{height:26.805000px;}
.h4f{height:27.525000px;}
.h4e{height:27.705000px;}
.h53{height:27.720000px;}
.h48{height:29.361000px;}
.h2e{height:29.664141px;}
.hc{height:29.678906px;}
.h4a{height:29.685000px;}
.h12{height:30.963516px;}
.he{height:31.081955px;}
.h10{height:31.583118px;}
.h49{height:32.925000px;}
.h4{height:34.200000px;}
.h4b{height:35.085000px;}
.h24{height:36.281250px;}
.h34{height:37.785000px;}
.h35{height:39.045000px;}
.h17{height:39.503370px;}
.h3e{height:39.765000px;}
.h5{height:40.985156px;}
.h38{height:41.205000px;}
.h52{height:41.421000px;}
.h26{height:42.086250px;}
.h3f{height:42.922699px;}
.h56{height:43.215117px;}
.h25{height:43.472812px;}
.h2c{height:43.983631px;}
.h14{height:44.518359px;}
.h1c{height:45.714375px;}
.h15{height:46.622932px;}
.h16{height:47.344922px;}
.h3a{height:47.678906px;}
.h54{height:47.865000px;}
.h46{height:47.980898px;}
.h1f{height:48.616875px;}
.hd{height:49.081955px;}
.hf{height:49.583118px;}
.h18{height:52.998047px;}
.h42{height:53.139375px;}
.h20{height:54.421875px;}
.h13{height:55.291992px;}
.h22{height:55.503491px;}
.h1b{height:57.780000px;}
.h2b{height:58.621992px;}
.h3{height:58.651172px;}
.h2f{height:60.226875px;}
.hb{height:65.010937px;}
.h1d{height:65.884219px;}
.h11{height:67.824844px;}
.h2d{height:70.628906px;}
.h47{height:70.664062px;}
.ha{height:72.562500px;}
.h28{height:74.953125px;}
.h2a{height:75.093750px;}
.h55{height:82.676953px;}
.h7{height:87.695156px;}
.h8{height:96.508125px;}
.h9{height:99.687656px;}
.h23{height:119.025000px;}
.h29{height:144.900000px;}
.h41{height:279.180000px;}
.h40{height:309.600000px;}
.h21{height:444.315000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w11{width:60.300000px;}
.w18{width:67.485000px;}
.w1d{width:74.160000px;}
.w10{width:74.370000px;}
.w20{width:74.685000px;}
.w19{width:74.721000px;}
.w1a{width:80.985000px;}
.w24{width:81.021000px;}
.w3{width:82.071000px;}
.w17{width:87.696000px;}
.w1b{width:94.170000px;}
.w25{width:94.845000px;}
.w1f{width:101.361000px;}
.w26{width:108.030000px;}
.w21{width:114.330000px;}
.w13{width:115.020000px;}
.w1e{width:121.536000px;}
.wf{width:128.181000px;}
.w23{width:135.036000px;}
.w12{width:148.162500px;}
.w5{width:154.470000px;}
.wc{width:155.370000px;}
.wb{width:178.935000px;}
.wa{width:180.390000px;}
.w8{width:182.550000px;}
.w22{width:195.495000px;}
.w1c{width:219.441000px;}
.we{width:263.181000px;}
.w16{width:280.281000px;}
.wd{width:334.320000px;}
.w15{width:418.860000px;}
.w14{width:419.400000px;}
.w7{width:532.740000px;}
.w4{width:639.855000px;}
.w2{width:721.935000px;}
.w9{width:743.175000px;}
.w6{width:747.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x65{left:4.252500px;}
.x2{left:8.091000px;}
.x32{left:9.720000px;}
.x16{left:10.791000px;}
.x48{left:13.470000px;}
.x52{left:15.300000px;}
.x2d{left:17.640000px;}
.x3d{left:18.720000px;}
.x51{left:20.145000px;}
.x1c{left:21.255000px;}
.x3b{left:22.860000px;}
.x36{left:24.300000px;}
.x3c{left:27.180000px;}
.x5f{left:28.980000px;}
.x35{left:30.060000px;}
.x63{left:32.385000px;}
.x3a{left:34.020000px;}
.x34{left:37.080000px;}
.x64{left:39.420000px;}
.x50{left:40.500000px;}
.x4f{left:43.770000px;}
.x39{left:46.290000px;}
.x61{left:47.340000px;}
.x26{left:49.500000px;}
.x58{left:50.610000px;}
.x27{left:52.560000px;}
.x62{left:54.030000px;}
.x29{left:55.620000px;}
.x59{left:56.910000px;}
.x28{left:58.500000px;}
.x38{left:59.790000px;}
.x37{left:61.050000px;}
.x24{left:62.640000px;}
.x33{left:64.110000px;}
.x60{left:67.500000px;}
.x43{left:70.125000px;}
.x3{left:73.965000px;}
.x25{left:77.610000px;}
.x19{left:80.505000px;}
.x17{left:81.765000px;}
.x15{left:93.105000px;}
.x1b{left:94.905000px;}
.xb{left:101.196000px;}
.x1{left:108.045000px;}
.x49{left:113.940000px;}
.x6{left:116.316000px;}
.x22{left:119.196000px;}
.xc{left:121.716000px;}
.xf{left:123.156000px;}
.x7{left:126.936000px;}
.x21{left:128.376000px;}
.x12{left:132.696000px;}
.xa{left:154.290000px;}
.x1e{left:158.610000px;}
.x4{left:190.125000px;}
.xe{left:213.510000px;}
.x3f{left:216.825000px;}
.x40{left:231.765000px;}
.x1f{left:247.035000px;}
.x20{left:250.815000px;}
.x2b{left:256.575000px;}
.x3e{left:258.120000px;}
.x31{left:276.195000px;}
.x44{left:292.650000px;}
.x18{left:303.015000px;}
.x45{left:306.330000px;}
.x1a{left:310.350000px;}
.x8{left:311.655000px;}
.x5a{left:316.515000px;}
.x11{left:330.015000px;}
.x53{left:335.415000px;}
.x42{left:341.430000px;}
.x41{left:345.390000px;}
.x47{left:370.950000px;}
.x10{left:373.395000px;}
.x46{left:375.270000px;}
.x2c{left:391.215000px;}
.xd{left:394.455000px;}
.x4a{left:406.335000px;}
.x54{left:409.575000px;}
.x9{left:443.085000px;}
.x5{left:446.505000px;}
.x5b{left:451.560000px;}
.x13{left:489.165000px;}
.x14{left:490.785000px;}
.x4b{left:494.040000px;}
.x55{left:531.120000px;}
.x5c{left:532.560000px;}
.x2e{left:546.600000px;}
.x4c{left:561.540000px;}
.x5d{left:613.590000px;}
.x1d{left:620.253000px;}
.x56{left:632.490000px;}
.x4d{left:636.270000px;}
.x23{left:669.750000px;}
.x2f{left:674.790000px;}
.x2a{left:679.110000px;}
.x57{left:707.190000px;}
.x5e{left:708.450000px;}
.x4e{left:717.270000px;}
.x30{left:749.160000px;}
@media print{
.v4{vertical-align:-64.160000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls11{letter-spacing:-1.280000pt;}
.lsf{letter-spacing:-0.720000pt;}
.ls18{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.198933pt;}
.ls22{letter-spacing:-0.183467pt;}
.ls1d{letter-spacing:-0.161067pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.096000pt;}
.ls1e{letter-spacing:0.120533pt;}
.ls3{letter-spacing:0.128640pt;}
.lsa{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.161067pt;}
.ls1b{letter-spacing:0.193920pt;}
.ls13{letter-spacing:0.230933pt;}
.ls1f{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.240640pt;}
.ls16{letter-spacing:0.257280pt;}
.ls6{letter-spacing:0.280320pt;}
.ls17{letter-spacing:0.288000pt;}
.lsb{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.353920pt;}
.ls20{letter-spacing:0.426667pt;}
.ls7{letter-spacing:0.439040pt;}
.ls14{letter-spacing:0.592000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:0.833920pt;}
.ls5{letter-spacing:0.960000pt;}
.ls19{letter-spacing:1.418880pt;}
.ls2{letter-spacing:42.400000pt;}
.ls15{letter-spacing:59.040000pt;}
.ls0{letter-spacing:63.360000pt;}
.ls1{letter-spacing:63.466667pt;}
.ws17{word-spacing:-42.880000pt;}
.wsb{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.720000pt;}
.wse{word-spacing:-13.600000pt;}
.ws18{word-spacing:-13.510933pt;}
.ws1a{word-spacing:-13.327360pt;}
.wsd{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232640pt;}
.ws19{word-spacing:-13.096533pt;}
.ws13{word-spacing:-12.288000pt;}
.ws14{word-spacing:-12.032000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws12{word-spacing:-10.977280pt;}
.ws5{word-spacing:-10.881067pt;}
.ws6{word-spacing:-10.720000pt;}
.ws15{word-spacing:-10.558933pt;}
.ws11{word-spacing:-10.521067pt;}
.ws2{word-spacing:-10.400000pt;}
.ws4{word-spacing:-10.080000pt;}
.ws3{word-spacing:-9.760000pt;}
.ws16{word-spacing:-9.690880pt;}
.ws9{word-spacing:-9.280000pt;}
.ws8{word-spacing:-8.000000pt;}
.ws1{word-spacing:-6.720000pt;}
.ws10{word-spacing:-6.080000pt;}
.wsa{word-spacing:0.000000pt;}
.ws0{word-spacing:53.600000pt;}
._5{margin-left:-52.960000pt;}
._1b{margin-left:-3.024000pt;}
._1a{margin-left:-1.952213pt;}
._2{margin-left:-0.988160pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._c{width:3.399680pt;}
._8{width:4.355840pt;}
._9{width:5.258880pt;}
._10{width:6.406400pt;}
._11{width:7.485440pt;}
._7{width:8.871040pt;}
._d{width:9.986560pt;}
._15{width:10.949760pt;}
._14{width:12.111360pt;}
._1f{width:14.254080pt;}
._22{width:15.298560pt;}
._19{width:16.796800pt;}
._18{width:18.067840pt;}
._1c{width:19.208320pt;}
._17{width:20.398080pt;}
._16{width:21.354240pt;}
._27{width:22.487893pt;}
._1d{width:23.800960pt;}
._2b{width:24.807040pt;}
._e{width:25.710080pt;}
._f{width:26.825600pt;}
._28{width:27.994240pt;}
._29{width:28.925440pt;}
._39{width:29.906560pt;}
._2a{width:30.915840pt;}
._a{width:32.031360pt;}
._b{width:33.040640pt;}
._26{width:34.634240pt;}
._12{width:35.962240pt;}
._13{width:37.130880pt;}
._2d{width:38.302720pt;}
._24{width:39.255680pt;}
._23{width:40.211840pt;}
._2c{width:41.812480pt;}
._32{width:42.768640pt;}
._30{width:44.089600pt;}
._20{width:46.140160pt;}
._34{width:48.339200pt;}
._33{width:49.295360pt;}
._31{width:50.517120pt;}
._35{width:52.535680pt;}
._2e{width:54.394880pt;}
._25{width:56.254080pt;}
._3{width:58.218667pt;}
._3b{width:59.919360pt;}
._2f{width:60.822400pt;}
._38{width:72.615040pt;}
._1e{width:77.469440pt;}
._36{width:95.603627pt;}
._3c{width:101.034240pt;}
._3d{width:102.443520pt;}
._4{width:177.440000pt;}
._21{width:250.906667pt;}
._3a{width:545.064320pt;}
._6{width:671.978667pt;}
._37{width:800.405760pt;}
.fs2{font-size:5.120000pt;}
.fs10{font-size:5.333333pt;}
.fsc{font-size:21.120000pt;}
.fs7{font-size:26.880000pt;}
.fsd{font-size:32.000000pt;}
.fsb{font-size:33.730624pt;}
.fs0{font-size:37.120000pt;}
.fsa{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fsf{font-size:48.128000pt;}
.fs1{font-size:53.120000pt;}
.fse{font-size:55.992837pt;}
.fs6{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y46{bottom:-220.186667pt;}
.y45{bottom:-190.266667pt;}
.y44{bottom:-160.186667pt;}
.y80{bottom:-139.066667pt;}
.y43{bottom:-130.266667pt;}
.y7f{bottom:-108.986667pt;}
.y42{bottom:-100.186667pt;}
.y7e{bottom:-79.066667pt;}
.y41{bottom:-70.266667pt;}
.y7d{bottom:-48.986667pt;}
.y40{bottom:-40.320000pt;}
.y49{bottom:-24.160000pt;}
.y7c{bottom:-19.066667pt;}
.y82{bottom:-15.931333pt;}
.y3f{bottom:-10.240000pt;}
.y0{bottom:0.000000pt;}
.y66{bottom:0.786667pt;}
.y279{bottom:1.633333pt;}
.y1ca{bottom:2.386667pt;}
.y1bc{bottom:2.400000pt;}
.y1b9{bottom:2.560000pt;}
.y1ba{bottom:2.880000pt;}
.y1b8{bottom:3.360000pt;}
.y2{bottom:3.520000pt;}
.y10f{bottom:4.160000pt;}
.y11e{bottom:4.306667pt;}
.y10a{bottom:4.320000pt;}
.y11a{bottom:4.466667pt;}
.y48{bottom:4.480000pt;}
.y1c4{bottom:4.640000pt;}
.y1a4{bottom:4.786667pt;}
.y71{bottom:4.960000pt;}
.y1c6{bottom:5.120000pt;}
.y1d0{bottom:5.426667pt;}
.y14c{bottom:5.586667pt;}
.y1c1{bottom:5.600000pt;}
.y154{bottom:5.746667pt;}
.y17d{bottom:5.760000pt;}
.y155{bottom:5.906667pt;}
.y17e{bottom:5.920000pt;}
.y14b{bottom:6.066667pt;}
.y3e{bottom:6.080000pt;}
.y151{bottom:6.226667pt;}
.y150{bottom:6.386667pt;}
.y17a{bottom:6.400000pt;}
.y17b{bottom:6.560000pt;}
.y181{bottom:7.680000pt;}
.y1ab{bottom:7.986667pt;}
.y1a0{bottom:8.146667pt;}
.y173{bottom:8.800000pt;}
.y19d{bottom:8.946667pt;}
.y176{bottom:8.960000pt;}
.y174{bottom:9.120000pt;}
.y19e{bottom:9.466667pt;}
.y1a8{bottom:9.586667pt;}
.y1a9{bottom:9.746667pt;}
.y7b{bottom:10.893333pt;}
.y1a5{bottom:11.186667pt;}
.y5{bottom:11.200000pt;}
.y1af{bottom:11.986667pt;}
.y1ae{bottom:12.146667pt;}
.y6f{bottom:13.613333pt;}
.y1a1{bottom:13.746667pt;}
.y147{bottom:13.906667pt;}
.y172{bottom:14.080000pt;}
.y149{bottom:14.386667pt;}
.y65{bottom:14.546667pt;}
.y157{bottom:14.706667pt;}
.y1bf{bottom:14.720000pt;}
.y1cb{bottom:14.866667pt;}
.y182{bottom:14.880000pt;}
.y183{bottom:15.040000pt;}
.y14e{bottom:15.346667pt;}
.y19c{bottom:16.506667pt;}
.y1a3{bottom:17.106667pt;}
.y1cf{bottom:17.746667pt;}
.y1d1{bottom:17.906667pt;}
.y1ad{bottom:18.066667pt;}
.y3d{bottom:18.400000pt;}
.y6{bottom:19.520000pt;}
.y3{bottom:20.640000pt;}
.y16d{bottom:21.213333pt;}
.y180{bottom:21.760000pt;}
.y4{bottom:21.920000pt;}
.y6e{bottom:25.453333pt;}
.y16b{bottom:26.906667pt;}
.y1c9{bottom:27.026667pt;}
.y64{bottom:28.146667pt;}
.y1ce{bottom:29.906667pt;}
.y3c{bottom:30.880000pt;}
.y164{bottom:30.906667pt;}
.y16c{bottom:35.013333pt;}
.y6d{bottom:37.133333pt;}
.y7a{bottom:38.573333pt;}
.y63{bottom:39.346667pt;}
.y16a{bottom:40.666667pt;}
.y84{bottom:41.760000pt;}
.y3b{bottom:42.240000pt;}
.y163{bottom:43.226667pt;}
.y6c{bottom:48.653333pt;}
.y79{bottom:50.093333pt;}
.y1{bottom:51.040000pt;}
.y62{bottom:55.186667pt;}
.y81{bottom:56.693333pt;}
.y6b{bottom:60.333333pt;}
.y78{bottom:61.613333pt;}
.y61{bottom:71.066667pt;}
.y6a{bottom:71.853333pt;}
.y77{bottom:73.293333pt;}
.y69{bottom:83.400000pt;}
.y76{bottom:84.813333pt;}
.y60{bottom:86.906667pt;}
.y1f1{bottom:88.800000pt;}
.y15d{bottom:88.960000pt;}
.y1f8{bottom:90.240000pt;}
.yef{bottom:92.160000pt;}
.y106{bottom:95.520000pt;}
.y75{bottom:96.333333pt;}
.yf9{bottom:97.440000pt;}
.y278{bottom:97.600000pt;}
.y241{bottom:98.080000pt;}
.y68{bottom:98.600000pt;}
.y213{bottom:98.720000pt;}
.y39{bottom:99.840000pt;}
.ye0{bottom:102.720000pt;}
.y5f{bottom:102.746667pt;}
.y15c{bottom:104.160000pt;}
.yb4{bottom:104.320000pt;}
.y1f0{bottom:106.400000pt;}
.y1b6{bottom:107.040000pt;}
.y1f7{bottom:107.840000pt;}
.y74{bottom:108.013333pt;}
.yee{bottom:109.760000pt;}
.y13f{bottom:112.800000pt;}
.y277{bottom:112.960000pt;}
.y105{bottom:113.120000pt;}
.y240{bottom:113.440000pt;}
.y5e{bottom:114.586667pt;}
.yf8{bottom:115.040000pt;}
.y212{bottom:116.320000pt;}
.y38{bottom:117.600000pt;}
.y1b5{bottom:117.760000pt;}
.y73{bottom:119.053333pt;}
.y15b{bottom:120.160000pt;}
.ydf{bottom:120.320000pt;}
.yb3{bottom:121.920000pt;}
.y5d{bottom:122.426667pt;}
.y1ef{bottom:124.000000pt;}
.y1f6{bottom:125.440000pt;}
.yed{bottom:127.360000pt;}
.y276{bottom:128.320000pt;}
.y1b4{bottom:128.480000pt;}
.y23f{bottom:128.800000pt;}
.y13e{bottom:130.560000pt;}
.y104{bottom:130.720000pt;}
.y15a{bottom:132.480000pt;}
.yf7{bottom:132.640000pt;}
.y211{bottom:133.920000pt;}
.y37{bottom:135.200000pt;}
.yde{bottom:137.920000pt;}
.y5c{bottom:138.426667pt;}
.y1b3{bottom:139.360000pt;}
.yb2{bottom:139.520000pt;}
.y1ee{bottom:141.600000pt;}
.y1f5{bottom:143.200000pt;}
.y275{bottom:143.680000pt;}
.y23e{bottom:144.186667pt;}
.y159{bottom:144.826667pt;}
.yec{bottom:144.986667pt;}
.y13d{bottom:148.186667pt;}
.y103{bottom:148.506667pt;}
.y1b2{bottom:150.106667pt;}
.yf6{bottom:150.266667pt;}
.y210{bottom:152.346667pt;}
.y36{bottom:152.826667pt;}
.y5b{bottom:154.266667pt;}
.y156{bottom:155.400000pt;}
.ydd{bottom:155.546667pt;}
.yb1{bottom:157.306667pt;}
.y274{bottom:159.066667pt;}
.y1ed{bottom:159.386667pt;}
.y1b1{bottom:160.826667pt;}
.y1f4{bottom:161.626667pt;}
.yeb{bottom:162.746667pt;}
.y13c{bottom:165.786667pt;}
.y102{bottom:166.106667pt;}
.yf5{bottom:168.026667pt;}
.y5a{bottom:170.106667pt;}
.y35{bottom:170.426667pt;}
.y1b0{bottom:171.546667pt;}
.ydc{bottom:173.306667pt;}
.y158{bottom:173.320000pt;}
.y273{bottom:174.266667pt;}
.y23d{bottom:174.746667pt;}
.yb0{bottom:174.906667pt;}
.y1ec{bottom:176.986667pt;}
.yea{bottom:180.346667pt;}
.y1ac{bottom:181.960000pt;}
.y13b{bottom:183.386667pt;}
.y101{bottom:183.706667pt;}
.yf4{bottom:185.626667pt;}
.y59{bottom:185.946667pt;}
.y162{bottom:186.560000pt;}
.y34{bottom:188.026667pt;}
.y20f{bottom:188.666667pt;}
.y272{bottom:189.626667pt;}
.y23c{bottom:190.106667pt;}
.ydb{bottom:190.906667pt;}
.y152{bottom:191.400000pt;}
.y169{bottom:192.026667pt;}
.yaf{bottom:192.506667pt;}
.y1eb{bottom:194.586667pt;}
.y16f{bottom:197.440000pt;}
.y58{bottom:197.786667pt;}
.ye9{bottom:197.946667pt;}
.y161{bottom:198.880000pt;}
.y13a{bottom:200.986667pt;}
.y100{bottom:201.306667pt;}
.yf3{bottom:203.226667pt;}
.y271{bottom:204.986667pt;}
.y23b{bottom:205.466667pt;}
.y57{bottom:205.626667pt;}
.y33{bottom:205.786667pt;}
.y20e{bottom:206.426667pt;}
.yda{bottom:209.306667pt;}
.y153{bottom:209.320000pt;}
.yae{bottom:210.106667pt;}
.y16e{bottom:211.226667pt;}
.y1ea{bottom:212.186667pt;}
.y1aa{bottom:213.800000pt;}
.ye8{bottom:215.546667pt;}
.y139{bottom:218.746667pt;}
.yff{bottom:218.906667pt;}
.y270{bottom:220.346667pt;}
.yf2{bottom:220.826667pt;}
.y56{bottom:221.466667pt;}
.y32{bottom:223.386667pt;}
.y166{bottom:223.773333pt;}
.y20d{bottom:224.026667pt;}
.y170{bottom:225.573333pt;}
.y14d{bottom:226.760000pt;}
.yd9{bottom:226.906667pt;}
.y160{bottom:227.106667pt;}
.yad{bottom:227.706667pt;}
.y1e9{bottom:229.786667pt;}
.ye7{bottom:233.146667pt;}
.y26f{bottom:235.706667pt;}
.y165{bottom:236.093333pt;}
.y23a{bottom:236.186667pt;}
.y138{bottom:236.346667pt;}
.yfe{bottom:236.666667pt;}
.y55{bottom:237.466667pt;}
.y1a7{bottom:237.800000pt;}
.yd8{bottom:238.426667pt;}
.y15f{bottom:239.426667pt;}
.y31{bottom:240.986667pt;}
.y20c{bottom:241.626667pt;}
.y14f{bottom:245.320000pt;}
.yac{bottom:245.466667pt;}
.y1e8{bottom:247.546667pt;}
.ye6{bottom:250.906667pt;}
.y26e{bottom:251.066667pt;}
.y239{bottom:251.386667pt;}
.y54{bottom:253.306667pt;}
.y137{bottom:253.946667pt;}
.yfd{bottom:254.266667pt;}
.yd7{bottom:256.186667pt;}
.y20b{bottom:259.226667pt;}
.y30{bottom:259.386667pt;}
.y167{bottom:260.733333pt;}
.yab{bottom:263.066667pt;}
.y148{bottom:264.040000pt;}
.y1a6{bottom:264.840000pt;}
.y1e7{bottom:265.146667pt;}
.y26d{bottom:266.266667pt;}
.y238{bottom:266.746667pt;}
.ye5{bottom:268.506667pt;}
.y53{bottom:269.146667pt;}
.y136{bottom:271.546667pt;}
.yfc{bottom:272.666667pt;}
.yd6{bottom:273.786667pt;}
.y2f{bottom:274.746667pt;}
.y20a{bottom:277.626667pt;}
.y14a{bottom:281.320000pt;}
.yaa{bottom:281.466667pt;}
.y26c{bottom:281.626667pt;}
.y237{bottom:282.106667pt;}
.y2e{bottom:282.266667pt;}
.y1e6{bottom:282.746667pt;}
.y4a{bottom:282.760000pt;}
.y1a2{bottom:284.040000pt;}
.y52{bottom:285.013333pt;}
.ye4{bottom:286.106667pt;}
.y135{bottom:289.146667pt;}
.yd5{bottom:291.386667pt;}
.y26b{bottom:296.986667pt;}
.y236{bottom:297.466667pt;}
.y1e5{bottom:300.346667pt;}
.y146{bottom:300.680000pt;}
.y51{bottom:300.853333pt;}
.y2d{bottom:301.146667pt;}
.ya9{bottom:302.586667pt;}
.ye3{bottom:303.706667pt;}
.y134{bottom:306.906667pt;}
.yd4{bottom:308.986667pt;}
.y26a{bottom:312.346667pt;}
.y235{bottom:312.826667pt;}
.y19f{bottom:313.960000pt;}
.y209{bottom:314.106667pt;}
.y2c{bottom:315.866667pt;}
.y50{bottom:316.853333pt;}
.y1e4{bottom:317.946667pt;}
.ye2{bottom:321.306667pt;}
.y133{bottom:324.506667pt;}
.yd3{bottom:326.586667pt;}
.y269{bottom:327.706667pt;}
.y234{bottom:328.026667pt;}
.y4f{bottom:328.693333pt;}
.y208{bottom:331.706667pt;}
.y1e3{bottom:335.706667pt;}
.y4e{bottom:336.533333pt;}
.y2b{bottom:336.986667pt;}
.ya8{bottom:339.066667pt;}
.y19b{bottom:339.400000pt;}
.y132{bottom:342.106667pt;}
.y268{bottom:342.906667pt;}
.y233{bottom:343.386667pt;}
.yd2{bottom:344.346667pt;}
.yf1{bottom:345.146667pt;}
.y207{bottom:349.346667pt;}
.y72{bottom:349.973333pt;}
.y4d{bottom:352.373333pt;}
.y1e2{bottom:353.346667pt;}
.ya7{bottom:356.706667pt;}
.y145{bottom:357.346667pt;}
.y2a{bottom:358.146667pt;}
.y267{bottom:358.306667pt;}
.y232{bottom:358.786667pt;}
.y131{bottom:359.746667pt;}
.yd1{bottom:361.986667pt;}
.yf0{bottom:362.786667pt;}
.y206{bottom:366.946667pt;}
.y4c{bottom:368.213333pt;}
.y1e1{bottom:370.946667pt;}
.y19a{bottom:372.546667pt;}
.y266{bottom:373.666667pt;}
.y231{bottom:374.146667pt;}
.ya6{bottom:374.306667pt;}
.y144{bottom:374.786667pt;}
.y29{bottom:376.706667pt;}
.y130{bottom:377.346667pt;}
.yd0{bottom:379.586667pt;}
.y4b{bottom:384.053333pt;}
.y205{bottom:385.346667pt;}
.y143{bottom:388.546667pt;}
.y265{bottom:389.026667pt;}
.y230{bottom:389.506667pt;}
.y168{bottom:390.400000pt;}
.ya5{bottom:391.906667pt;}
.y28{bottom:394.466667pt;}
.y12f{bottom:395.106667pt;}
.ycf{bottom:397.186667pt;}
.y264{bottom:404.386667pt;}
.y199{bottom:404.866667pt;}
.y1e0{bottom:406.146667pt;}
.y27{bottom:406.626667pt;}
.ya4{bottom:409.506667pt;}
.y12e{bottom:412.706667pt;}
.y26{bottom:414.306667pt;}
.yce{bottom:414.786667pt;}
.y263{bottom:419.746667pt;}
.y22f{bottom:420.066667pt;}
.y198{bottom:422.466667pt;}
.y1df{bottom:423.906667pt;}
.ya3{bottom:427.266667pt;}
.y12d{bottom:430.306667pt;}
.ycd{bottom:432.546667pt;}
.y262{bottom:434.946667pt;}
.y25{bottom:435.106667pt;}
.y22e{bottom:435.426667pt;}
.y197{bottom:440.226667pt;}
.y1de{bottom:441.506667pt;}
.y204{bottom:442.946667pt;}
.ya2{bottom:444.866667pt;}
.y12c{bottom:447.906667pt;}
.ycc{bottom:450.146667pt;}
.y261{bottom:450.306667pt;}
.y22d{bottom:450.786667pt;}
.y24{bottom:455.746667pt;}
.y196{bottom:457.826667pt;}
.y1dd{bottom:459.106667pt;}
.y203{bottom:460.546667pt;}
.ya1{bottom:462.466667pt;}
.y12b{bottom:465.506667pt;}
.y260{bottom:465.666667pt;}
.y22c{bottom:466.146667pt;}
.ycb{bottom:467.746667pt;}
.y195{bottom:475.426667pt;}
.y23{bottom:476.386667pt;}
.y1dc{bottom:476.706667pt;}
.y202{bottom:478.146667pt;}
.ya0{bottom:480.066667pt;}
.y25f{bottom:481.026667pt;}
.y67{bottom:481.333333pt;}
.y22b{bottom:481.506667pt;}
.y12a{bottom:483.266667pt;}
.yca{bottom:485.346667pt;}
.y194{bottom:493.026667pt;}
.y1db{bottom:494.306667pt;}
.y201{bottom:495.746667pt;}
.y25e{bottom:496.386667pt;}
.y22a{bottom:496.866667pt;}
.y9f{bottom:497.666667pt;}
.y129{bottom:500.866667pt;}
.yc9{bottom:502.946667pt;}
.y193{bottom:510.626667pt;}
.y25d{bottom:511.746667pt;}
.y1da{bottom:512.066667pt;}
.y200{bottom:513.506667pt;}
.y9e{bottom:515.426667pt;}
.y128{bottom:518.466667pt;}
.yc8{bottom:520.706667pt;}
.y22{bottom:525.186667pt;}
.y25c{bottom:526.946667pt;}
.y229{bottom:527.426667pt;}
.y192{bottom:528.386667pt;}
.y1d9{bottom:529.666667pt;}
.y1ff{bottom:531.106667pt;}
.y9d{bottom:533.026667pt;}
.y127{bottom:536.066667pt;}
.yc7{bottom:538.306667pt;}
.y21{bottom:538.946667pt;}
.y25b{bottom:542.306667pt;}
.y228{bottom:542.786667pt;}
.y191{bottom:545.986667pt;}
.y1d8{bottom:547.266667pt;}
.y1fe{bottom:548.706667pt;}
.y9c{bottom:550.626667pt;}
.y20{bottom:552.706667pt;}
.y126{bottom:553.693333pt;}
.yc6{bottom:555.933333pt;}
.y25a{bottom:557.693333pt;}
.y227{bottom:558.173333pt;}
.y190{bottom:563.613333pt;}
.y1d7{bottom:564.893333pt;}
.y1fd{bottom:566.333333pt;}
.y1f{bottom:566.653333pt;}
.y9b{bottom:568.253333pt;}
.y125{bottom:571.453333pt;}
.y259{bottom:573.053333pt;}
.yc5{bottom:573.533333pt;}
.y1e{bottom:580.413333pt;}
.y18f{bottom:581.213333pt;}
.y1d6{bottom:583.293333pt;}
.y1fc{bottom:583.933333pt;}
.y1f3{bottom:584.733333pt;}
.y9a{bottom:585.853333pt;}
.y258{bottom:588.413333pt;}
.y226{bottom:588.893333pt;}
.y124{bottom:589.053333pt;}
.y1d{bottom:590.333333pt;}
.yc4{bottom:591.133333pt;}
.y3a{bottom:598.013333pt;}
.y18e{bottom:598.813333pt;}
.y1fb{bottom:601.693333pt;}
.y1c{bottom:602.333333pt;}
.y99{bottom:603.613333pt;}
.y257{bottom:603.773333pt;}
.y225{bottom:604.093333pt;}
.y1d5{bottom:604.573333pt;}
.y123{bottom:605.053333pt;}
.y1f2{bottom:607.293333pt;}
.yc3{bottom:608.893333pt;}
.y1b{bottom:613.853333pt;}
.y18d{bottom:616.573333pt;}
.y122{bottom:617.373333pt;}
.y256{bottom:618.973333pt;}
.y1fa{bottom:619.293333pt;}
.y224{bottom:619.453333pt;}
.y98{bottom:621.213333pt;}
.y1d4{bottom:622.493333pt;}
.y1a{bottom:625.373333pt;}
.yc2{bottom:626.493333pt;}
.y121{bottom:627.933333pt;}
.y1d3{bottom:634.013333pt;}
.y18c{bottom:634.173333pt;}
.y255{bottom:634.333333pt;}
.y223{bottom:634.813333pt;}
.y19{bottom:636.893333pt;}
.y1f9{bottom:637.693333pt;}
.y97{bottom:638.813333pt;}
.y120{bottom:642.653333pt;}
.y142{bottom:643.613333pt;}
.yc1{bottom:644.093333pt;}
.yfb{bottom:644.893333pt;}
.y1d2{bottom:645.693333pt;}
.y18{bottom:649.213333pt;}
.y254{bottom:649.693333pt;}
.y222{bottom:650.173333pt;}
.y18b{bottom:651.773333pt;}
.y1cd{bottom:656.106667pt;}
.y96{bottom:656.413333pt;}
.y11f{bottom:657.373333pt;}
.y17{bottom:660.573333pt;}
.y141{bottom:661.053333pt;}
.yc0{bottom:661.693333pt;}
.yfa{bottom:662.493333pt;}
.y253{bottom:665.053333pt;}
.y221{bottom:665.853333pt;}
.y18a{bottom:669.373333pt;}
.y11d{bottom:672.106667pt;}
.y95{bottom:674.013333pt;}
.y140{bottom:674.653333pt;}
.y15e{bottom:675.520000pt;}
.ybf{bottom:679.293333pt;}
.y252{bottom:680.413333pt;}
.y16{bottom:684.413333pt;}
.y11c{bottom:686.973333pt;}
.y94{bottom:691.773333pt;}
.y15{bottom:694.333333pt;}
.y251{bottom:695.613333pt;}
.ybe{bottom:697.053333pt;}
.y1cc{bottom:699.293333pt;}
.y11b{bottom:701.693333pt;}
.y220{bottom:702.013333pt;}
.y189{bottom:704.733333pt;}
.y93{bottom:709.373333pt;}
.y250{bottom:710.973333pt;}
.y14{bottom:714.653333pt;}
.y119{bottom:716.426667pt;}
.y21f{bottom:719.613333pt;}
.y188{bottom:722.333333pt;}
.y1c8{bottom:724.586667pt;}
.y24f{bottom:726.333333pt;}
.y92{bottom:726.973333pt;}
.y118{bottom:731.293333pt;}
.ybd{bottom:732.253333pt;}
.y13{bottom:735.933333pt;}
.y21e{bottom:738.013333pt;}
.y187{bottom:739.453333pt;}
.y24e{bottom:741.693333pt;}
.y91{bottom:744.573333pt;}
.y12{bottom:745.213333pt;}
.y117{bottom:746.013333pt;}
.ybc{bottom:749.853333pt;}
.y186{bottom:754.173333pt;}
.y24d{bottom:757.053333pt;}
.y116{bottom:760.773333pt;}
.y1c7{bottom:762.053333pt;}
.y90{bottom:762.213333pt;}
.y11{bottom:762.533333pt;}
.y185{bottom:766.533333pt;}
.ybb{bottom:767.493333pt;}
.y24c{bottom:772.453333pt;}
.y21d{bottom:774.533333pt;}
.y115{bottom:775.653333pt;}
.y10{bottom:775.813333pt;}
.y184{bottom:778.853333pt;}
.y8f{bottom:779.973333pt;}
.y1c5{bottom:781.893333pt;}
.yf{bottom:784.933333pt;}
.yba{bottom:785.253333pt;}
.y24b{bottom:787.653333pt;}
.y17f{bottom:789.413333pt;}
.y114{bottom:790.373333pt;}
.y21c{bottom:792.133333pt;}
.y8e{bottom:797.573333pt;}
.y1c3{bottom:799.813333pt;}
.ye{bottom:802.213333pt;}
.yb9{bottom:802.853333pt;}
.y24a{bottom:803.013333pt;}
.y113{bottom:805.093333pt;}
.y21b{bottom:810.533333pt;}
.yd{bottom:813.893333pt;}
.y8d{bottom:815.173333pt;}
.y1c2{bottom:816.613333pt;}
.y249{bottom:818.373333pt;}
.y112{bottom:819.973333pt;}
.yb8{bottom:820.453333pt;}
.y17c{bottom:825.413333pt;}
.y8c{bottom:832.773333pt;}
.yc{bottom:833.413333pt;}
.y248{bottom:833.733333pt;}
.y111{bottom:834.693333pt;}
.yb7{bottom:838.053333pt;}
.y1c0{bottom:841.893333pt;}
.y179{bottom:843.333333pt;}
.y21a{bottom:846.853333pt;}
.y247{bottom:849.093333pt;}
.y110{bottom:849.413333pt;}
.y8b{bottom:850.373333pt;}
.yb{bottom:852.613333pt;}
.yb6{bottom:856.453333pt;}
.y1be{bottom:861.093333pt;}
.y178{bottom:862.533333pt;}
.y10e{bottom:864.293333pt;}
.y219{bottom:864.453333pt;}
.y8a{bottom:868.133333pt;}
.ya{bottom:871.973333pt;}
.yb5{bottom:874.053333pt;}
.y177{bottom:877.413333pt;}
.y10d{bottom:879.013333pt;}
.y246{bottom:879.653333pt;}
.y218{bottom:882.213333pt;}
.y89{bottom:885.733333pt;}
.y1bd{bottom:886.213333pt;}
.y10c{bottom:893.733333pt;}
.y245{bottom:895.013333pt;}
.y9{bottom:896.613333pt;}
.y217{bottom:899.813333pt;}
.y175{bottom:901.413333pt;}
.y88{bottom:903.333333pt;}
.y10b{bottom:908.613333pt;}
.y244{bottom:910.373333pt;}
.y1bb{bottom:911.493333pt;}
.y216{bottom:917.413333pt;}
.y87{bottom:920.933333pt;}
.y8{bottom:921.093333pt;}
.y109{bottom:924.613333pt;}
.y1b7{bottom:925.733333pt;}
.y171{bottom:926.693333pt;}
.y215{bottom:935.013333pt;}
.y86{bottom:938.533333pt;}
.y243{bottom:941.093333pt;}
.y108{bottom:943.653333pt;}
.y7{bottom:945.093333pt;}
.y214{bottom:953.413333pt;}
.ye1{bottom:955.813333pt;}
.y85{bottom:956.133333pt;}
.y242{bottom:956.293333pt;}
.y107{bottom:957.413333pt;}
.y70{bottom:974.400000pt;}
.y83{bottom:998.400000pt;}
.y47{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h1a{height:5.160000pt;}
.h57{height:5.562500pt;}
.h2{height:12.000000pt;}
.h4d{height:12.146667pt;}
.h4c{height:13.106667pt;}
.h31{height:14.066667pt;}
.h33{height:14.080000pt;}
.h32{height:14.100000pt;}
.h30{height:14.226667pt;}
.h1e{height:15.040000pt;}
.h50{height:16.146667pt;}
.h37{height:16.626667pt;}
.h3c{height:16.786667pt;}
.h3d{height:17.266667pt;}
.h36{height:17.426667pt;}
.h3b{height:17.906667pt;}
.h39{height:18.066667pt;}
.h45{height:18.546667pt;}
.h51{height:19.186667pt;}
.h27{height:19.680000pt;}
.h19{height:20.728125pt;}
.h44{height:23.346667pt;}
.h43{height:23.826667pt;}
.h4f{height:24.466667pt;}
.h4e{height:24.626667pt;}
.h53{height:24.640000pt;}
.h48{height:26.098667pt;}
.h2e{height:26.368125pt;}
.hc{height:26.381250pt;}
.h4a{height:26.386667pt;}
.h12{height:27.523125pt;}
.he{height:27.628404pt;}
.h10{height:28.073883pt;}
.h49{height:29.266667pt;}
.h4{height:30.400000pt;}
.h4b{height:31.186667pt;}
.h24{height:32.250000pt;}
.h34{height:33.586667pt;}
.h35{height:34.706667pt;}
.h17{height:35.114107pt;}
.h3e{height:35.346667pt;}
.h5{height:36.431250pt;}
.h38{height:36.626667pt;}
.h52{height:36.818667pt;}
.h26{height:37.410000pt;}
.h3f{height:38.153511pt;}
.h56{height:38.413438pt;}
.h25{height:38.642500pt;}
.h2c{height:39.096561pt;}
.h14{height:39.571875pt;}
.h1c{height:40.635000pt;}
.h15{height:41.442606pt;}
.h16{height:42.084375pt;}
.h3a{height:42.381250pt;}
.h54{height:42.546667pt;}
.h46{height:42.649687pt;}
.h1f{height:43.215000pt;}
.hd{height:43.628404pt;}
.hf{height:44.073883pt;}
.h18{height:47.109375pt;}
.h42{height:47.235000pt;}
.h20{height:48.375000pt;}
.h13{height:49.148438pt;}
.h22{height:49.336436pt;}
.h1b{height:51.360000pt;}
.h2b{height:52.108438pt;}
.h3{height:52.134375pt;}
.h2f{height:53.535000pt;}
.hb{height:57.787500pt;}
.h1d{height:58.563750pt;}
.h11{height:60.288750pt;}
.h2d{height:62.781250pt;}
.h47{height:62.812500pt;}
.ha{height:64.500000pt;}
.h28{height:66.625000pt;}
.h2a{height:66.750000pt;}
.h55{height:73.490625pt;}
.h7{height:77.951250pt;}
.h8{height:85.785000pt;}
.h9{height:88.611250pt;}
.h23{height:105.800000pt;}
.h29{height:128.800000pt;}
.h41{height:248.160000pt;}
.h40{height:275.200000pt;}
.h21{height:394.946667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w11{width:53.600000pt;}
.w18{width:59.986667pt;}
.w1d{width:65.920000pt;}
.w10{width:66.106667pt;}
.w20{width:66.386667pt;}
.w19{width:66.418667pt;}
.w1a{width:71.986667pt;}
.w24{width:72.018667pt;}
.w3{width:72.952000pt;}
.w17{width:77.952000pt;}
.w1b{width:83.706667pt;}
.w25{width:84.306667pt;}
.w1f{width:90.098667pt;}
.w26{width:96.026667pt;}
.w21{width:101.626667pt;}
.w13{width:102.240000pt;}
.w1e{width:108.032000pt;}
.wf{width:113.938667pt;}
.w23{width:120.032000pt;}
.w12{width:131.700000pt;}
.w5{width:137.306667pt;}
.wc{width:138.106667pt;}
.wb{width:159.053333pt;}
.wa{width:160.346667pt;}
.w8{width:162.266667pt;}
.w22{width:173.773333pt;}
.w1c{width:195.058667pt;}
.we{width:233.938667pt;}
.w16{width:249.138667pt;}
.wd{width:297.173333pt;}
.w15{width:372.320000pt;}
.w14{width:372.800000pt;}
.w7{width:473.546667pt;}
.w4{width:568.760000pt;}
.w2{width:641.720000pt;}
.w9{width:660.600000pt;}
.w6{width:664.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x65{left:3.780000pt;}
.x2{left:7.192000pt;}
.x32{left:8.640000pt;}
.x16{left:9.592000pt;}
.x48{left:11.973333pt;}
.x52{left:13.600000pt;}
.x2d{left:15.680000pt;}
.x3d{left:16.640000pt;}
.x51{left:17.906667pt;}
.x1c{left:18.893333pt;}
.x3b{left:20.320000pt;}
.x36{left:21.600000pt;}
.x3c{left:24.160000pt;}
.x5f{left:25.760000pt;}
.x35{left:26.720000pt;}
.x63{left:28.786667pt;}
.x3a{left:30.240000pt;}
.x34{left:32.960000pt;}
.x64{left:35.040000pt;}
.x50{left:36.000000pt;}
.x4f{left:38.906667pt;}
.x39{left:41.146667pt;}
.x61{left:42.080000pt;}
.x26{left:44.000000pt;}
.x58{left:44.986667pt;}
.x27{left:46.720000pt;}
.x62{left:48.026667pt;}
.x29{left:49.440000pt;}
.x59{left:50.586667pt;}
.x28{left:52.000000pt;}
.x38{left:53.146667pt;}
.x37{left:54.266667pt;}
.x24{left:55.680000pt;}
.x33{left:56.986667pt;}
.x60{left:60.000000pt;}
.x43{left:62.333333pt;}
.x3{left:65.746667pt;}
.x25{left:68.986667pt;}
.x19{left:71.560000pt;}
.x17{left:72.680000pt;}
.x15{left:82.760000pt;}
.x1b{left:84.360000pt;}
.xb{left:89.952000pt;}
.x1{left:96.040000pt;}
.x49{left:101.280000pt;}
.x6{left:103.392000pt;}
.x22{left:105.952000pt;}
.xc{left:108.192000pt;}
.xf{left:109.472000pt;}
.x7{left:112.832000pt;}
.x21{left:114.112000pt;}
.x12{left:117.952000pt;}
.xa{left:137.146667pt;}
.x1e{left:140.986667pt;}
.x4{left:169.000000pt;}
.xe{left:189.786667pt;}
.x3f{left:192.733333pt;}
.x40{left:206.013333pt;}
.x1f{left:219.586667pt;}
.x20{left:222.946667pt;}
.x2b{left:228.066667pt;}
.x3e{left:229.440000pt;}
.x31{left:245.506667pt;}
.x44{left:260.133333pt;}
.x18{left:269.346667pt;}
.x45{left:272.293333pt;}
.x1a{left:275.866667pt;}
.x8{left:277.026667pt;}
.x5a{left:281.346667pt;}
.x11{left:293.346667pt;}
.x53{left:298.146667pt;}
.x42{left:303.493333pt;}
.x41{left:307.013333pt;}
.x47{left:329.733333pt;}
.x10{left:331.906667pt;}
.x46{left:333.573333pt;}
.x2c{left:347.746667pt;}
.xd{left:350.626667pt;}
.x4a{left:361.186667pt;}
.x54{left:364.066667pt;}
.x9{left:393.853333pt;}
.x5{left:396.893333pt;}
.x5b{left:401.386667pt;}
.x13{left:434.813333pt;}
.x14{left:436.253333pt;}
.x4b{left:439.146667pt;}
.x55{left:472.106667pt;}
.x5c{left:473.386667pt;}
.x2e{left:485.866667pt;}
.x4c{left:499.146667pt;}
.x5d{left:545.413333pt;}
.x1d{left:551.336000pt;}
.x56{left:562.213333pt;}
.x4d{left:565.573333pt;}
.x23{left:595.333333pt;}
.x2f{left:599.813333pt;}
.x2a{left:603.653333pt;}
.x57{left:628.613333pt;}
.x5e{left:629.733333pt;}
.x4e{left:637.573333pt;}
.x30{left:665.920000pt;}
}




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