
    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_0b5d750bd53d17ff8a69ea5c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_87c680007e47c7db730f1c74.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8b7ca818916088014634e114.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005859;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_de252c2d83105aec50fdaa17.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f7d0c8b481290c7c0a3069cb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_b0cd1c0e7664637c9dbf74b1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_dd6eb7e92e7c41f0373ed5de.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_09b7c27b8c7868d4246b4e63.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_8ca87483ff97e00f763171ae.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.767578;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_ef7a8b6512808c632851d98b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.107422;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_01f4436308078466deebaf3e.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.m2{transform:matrix(0.250228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250228,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.ls1f{letter-spacing:-1.848000px;}
.ls20{letter-spacing:-1.500000px;}
.ls13{letter-spacing:-1.152000px;}
.ls18{letter-spacing:-0.978000px;}
.ls6{letter-spacing:-0.696000px;}
.lse{letter-spacing:-0.678000px;}
.lsb{letter-spacing:-0.528000px;}
.ls17{letter-spacing:-0.522000px;}
.ls2c{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.348000px;}
.ls25{letter-spacing:-0.234000px;}
.ls2{letter-spacing:-0.204000px;}
.ls26{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.024000px;}
.ls1b{letter-spacing:-0.018000px;}
.lsc{letter-spacing:-0.012000px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.006000px;}
.ls22{letter-spacing:0.012000px;}
.ls16{letter-spacing:0.018000px;}
.lsa{letter-spacing:0.024000px;}
.ls29{letter-spacing:0.096000px;}
.ls10{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.156000px;}
.ls27{letter-spacing:0.168000px;}
.ls2e{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.312000px;}
.ls14{letter-spacing:0.348000px;}
.ls23{letter-spacing:0.462000px;}
.ls30{letter-spacing:0.480000px;}
.lsf{letter-spacing:0.483000px;}
.ls11{letter-spacing:0.522000px;}
.ls4{letter-spacing:0.672000px;}
.ls19{letter-spacing:0.702000px;}
.ls24{letter-spacing:0.726000px;}
.ls5{letter-spacing:0.804000px;}
.ls1e{letter-spacing:0.954000px;}
.ls2d{letter-spacing:1.140000px;}
.ls2a{letter-spacing:1.488000px;}
.ls2f{letter-spacing:1.500000px;}
.ls12{letter-spacing:4.152000px;}
.ls15{letter-spacing:4.272000px;}
.ls2b{letter-spacing:4.332000px;}
.ls21{letter-spacing:7.152000px;}
.ls1d{letter-spacing:20.772000px;}
.ls1c{letter-spacing:34.152000px;}
.ls3{letter-spacing:55.728000px;}
.ls8{letter-spacing:61.152000px;}
.ls28{letter-spacing:64.320000px;}
.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;}
}
.ws1a{word-spacing:-66.000000px;}
.ws1c{word-spacing:-60.000000px;}
.ws0{word-spacing:-46.704000px;}
.ws1{word-spacing:-26.688000px;}
.ws3{word-spacing:-23.352000px;}
.ws2{word-spacing:-23.148000px;}
.ws6{word-spacing:-19.152000px;}
.ws11{word-spacing:-18.870000px;}
.ws13{word-spacing:-18.696000px;}
.ws10{word-spacing:-18.348000px;}
.ws7{word-spacing:-18.000000px;}
.ws15{word-spacing:-17.826000px;}
.ws1f{word-spacing:-17.820000px;}
.ws14{word-spacing:-17.652000px;}
.ws9{word-spacing:-17.514000px;}
.ws17{word-spacing:-17.370000px;}
.ws12{word-spacing:-17.196000px;}
.ws21{word-spacing:-17.160000px;}
.ws8{word-spacing:-16.986000px;}
.ws20{word-spacing:-16.860000px;}
.ws1d{word-spacing:-16.848000px;}
.ws5{word-spacing:-16.680000px;}
.ws1e{word-spacing:-16.320000px;}
.wsf{word-spacing:-15.036000px;}
.ws16{word-spacing:-15.030000px;}
.ws1b{word-spacing:-15.024000px;}
.ws18{word-spacing:-15.012000px;}
.wsa{word-spacing:-15.000000px;}
.ws19{word-spacing:-14.994000px;}
.wsb{word-spacing:-14.988000px;}
.wsd{word-spacing:-14.661000px;}
.wse{word-spacing:-14.322000px;}
.wsc{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._15{margin-left:-17.577000px;}
._19{margin-left:-15.918000px;}
._14{margin-left:-11.892000px;}
._18{margin-left:-9.909000px;}
._17{margin-left:-8.445000px;}
._16{margin-left:-6.975000px;}
._13{margin-left:-4.932000px;}
._12{margin-left:-2.982000px;}
._1{margin-left:-1.512000px;}
._0{width:1.176000px;}
._3{width:2.958000px;}
._a{width:4.308000px;}
._9{width:5.610000px;}
._8{width:7.308000px;}
._b{width:8.490000px;}
._f{width:9.576000px;}
._11{width:11.508000px;}
._e{width:13.338000px;}
._d{width:14.532000px;}
._10{width:15.618000px;}
._6{width:16.716000px;}
._4{width:17.976000px;}
._5{width:19.488000px;}
._1d{width:20.502000px;}
._1c{width:21.582000px;}
._c{width:22.716000px;}
._7{width:24.132000px;}
._1e{width:25.356000px;}
._1f{width:27.030000px;}
._27{width:28.446000px;}
._24{width:30.414000px;}
._22{width:31.626000px;}
._23{width:32.964000px;}
._1b{width:34.662000px;}
._31{width:37.662000px;}
._30{width:39.114000px;}
._34{width:40.878000px;}
._2c{width:47.085729px;}
._2f{width:51.078000px;}
._2e{width:59.292000px;}
._25{width:67.002000px;}
._26{width:69.744000px;}
._38{width:111.552000px;}
._33{width:112.974000px;}
._2a{width:115.328147px;}
._37{width:118.260000px;}
._32{width:147.150000px;}
._2b{width:192.171747px;}
._21{width:193.224000px;}
._2d{width:276.558000px;}
._20{width:335.898000px;}
._36{width:451.140000px;}
._35{width:453.252000px;}
._29{width:670.037656px;}
._2{width:817.776000px;}
._1a{width:846.102000px;}
._28{width:849.438000px;}
.fc4{color:rgb(244,145,0);}
.fc1{color:transparent;}
.fc7{color:rgb(191,191,191);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(23,64,109);}
.fc3{color:rgb(166,166,166);}
.fc2{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:18.000000px;}
.fs13{font-size:24.000000px;}
.fs11{font-size:30.000000px;}
.fs10{font-size:33.000000px;}
.fsb{font-size:39.000000px;}
.fs6{font-size:42.000000px;}
.fsf{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fsd{font-size:52.097224px;}
.fs9{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fsc{font-size:63.402704px;}
.fs0{font-size:66.000000px;}
.fse{font-size:69.560209px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs3{font-size:120.000000px;}
.fs1{font-size:168.000000px;}
.ydb{bottom:-26.560008px;}
.y0{bottom:0.000000px;}
.y132{bottom:0.945000px;}
.y6d{bottom:1.110000px;}
.y155{bottom:2.265000px;}
.ydd{bottom:2.850000px;}
.yeb{bottom:3.360000px;}
.ye7{bottom:3.375000px;}
.y1ef{bottom:4.500000px;}
.y1f1{bottom:4.875000px;}
.y1aa{bottom:5.610000px;}
.y6f{bottom:5.625000px;}
.y1a3{bottom:5.640000px;}
.y1af{bottom:5.655000px;}
.y1a{bottom:6.375000px;}
.y1bd{bottom:6.750000px;}
.yda{bottom:6.787378px;}
.y1b8{bottom:7.125000px;}
.y182{bottom:8.235000px;}
.y17f{bottom:8.250000px;}
.yc7{bottom:8.925000px;}
.y4{bottom:9.000000px;}
.ye{bottom:9.045000px;}
.y1d8{bottom:9.750000px;}
.y1dd{bottom:9.795000px;}
.y1e5{bottom:10.110000px;}
.y16{bottom:10.125000px;}
.y1db{bottom:11.250000px;}
.yb{bottom:11.625000px;}
.y21{bottom:12.750000px;}
.y18{bottom:15.750000px;}
.y131{bottom:16.320000px;}
.y1c{bottom:18.412500px;}
.y101{bottom:18.450000px;}
.y154{bottom:20.295000px;}
.y198{bottom:21.375000px;}
.yed{bottom:22.125000px;}
.y1fb{bottom:22.155000px;}
.yea{bottom:22.485000px;}
.ye6{bottom:22.500000px;}
.yf3{bottom:22.530000px;}
.y19d{bottom:22.545000px;}
.y17e{bottom:24.000000px;}
.yc6{bottom:24.300000px;}
.yd9{bottom:32.871725px;}
.y100{bottom:36.825000px;}
.y19c{bottom:38.295000px;}
.y153{bottom:39.420000px;}
.yc5{bottom:40.050000px;}
.ye5{bottom:41.250000px;}
.ye9{bottom:41.280000px;}
.yf2{bottom:41.655000px;}
.y1b{bottom:44.625000px;}
.y8{bottom:57.000000px;}
.y152{bottom:58.545000px;}
.y20{bottom:58.912500px;}
.ye4{bottom:60.375000px;}
.yf1{bottom:60.405000px;}
.y2{bottom:71.662500px;}
.y151{bottom:77.295000px;}
.y14f{bottom:78.045000px;}
.ye3{bottom:79.125000px;}
.yf0{bottom:79.530000px;}
.y14e{bottom:96.045000px;}
.y150{bottom:96.420000px;}
.ye2{bottom:98.280000px;}
.y7{bottom:105.405000px;}
.y14{bottom:106.162500px;}
.yd5{bottom:108.787500px;}
.y1a6{bottom:110.287500px;}
.y289{bottom:112.537500px;}
.y14d{bottom:115.170000px;}
.y178{bottom:115.912500px;}
.y213{bottom:116.287500px;}
.ye1{bottom:117.405000px;}
.y43{bottom:117.412500px;}
.y6b{bottom:120.037500px;}
.y1a5{bottom:125.662500px;}
.y262{bottom:127.537500px;}
.yd4{bottom:132.037500px;}
.yc3{bottom:132.787500px;}
.y14c{bottom:134.295000px;}
.ya6{bottom:135.412500px;}
.yfe{bottom:137.662500px;}
.y1a4{bottom:139.162500px;}
.y6a{bottom:140.287500px;}
.y177{bottom:144.412500px;}
.y212{bottom:144.787500px;}
.y42{bottom:145.912500px;}
.y288{bottom:147.787500px;}
.y156{bottom:149.287500px;}
.y6{bottom:153.780000px;}
.yd3{bottom:155.280000px;}
.y225{bottom:157.545000px;}
.y14b{bottom:159.075000px;}
.y11f{bottom:159.795000px;}
.yd8{bottom:160.294051px;}
.y69{bottom:160.545000px;}
.y1a2{bottom:161.280000px;}
.yc2{bottom:161.295000px;}
.ya5{bottom:163.920000px;}
.y290{bottom:164.295000px;}
.y14a{bottom:165.030000px;}
.yfd{bottom:166.170000px;}
.y176{bottom:172.920000px;}
.y211{bottom:173.295000px;}
.y41{bottom:174.450000px;}
.y1eb{bottom:176.700000px;}
.yd2{bottom:178.575000px;}
.y261{bottom:180.075000px;}
.y68{bottom:180.825000px;}
.y287{bottom:182.325000px;}
.y1a1{bottom:183.075000px;}
.y224{bottom:186.075000px;}
.y11e{bottom:188.325000px;}
.y12f{bottom:189.450000px;}
.yc1{bottom:189.825000px;}
.yd7{bottom:190.706824px;}
.y1c8{bottom:192.075000px;}
.ya4{bottom:192.450000px;}
.yfc{bottom:194.700000px;}
.y1ea{bottom:195.450000px;}
.y210{bottom:197.700000px;}
.yd6{bottom:199.575000px;}
.y67{bottom:201.075000px;}
.y22b{bottom:201.450000px;}
.y40{bottom:202.950000px;}
.y1a0{bottom:205.200000px;}
.yff{bottom:210.750000px;}
.y20f{bottom:213.450000px;}
.y223{bottom:214.200000px;}
.y260{bottom:215.325000px;}
.y11d{bottom:216.825000px;}
.y286{bottom:217.575000px;}
.y12e{bottom:217.950000px;}
.yc0{bottom:218.325000px;}
.y1c7{bottom:220.575000px;}
.y66{bottom:220.950000px;}
.y1e9{bottom:223.950000px;}
.y20e{bottom:226.950000px;}
.y19f{bottom:227.325000px;}
.y175{bottom:229.575000px;}
.y22a{bottom:229.950000px;}
.y25f{bottom:232.575000px;}
.y285{bottom:234.825000px;}
.y11c{bottom:238.950000px;}
.y65{bottom:241.200000px;}
.y222{bottom:242.700000px;}
.y1c6{bottom:244.950000px;}
.y12d{bottom:246.450000px;}
.ybf{bottom:246.825000px;}
.y19e{bottom:249.075000px;}
.ya3{bottom:249.450000px;}
.y25e{bottom:249.825000px;}
.y284{bottom:252.075000px;}
.y3f{bottom:252.450000px;}
.y174{bottom:258.075000px;}
.y229{bottom:258.450000px;}
.y11b{bottom:259.200000px;}
.y1c5{bottom:260.325000px;}
.y64{bottom:261.450000px;}
.y20d{bottom:266.325000px;}
.y240{bottom:268.950000px;}
.y28f{bottom:269.325000px;}
.y221{bottom:271.200000px;}
.y12c{bottom:274.950000px;}
.ybe{bottom:275.325000px;}
.y1c4{bottom:276.075000px;}
.ya2{bottom:277.950000px;}
.y3e{bottom:280.950000px;}
.y63{bottom:281.700000px;}
.y25d{bottom:285.075000px;}
.y20c{bottom:286.200000px;}
.y173{bottom:286.575000px;}
.y228{bottom:286.950000px;}
.y283{bottom:287.325000px;}
.y11a{bottom:287.700000px;}
.y1c3{bottom:289.575000px;}
.y1e8{bottom:291.825000px;}
.y23f{bottom:297.450000px;}
.y220{bottom:299.700000px;}
.y62{bottom:301.950000px;}
.y25c{bottom:302.325000px;}
.y12b{bottom:303.495000px;}
.ybd{bottom:303.855000px;}
.y282{bottom:304.605000px;}
.y1e7{bottom:305.370000px;}
.y20b{bottom:305.745000px;}
.ya1{bottom:306.495000px;}
.y3d{bottom:309.120000px;}
.y1c2{bottom:311.370000px;}
.y172{bottom:315.120000px;}
.y227{bottom:315.495000px;}
.y119{bottom:316.245000px;}
.y13{bottom:321.870000px;}
.y23e{bottom:325.995000px;}
.y19b{bottom:326.745000px;}
.y21f{bottom:328.230000px;}
.y1e6{bottom:331.620000px;}
.y12a{bottom:331.995000px;}
.ybc{bottom:332.370000px;}
.y1c1{bottom:333.495000px;}
.ya0{bottom:334.980000px;}
.y3c{bottom:337.605000px;}
.y61{bottom:342.120000px;}
.y171{bottom:343.620000px;}
.y226{bottom:343.995000px;}
.y20a{bottom:344.370000px;}
.y118{bottom:350.745000px;}
.y149{bottom:352.620000px;}
.y23d{bottom:354.120000px;}
.y25b{bottom:354.855000px;}
.y1c0{bottom:355.620000px;}
.y21e{bottom:356.745000px;}
.y281{bottom:357.120000px;}
.y1e4{bottom:357.870000px;}
.y129{bottom:360.120000px;}
.ybb{bottom:360.495000px;}
.y6c{bottom:360.870000px;}
.y9f{bottom:363.120000px;}
.y209{bottom:364.245000px;}
.y19a{bottom:365.370000px;}
.y3b{bottom:366.120000px;}
.y60{bottom:367.620000px;}
.y12{bottom:370.245000px;}
.yd1{bottom:372.105000px;}
.y280{bottom:374.370000px;}
.y1bf{bottom:377.370000px;}
.y170{bottom:378.105000px;}
.y117{bottom:379.245000px;}
.y148{bottom:381.120000px;}
.y23c{bottom:382.620000px;}
.y1e3{bottom:384.120000px;}
.y21d{bottom:385.230000px;}
.y199{bottom:387.120000px;}
.y128{bottom:388.605000px;}
.yba{bottom:388.980000px;}
.y9e{bottom:391.605000px;}
.y5f{bottom:393.495000px;}
.y3a{bottom:394.620000px;}
.y1be{bottom:399.495000px;}
.yd0{bottom:400.620000px;}
.y208{bottom:403.620000px;}
.y16f{bottom:405.495000px;}
.yfb{bottom:406.245000px;}
.y25a{bottom:407.370000px;}
.y116{bottom:407.745000px;}
.y197{bottom:409.245000px;}
.y147{bottom:409.620000px;}
.y1e2{bottom:410.370000px;}
.y23b{bottom:411.120000px;}
.y21c{bottom:413.745000px;}
.y5e{bottom:415.245000px;}
.y127{bottom:417.120000px;}
.yb9{bottom:417.495000px;}
.y11{bottom:418.620000px;}
.y9d{bottom:420.120000px;}
.y39{bottom:423.120000px;}
.y259{bottom:424.620000px;}
.y16e{bottom:425.370000px;}
.y27f{bottom:426.870000px;}
.ycf{bottom:429.120000px;}
.y196{bottom:431.400000px;}
.yfa{bottom:434.775000px;}
.y115{bottom:436.275000px;}
.y1e1{bottom:436.650000px;}
.y5d{bottom:437.400000px;}
.y146{bottom:438.150000px;}
.y23a{bottom:439.650000px;}
.y258{bottom:441.900000px;}
.y21b{bottom:442.275000px;}
.y28e{bottom:444.150000px;}
.y207{bottom:445.275000px;}
.y126{bottom:445.650000px;}
.yb8{bottom:446.025000px;}
.y9c{bottom:448.650000px;}
.y38{bottom:451.650000px;}
.y195{bottom:453.150000px;}
.y16d{bottom:453.900000px;}
.yce{bottom:457.650000px;}
.y5c{bottom:459.525000px;}
.y1bc{bottom:460.275000px;}
.y17{bottom:461.775000px;}
.y27e{bottom:462.150000px;}
.yf9{bottom:462.900000px;}
.y114{bottom:464.775000px;}
.y10{bottom:467.025000px;}
.y239{bottom:468.150000px;}
.yb7{bottom:469.650000px;}
.y21a{bottom:470.400000px;}
.y145{bottom:472.650000px;}
.y125{bottom:474.150000px;}
.y1e0{bottom:475.650000px;}
.y194{bottom:476.775000px;}
.y9b{bottom:477.150000px;}
.y27d{bottom:479.400000px;}
.y37{bottom:480.150000px;}
.y5b{bottom:481.275000px;}
.y1bb{bottom:482.025000px;}
.y16c{bottom:482.400000px;}
.ycd{bottom:486.150000px;}
.yf8{bottom:491.400000px;}
.y113{bottom:493.275000px;}
.y257{bottom:494.400000px;}
.y238{bottom:496.650000px;}
.yb6{bottom:497.025000px;}
.y219{bottom:498.900000px;}
.y193{bottom:501.525000px;}
.y1df{bottom:501.900000px;}
.y124{bottom:502.650000px;}
.y5a{bottom:503.400000px;}
.y1ba{bottom:504.150000px;}
.y206{bottom:505.275000px;}
.y9a{bottom:505.650000px;}
.yf{bottom:506.025000px;}
.y144{bottom:507.150000px;}
.y36{bottom:508.650000px;}
.y16b{bottom:510.900000px;}
.y256{bottom:511.650000px;}
.ycc{bottom:514.650000px;}
.yf7{bottom:519.900000px;}
.yb5{bottom:524.775000px;}
.y192{bottom:525.150000px;}
.y59{bottom:525.525000px;}
.y1b9{bottom:525.900000px;}
.y112{bottom:527.400000px;}
.y1de{bottom:528.150000px;}
.y123{bottom:531.150000px;}
.y27c{bottom:531.900000px;}
.y99{bottom:534.150000px;}
.y84{bottom:534.525000px;}
.y35{bottom:537.150000px;}
.y16a{bottom:539.400000px;}
.y143{bottom:541.275000px;}
.y15{bottom:542.025000px;}
.ycb{bottom:543.150000px;}
.y255{bottom:546.900000px;}
.y58{bottom:547.275000px;}
.y1b7{bottom:548.025000px;}
.yf6{bottom:548.400000px;}
.y27b{bottom:549.150000px;}
.y191{bottom:551.400000px;}
.y237{bottom:553.650000px;}
.yd{bottom:554.400000px;}
.y111{bottom:555.900000px;}
.y122{bottom:559.650000px;}
.y98{bottom:562.695000px;}
.y83{bottom:563.070000px;}
.y254{bottom:564.195000px;}
.y27a{bottom:566.445000px;}
.y169{bottom:567.945000px;}
.y205{bottom:569.070000px;}
.y57{bottom:569.445000px;}
.y1b6{bottom:570.195000px;}
.yca{bottom:571.695000px;}
.y142{bottom:575.820000px;}
.yf5{bottom:576.945000px;}
.y190{bottom:578.070000px;}
.y1dc{bottom:580.695000px;}
.y253{bottom:581.445000px;}
.y236{bottom:582.195000px;}
.y110{bottom:584.445000px;}
.y34{bottom:586.695000px;}
.y121{bottom:588.195000px;}
.y97{bottom:591.195000px;}
.y56{bottom:591.570000px;}
.yf4{bottom:593.445000px;}
.y168{bottom:596.445000px;}
.y204{bottom:598.695000px;}
.yc9{bottom:600.195000px;}
.y279{bottom:601.695000px;}
.yc{bottom:602.820000px;}
.y19{bottom:603.195000px;}
.y141{bottom:604.320000px;}
.y18f{bottom:604.695000px;}
.y1da{bottom:606.945000px;}
.y235{bottom:610.695000px;}
.y6e{bottom:612.570000px;}
.y10f{bottom:612.945000px;}
.y33{bottom:614.820000px;}
.y252{bottom:616.695000px;}
.y1b5{bottom:618.195000px;}
.y278{bottom:618.945000px;}
.y96{bottom:619.695000px;}
.y82{bottom:620.070000px;}
.y55{bottom:621.945000px;}
.y120{bottom:622.695000px;}
.y167{bottom:624.570000px;}
.y203{bottom:627.195000px;}
.yc8{bottom:628.695000px;}
.y18e{bottom:631.320000px;}
.y140{bottom:632.820000px;}
.y1d9{bottom:633.195000px;}
.y251{bottom:633.945000px;}
.y28d{bottom:636.195000px;}
.y234{bottom:638.820000px;}
.y10e{bottom:641.445000px;}
.y130{bottom:642.375000px;}
.y32{bottom:643.320000px;}
.y95{bottom:647.820000px;}
.y81{bottom:648.195000px;}
.ya{bottom:651.195000px;}
.y166{bottom:653.070000px;}
.y277{bottom:654.195000px;}
.y202{bottom:655.695000px;}
.y54{bottom:656.820000px;}
.y18d{bottom:657.945000px;}
.y1d7{bottom:660.945000px;}
.y13f{bottom:661.320000px;}
.y1b4{bottom:664.695000px;}
.y233{bottom:667.320000px;}
.yef{bottom:669.945000px;}
.y276{bottom:671.445000px;}
.y31{bottom:671.820000px;}
.y94{bottom:676.320000px;}
.y80{bottom:676.695000px;}
.y165{bottom:681.570000px;}
.y201{bottom:684.195000px;}
.y18c{bottom:684.570000px;}
.y53{bottom:685.320000px;}
.y250{bottom:686.445000px;}
.y13e{bottom:689.850000px;}
.yb4{bottom:692.100000px;}
.y1b3{bottom:693.225000px;}
.y232{bottom:695.850000px;}
.y10d{bottom:698.475000px;}
.y30{bottom:700.350000px;}
.y24f{bottom:703.725000px;}
.y93{bottom:704.850000px;}
.y7f{bottom:705.225000px;}
.y275{bottom:706.725000px;}
.y218{bottom:707.475000px;}
.y164{bottom:710.100000px;}
.y18b{bottom:710.850000px;}
.y200{bottom:712.725000px;}
.y52{bottom:713.850000px;}
.y9{bottom:718.725000px;}
.y1d6{bottom:720.975000px;}
.y1b2{bottom:721.725000px;}
.y274{bottom:723.975000px;}
.y231{bottom:724.350000px;}
.y10c{bottom:726.975000px;}
.y13d{bottom:727.350000px;}
.y2f{bottom:728.850000px;}
.y92{bottom:733.350000px;}
.y7e{bottom:733.725000px;}
.y1ff{bottom:734.850000px;}
.y5{bottom:735.225000px;}
.y217{bottom:735.600000px;}
.y18a{bottom:737.475000px;}
.y163{bottom:738.600000px;}
.y273{bottom:741.225000px;}
.y51{bottom:742.350000px;}
.y216{bottom:745.725000px;}
.y1fe{bottom:751.350000px;}
.y230{bottom:752.850000px;}
.y10b{bottom:755.475000px;}
.y24e{bottom:756.225000px;}
.y2e{bottom:757.350000px;}
.y1b1{bottom:761.100000px;}
.y13c{bottom:761.475000px;}
.y91{bottom:761.850000px;}
.y7d{bottom:762.225000px;}
.y189{bottom:764.100000px;}
.y1fd{bottom:766.725000px;}
.y162{bottom:767.100000px;}
.y1d5{bottom:767.475000px;}
.yb3{bottom:770.850000px;}
.ydc{bottom:772.500000px;}
.y24d{bottom:773.475000px;}
.y272{bottom:776.475000px;}
.y1b0{bottom:776.850000px;}
.y50{bottom:777.975000px;}
.y22f{bottom:781.350000px;}
.y1fc{bottom:782.475000px;}
.y10a{bottom:783.600000px;}
.y215{bottom:783.975000px;}
.yee{bottom:784.725000px;}
.y13b{bottom:785.475000px;}
.y90{bottom:790.350000px;}
.y7c{bottom:790.725000px;}
.y271{bottom:793.725000px;}
.y161{bottom:795.600000px;}
.y1d4{bottom:795.975000px;}
.yb2{bottom:799.350000px;}
.y4f{bottom:804.975000px;}
.y2d{bottom:806.850000px;}
.y24c{bottom:808.725000px;}
.y22e{bottom:809.850000px;}
.y188{bottom:810.225000px;}
.y270{bottom:810.975000px;}
.y109{bottom:812.100000px;}
.y13a{bottom:815.100000px;}
.y8f{bottom:818.895000px;}
.y7b{bottom:819.255000px;}
.y187{bottom:823.770000px;}
.y160{bottom:824.130000px;}
.y24b{bottom:826.005000px;}
.yb1{bottom:827.880000px;}
.y26f{bottom:828.255000px;}
.y4e{bottom:832.380000px;}
.y1ae{bottom:834.255000px;}
.y1fa{bottom:834.630000px;}
.y2c{bottom:835.395000px;}
.y22d{bottom:838.380000px;}
.y108{bottom:840.630000px;}
.yec{bottom:842.505000px;}
.y24a{bottom:843.255000px;}
.y139{bottom:843.630000px;}
.y186{bottom:844.380000px;}
.y28c{bottom:846.270000px;}
.y8e{bottom:847.380000px;}
.y7a{bottom:847.755000px;}
.y1f9{bottom:854.505000px;}
.y1ad{bottom:856.005000px;}
.y185{bottom:856.380000px;}
.yb0{bottom:856.395000px;}
.y15f{bottom:858.630000px;}
.y4d{bottom:859.380000px;}
.y26e{bottom:863.505000px;}
.y2b{bottom:863.880000px;}
.y22c{bottom:866.880000px;}
.y107{bottom:869.145000px;}
.y138{bottom:872.880000px;}
.y1f8{bottom:874.005000px;}
.y8d{bottom:875.895000px;}
.y79{bottom:876.255000px;}
.y249{bottom:878.505000px;}
.y1d3{bottom:879.255000px;}
.y26d{bottom:880.755000px;}
.y184{bottom:881.130000px;}
.yaf{bottom:884.880000px;}
.y4c{bottom:886.755000px;}
.y2a{bottom:892.005000px;}
.y1d2{bottom:892.755000px;}
.y1f7{bottom:893.880000px;}
.y1ac{bottom:895.005000px;}
.y248{bottom:895.755000px;}
.y106{bottom:897.630000px;}
.y26c{bottom:898.005000px;}
.y8c{bottom:904.005000px;}
.y78{bottom:904.755000px;}
.y183{bottom:905.880000px;}
.y15e{bottom:907.005000px;}
.y137{bottom:908.505000px;}
.yae{bottom:913.005000px;}
.y1f6{bottom:913.395000px;}
.y1d1{bottom:914.880000px;}
.y28b{bottom:916.005000px;}
.y1ab{bottom:916.755000px;}
.ye8{bottom:919.020000px;}
.y29{bottom:920.505000px;}
.y4b{bottom:921.630000px;}
.y105{bottom:926.130000px;}
.y3{bottom:928.380000px;}
.y181{bottom:930.645000px;}
.y8b{bottom:932.505000px;}
.y77{bottom:932.880000px;}
.y26b{bottom:933.255000px;}
.y15d{bottom:935.505000px;}
.y1d0{bottom:936.645000px;}
.y1a9{bottom:938.895000px;}
.yad{bottom:941.505000px;}
.y136{bottom:943.005000px;}
.y247{bottom:948.300000px;}
.y28{bottom:949.050000px;}
.y26a{bottom:950.550000px;}
.y104{bottom:951.300000px;}
.y1f5{bottom:952.425000px;}
.y180{bottom:955.425000px;}
.y4a{bottom:957.300000px;}
.y1cf{bottom:958.800000px;}
.y1a8{bottom:960.675000px;}
.y8a{bottom:961.050000px;}
.y76{bottom:961.425000px;}
.y15c{bottom:964.050000px;}
.y246{bottom:965.550000px;}
.y269{bottom:967.800000px;}
.yc4{bottom:969.375000px;}
.yac{bottom:970.050000px;}
.y135{bottom:971.550000px;}
.y1f4{bottom:971.925000px;}
.y103{bottom:975.300000px;}
.y27{bottom:977.550000px;}
.ye0{bottom:978.300000px;}
.y1ce{bottom:980.925000px;}
.y17d{bottom:981.675000px;}
.y245{bottom:982.800000px;}
.y1a7{bottom:984.300000px;}
.y49{bottom:984.675000px;}
.y89{bottom:989.550000px;}
.y75{bottom:989.925000px;}
.y1f3{bottom:991.800000px;}
.y15b{bottom:992.550000px;}
.yab{bottom:998.550000px;}
.y134{bottom:1000.050000px;}
.y102{bottom:1001.550000px;}
.y268{bottom:1003.050000px;}
.y26{bottom:1006.050000px;}
.y17c{bottom:1009.050000px;}
.y1f2{bottom:1011.300000px;}
.y88{bottom:1018.050000px;}
.y74{bottom:1018.425000px;}
.y48{bottom:1019.175000px;}
.y1cd{bottom:1019.550000px;}
.y267{bottom:1020.300000px;}
.y15a{bottom:1021.050000px;}
.yaa{bottom:1027.050000px;}
.y1f0{bottom:1031.175000px;}
.y17b{bottom:1032.675000px;}
.y25{bottom:1034.550000px;}
.y244{bottom:1035.300000px;}
.y214{bottom:1035.675000px;}
.y133{bottom:1037.550000px;}
.y1cc{bottom:1041.300000px;}
.y87{bottom:1046.550000px;}
.y73{bottom:1046.925000px;}
.y47{bottom:1047.675000px;}
.y159{bottom:1049.550000px;}
.y1ee{bottom:1051.050000px;}
.y243{bottom:1052.550000px;}
.ya9{bottom:1055.550000px;}
.y17a{bottom:1059.300000px;}
.y24{bottom:1063.050000px;}
.y1cb{bottom:1063.425000px;}
.y1ed{bottom:1070.550000px;}
.y266{bottom:1072.800000px;}
.y86{bottom:1075.080000px;}
.y72{bottom:1075.455000px;}
.y46{bottom:1076.205000px;}
.y158{bottom:1078.080000px;}
.ya8{bottom:1084.080000px;}
.y179{bottom:1085.955000px;}
.y1ca{bottom:1087.080000px;}
.y242{bottom:1087.830000px;}
.y28a{bottom:1090.080000px;}
.y1ec{bottom:1090.455000px;}
.y23{bottom:1091.580000px;}
.y85{bottom:1103.580000px;}
.y45{bottom:1104.705000px;}
.y241{bottom:1105.080000px;}
.y157{bottom:1106.580000px;}
.y265{bottom:1108.080000px;}
.ya7{bottom:1112.580000px;}
.y71{bottom:1112.955000px;}
.ydf{bottom:1114.830000px;}
.y264{bottom:1125.330000px;}
.y1c9{bottom:1128.330000px;}
.y22{bottom:1141.080000px;}
.y44{bottom:1142.205000px;}
.y263{bottom:1142.580000px;}
.yde{bottom:1144.080000px;}
.y70{bottom:1144.830000px;}
.y1f{bottom:1183.830000px;}
.y1e{bottom:1203.375000px;}
.y1d{bottom:1217.625000px;}
.y1{bottom:1218.750000px;}
.h1d{height:15.750000px;}
.h14{height:16.875000px;}
.h37{height:18.750000px;}
.h2b{height:18.773438px;}
.h3b{height:18.787500px;}
.h39{height:19.125000px;}
.h38{height:19.162500px;}
.h2c{height:21.000000px;}
.h2f{height:21.022500px;}
.h2e{height:21.037500px;}
.h15{height:21.375000px;}
.h33{height:21.397500px;}
.h30{height:21.412500px;}
.h29{height:24.000000px;}
.h2a{height:24.022500px;}
.h36{height:25.031250px;}
.h34{height:25.500000px;}
.h35{height:25.537500px;}
.h11{height:28.500000px;}
.hc{height:29.250000px;}
.h26{height:29.625000px;}
.h28{height:31.289062px;}
.h25{height:34.417969px;}
.h2d{height:37.875000px;}
.h32{height:37.912500px;}
.h1a{height:37.928204px;}
.ha{height:38.250000px;}
.h3a{height:38.272500px;}
.h8{height:38.287500px;}
.h1b{height:39.505366px;}
.hf{height:39.990234px;}
.h16{height:40.675781px;}
.h6{height:48.375000px;}
.h7{height:48.412500px;}
.h23{height:49.875000px;}
.h24{height:50.062500px;}
.h17{height:52.875000px;}
.h12{height:53.191406px;}
.h3c{height:53.818359px;}
.h5{height:54.037500px;}
.h13{height:56.320312px;}
.h1f{height:57.022500px;}
.h21{height:57.037500px;}
.h31{height:62.578125px;}
.h19{height:65.167989px;}
.h10{height:65.707031px;}
.h1{height:68.835938px;}
.h1c{height:71.496934px;}
.he{height:75.093750px;}
.h20{height:75.750000px;}
.hd{height:80.906250px;}
.hb{height:100.125000px;}
.h22{height:114.037500px;}
.h9{height:125.156250px;}
.h1e{height:132.787500px;}
.h18{height:154.275000px;}
.h27{height:174.825000px;}
.h3{height:175.218750px;}
.h4{height:193.170000px;}
.h2{height:228.450000px;}
.h0{height:1263.000000px;}
.w8{width:9.375000px;}
.w13{width:18.375000px;}
.w32{width:54.750000px;}
.w3a{width:54.787500px;}
.w29{width:55.162500px;}
.w17{width:64.125000px;}
.w18{width:64.912500px;}
.w37{width:69.375000px;}
.w3e{width:69.787500px;}
.w39{width:70.912500px;}
.w38{width:71.662500px;}
.w25{width:76.875000px;}
.w28{width:76.912500px;}
.w34{width:78.037500px;}
.w1c{width:79.537500px;}
.w19{width:79.912500px;}
.w26{width:80.287500px;}
.w1b{width:81.787500px;}
.w2f{width:83.662500px;}
.w1a{width:84.037500px;}
.w31{width:87.037500px;}
.w27{width:88.537500px;}
.w2c{width:93.412500px;}
.w36{width:93.825000px;}
.w30{width:94.537500px;}
.w20{width:99.787500px;}
.w3d{width:102.412500px;}
.w1f{width:102.825000px;}
.w33{width:103.537500px;}
.w22{width:120.787500px;}
.w23{width:132.075000px;}
.w2b{width:139.162500px;}
.w2d{width:144.825000px;}
.w3c{width:161.325000px;}
.w1e{width:174.075000px;}
.w16{width:177.870000px;}
.we{width:199.245000px;}
.wb{width:202.500000px;}
.wf{width:217.575000px;}
.w10{width:218.370000px;}
.w6{width:237.495000px;}
.wa{width:247.245000px;}
.w9{width:247.620000px;}
.w1d{width:257.745000px;}
.w35{width:261.495000px;}
.w24{width:267.900000px;}
.w2a{width:278.400000px;}
.w2e{width:286.275000px;}
.w3b{width:300.900000px;}
.w15{width:318.525000px;}
.w14{width:318.900000px;}
.w12{width:351.000000px;}
.w11{width:355.875000px;}
.w21{width:382.305000px;}
.wd{width:438.000000px;}
.w5{width:465.195000px;}
.w4{width:527.850000px;}
.wc{width:637.680000px;}
.w3{width:638.175000px;}
.w7{width:818.250000px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.287500px;}
.x3{left:9.787500px;}
.x17{left:10.875000px;}
.x38{left:12.795000px;}
.x44{left:13.875000px;}
.x4a{left:16.125000px;}
.x11{left:17.625000px;}
.x3c{left:18.750000px;}
.xf{left:19.875000px;}
.x35{left:21.420000px;}
.x53{left:22.500000px;}
.x3e{left:23.610000px;}
.x31{left:26.250000px;}
.x5e{left:27.375000px;}
.x47{left:28.875000px;}
.x36{left:30.750000px;}
.xd{left:32.670000px;}
.x48{left:33.780000px;}
.x12{left:35.662500px;}
.x34{left:37.500000px;}
.x4{left:39.037500px;}
.x30{left:42.045000px;}
.x4c{left:43.530000px;}
.x32{left:45.420000px;}
.x33{left:46.920000px;}
.x2c{left:49.170000px;}
.x39{left:50.295000px;}
.x4d{left:51.780000px;}
.x2f{left:54.045000px;}
.x3f{left:55.500000px;}
.x5f{left:58.155000px;}
.x62{left:60.030000px;}
.x37{left:62.670000px;}
.x7{left:64.537500px;}
.x3a{left:82.537500px;}
.x5{left:84.412500px;}
.x2a{left:91.957500px;}
.x54{left:93.457500px;}
.x40{left:96.832500px;}
.x1c{left:102.320353px;}
.x4e{left:105.832500px;}
.x5c{left:113.332500px;}
.x18{left:114.787500px;}
.x16{left:116.287500px;}
.x1{left:127.537487px;}
.x59{left:132.449987px;}
.x21{left:154.574987px;}
.x5a{left:159.449987px;}
.x5b{left:164.324987px;}
.x20{left:179.250000px;}
.x22{left:181.574987px;}
.xb{left:188.324987px;}
.xc{left:205.575000px;}
.xe{left:222.120000px;}
.x6{left:244.612500px;}
.x2{left:247.612500px;}
.x25{left:306.900000px;}
.x8{left:319.282500px;}
.x1e{left:328.275000px;}
.x10{left:333.150000px;}
.x26{left:371.775000px;}
.x2b{left:386.775000px;}
.x55{left:390.525000px;}
.x1d{left:393.000000px;}
.x41{left:396.945000px;}
.x15{left:405.194987px;}
.x49{left:407.445000px;}
.x23{left:414.750000px;}
.x5d{left:429.945000px;}
.x1b{left:437.318376px;}
.xa{left:446.444987px;}
.x42{left:474.570000px;}
.x56{left:485.100000px;}
.x4f{left:499.725000px;}
.x3b{left:511.350000px;}
.x27{left:518.100000px;}
.x13{left:528.599987px;}
.x1f{left:546.600000px;}
.x43{left:555.600000px;}
.x2d{left:561.600000px;}
.x1a{left:562.875000px;}
.x60{left:592.020000px;}
.x50{left:595.020000px;}
.x28{left:602.895000px;}
.x52{left:604.020000px;}
.x57{left:627.645000px;}
.x3d{left:632.895000px;}
.x4b{left:641.520000px;}
.x45{left:644.895000px;}
.x2e{left:665.175000px;}
.x51{left:682.800000px;}
.x29{left:685.425000px;}
.x61{left:695.175000px;}
.x58{left:699.300000px;}
.x63{left:715.799987px;}
.x46{left:722.550000px;}
.x24{left:747.345000px;}
.x14{left:756.345000px;}
.x19{left:759.344987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1f{letter-spacing:-1.642667pt;}
.ls20{letter-spacing:-1.333333pt;}
.ls13{letter-spacing:-1.024000pt;}
.ls18{letter-spacing:-0.869333pt;}
.ls6{letter-spacing:-0.618667pt;}
.lse{letter-spacing:-0.602667pt;}
.lsb{letter-spacing:-0.469333pt;}
.ls17{letter-spacing:-0.464000pt;}
.ls2c{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.309333pt;}
.ls25{letter-spacing:-0.208000pt;}
.ls2{letter-spacing:-0.181333pt;}
.ls26{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.021333pt;}
.ls1b{letter-spacing:-0.016000pt;}
.lsc{letter-spacing:-0.010667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.005333pt;}
.ls22{letter-spacing:0.010667pt;}
.ls16{letter-spacing:0.016000pt;}
.lsa{letter-spacing:0.021333pt;}
.ls29{letter-spacing:0.085333pt;}
.ls10{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.138667pt;}
.ls27{letter-spacing:0.149333pt;}
.ls2e{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.277333pt;}
.ls14{letter-spacing:0.309333pt;}
.ls23{letter-spacing:0.410667pt;}
.ls30{letter-spacing:0.426667pt;}
.lsf{letter-spacing:0.429333pt;}
.ls11{letter-spacing:0.464000pt;}
.ls4{letter-spacing:0.597333pt;}
.ls19{letter-spacing:0.624000pt;}
.ls24{letter-spacing:0.645333pt;}
.ls5{letter-spacing:0.714667pt;}
.ls1e{letter-spacing:0.848000pt;}
.ls2d{letter-spacing:1.013333pt;}
.ls2a{letter-spacing:1.322667pt;}
.ls2f{letter-spacing:1.333333pt;}
.ls12{letter-spacing:3.690667pt;}
.ls15{letter-spacing:3.797333pt;}
.ls2b{letter-spacing:3.850667pt;}
.ls21{letter-spacing:6.357333pt;}
.ls1d{letter-spacing:18.464000pt;}
.ls1c{letter-spacing:30.357333pt;}
.ls3{letter-spacing:49.536000pt;}
.ls8{letter-spacing:54.357333pt;}
.ls28{letter-spacing:57.173333pt;}
.ws1a{word-spacing:-58.666667pt;}
.ws1c{word-spacing:-53.333333pt;}
.ws0{word-spacing:-41.514667pt;}
.ws1{word-spacing:-23.722667pt;}
.ws3{word-spacing:-20.757333pt;}
.ws2{word-spacing:-20.576000pt;}
.ws6{word-spacing:-17.024000pt;}
.ws11{word-spacing:-16.773333pt;}
.ws13{word-spacing:-16.618667pt;}
.ws10{word-spacing:-16.309333pt;}
.ws7{word-spacing:-16.000000pt;}
.ws15{word-spacing:-15.845333pt;}
.ws1f{word-spacing:-15.840000pt;}
.ws14{word-spacing:-15.690667pt;}
.ws9{word-spacing:-15.568000pt;}
.ws17{word-spacing:-15.440000pt;}
.ws12{word-spacing:-15.285333pt;}
.ws21{word-spacing:-15.253333pt;}
.ws8{word-spacing:-15.098667pt;}
.ws20{word-spacing:-14.986667pt;}
.ws1d{word-spacing:-14.976000pt;}
.ws5{word-spacing:-14.826667pt;}
.ws1e{word-spacing:-14.506667pt;}
.wsf{word-spacing:-13.365333pt;}
.ws16{word-spacing:-13.360000pt;}
.ws1b{word-spacing:-13.354667pt;}
.ws18{word-spacing:-13.344000pt;}
.wsa{word-spacing:-13.333333pt;}
.ws19{word-spacing:-13.328000pt;}
.wsb{word-spacing:-13.322667pt;}
.wsd{word-spacing:-13.032000pt;}
.wse{word-spacing:-12.730667pt;}
.wsc{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._15{margin-left:-15.624000pt;}
._19{margin-left:-14.149333pt;}
._14{margin-left:-10.570667pt;}
._18{margin-left:-8.808000pt;}
._17{margin-left:-7.506667pt;}
._16{margin-left:-6.200000pt;}
._13{margin-left:-4.384000pt;}
._12{margin-left:-2.650667pt;}
._1{margin-left:-1.344000pt;}
._0{width:1.045333pt;}
._3{width:2.629333pt;}
._a{width:3.829333pt;}
._9{width:4.986667pt;}
._8{width:6.496000pt;}
._b{width:7.546667pt;}
._f{width:8.512000pt;}
._11{width:10.229333pt;}
._e{width:11.856000pt;}
._d{width:12.917333pt;}
._10{width:13.882667pt;}
._6{width:14.858667pt;}
._4{width:15.978667pt;}
._5{width:17.322667pt;}
._1d{width:18.224000pt;}
._1c{width:19.184000pt;}
._c{width:20.192000pt;}
._7{width:21.450667pt;}
._1e{width:22.538667pt;}
._1f{width:24.026667pt;}
._27{width:25.285333pt;}
._24{width:27.034667pt;}
._22{width:28.112000pt;}
._23{width:29.301333pt;}
._1b{width:30.810667pt;}
._31{width:33.477333pt;}
._30{width:34.768000pt;}
._34{width:36.336000pt;}
._2c{width:41.853982pt;}
._2f{width:45.402667pt;}
._2e{width:52.704000pt;}
._25{width:59.557333pt;}
._26{width:61.994667pt;}
._38{width:99.157333pt;}
._33{width:100.421333pt;}
._2a{width:102.513908pt;}
._37{width:105.120000pt;}
._32{width:130.800000pt;}
._2b{width:170.819331pt;}
._21{width:171.754667pt;}
._2d{width:245.829333pt;}
._20{width:298.576000pt;}
._36{width:401.013333pt;}
._35{width:402.890667pt;}
._29{width:595.589027pt;}
._2{width:726.912000pt;}
._1a{width:752.090667pt;}
._28{width:755.056000pt;}
.fs12{font-size:16.000000pt;}
.fs13{font-size:21.333333pt;}
.fs11{font-size:26.666667pt;}
.fs10{font-size:29.333333pt;}
.fsb{font-size:34.666667pt;}
.fs6{font-size:37.333333pt;}
.fsf{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fsd{font-size:46.308644pt;}
.fs9{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fsc{font-size:56.357959pt;}
.fs0{font-size:58.666667pt;}
.fse{font-size:61.831297pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs3{font-size:106.666667pt;}
.fs1{font-size:149.333333pt;}
.ydb{bottom:-23.608896pt;}
.y0{bottom:0.000000pt;}
.y132{bottom:0.840000pt;}
.y6d{bottom:0.986667pt;}
.y155{bottom:2.013333pt;}
.ydd{bottom:2.533333pt;}
.yeb{bottom:2.986667pt;}
.ye7{bottom:3.000000pt;}
.y1ef{bottom:4.000000pt;}
.y1f1{bottom:4.333333pt;}
.y1aa{bottom:4.986667pt;}
.y6f{bottom:5.000000pt;}
.y1a3{bottom:5.013333pt;}
.y1af{bottom:5.026667pt;}
.y1a{bottom:5.666667pt;}
.y1bd{bottom:6.000000pt;}
.yda{bottom:6.033225pt;}
.y1b8{bottom:6.333333pt;}
.y182{bottom:7.320000pt;}
.y17f{bottom:7.333333pt;}
.yc7{bottom:7.933333pt;}
.y4{bottom:8.000000pt;}
.ye{bottom:8.040000pt;}
.y1d8{bottom:8.666667pt;}
.y1dd{bottom:8.706667pt;}
.y1e5{bottom:8.986667pt;}
.y16{bottom:9.000000pt;}
.y1db{bottom:10.000000pt;}
.yb{bottom:10.333333pt;}
.y21{bottom:11.333333pt;}
.y18{bottom:14.000000pt;}
.y131{bottom:14.506667pt;}
.y1c{bottom:16.366667pt;}
.y101{bottom:16.400000pt;}
.y154{bottom:18.040000pt;}
.y198{bottom:19.000000pt;}
.yed{bottom:19.666667pt;}
.y1fb{bottom:19.693333pt;}
.yea{bottom:19.986667pt;}
.ye6{bottom:20.000000pt;}
.yf3{bottom:20.026667pt;}
.y19d{bottom:20.040000pt;}
.y17e{bottom:21.333333pt;}
.yc6{bottom:21.600000pt;}
.yd9{bottom:29.219311pt;}
.y100{bottom:32.733333pt;}
.y19c{bottom:34.040000pt;}
.y153{bottom:35.040000pt;}
.yc5{bottom:35.600000pt;}
.ye5{bottom:36.666667pt;}
.ye9{bottom:36.693333pt;}
.yf2{bottom:37.026667pt;}
.y1b{bottom:39.666667pt;}
.y8{bottom:50.666667pt;}
.y152{bottom:52.040000pt;}
.y20{bottom:52.366667pt;}
.ye4{bottom:53.666667pt;}
.yf1{bottom:53.693333pt;}
.y2{bottom:63.700000pt;}
.y151{bottom:68.706667pt;}
.y14f{bottom:69.373333pt;}
.ye3{bottom:70.333333pt;}
.yf0{bottom:70.693333pt;}
.y14e{bottom:85.373333pt;}
.y150{bottom:85.706667pt;}
.ye2{bottom:87.360000pt;}
.y7{bottom:93.693333pt;}
.y14{bottom:94.366667pt;}
.yd5{bottom:96.700000pt;}
.y1a6{bottom:98.033333pt;}
.y289{bottom:100.033333pt;}
.y14d{bottom:102.373333pt;}
.y178{bottom:103.033333pt;}
.y213{bottom:103.366667pt;}
.ye1{bottom:104.360000pt;}
.y43{bottom:104.366667pt;}
.y6b{bottom:106.700000pt;}
.y1a5{bottom:111.700000pt;}
.y262{bottom:113.366667pt;}
.yd4{bottom:117.366667pt;}
.yc3{bottom:118.033333pt;}
.y14c{bottom:119.373333pt;}
.ya6{bottom:120.366667pt;}
.yfe{bottom:122.366667pt;}
.y1a4{bottom:123.700000pt;}
.y6a{bottom:124.700000pt;}
.y177{bottom:128.366667pt;}
.y212{bottom:128.700000pt;}
.y42{bottom:129.700000pt;}
.y288{bottom:131.366667pt;}
.y156{bottom:132.700000pt;}
.y6{bottom:136.693333pt;}
.yd3{bottom:138.026667pt;}
.y225{bottom:140.040000pt;}
.y14b{bottom:141.400000pt;}
.y11f{bottom:142.040000pt;}
.yd8{bottom:142.483601pt;}
.y69{bottom:142.706667pt;}
.y1a2{bottom:143.360000pt;}
.yc2{bottom:143.373333pt;}
.ya5{bottom:145.706667pt;}
.y290{bottom:146.040000pt;}
.y14a{bottom:146.693333pt;}
.yfd{bottom:147.706667pt;}
.y176{bottom:153.706667pt;}
.y211{bottom:154.040000pt;}
.y41{bottom:155.066667pt;}
.y1eb{bottom:157.066667pt;}
.yd2{bottom:158.733333pt;}
.y261{bottom:160.066667pt;}
.y68{bottom:160.733333pt;}
.y287{bottom:162.066667pt;}
.y1a1{bottom:162.733333pt;}
.y224{bottom:165.400000pt;}
.y11e{bottom:167.400000pt;}
.y12f{bottom:168.400000pt;}
.yc1{bottom:168.733333pt;}
.yd7{bottom:169.517176pt;}
.y1c8{bottom:170.733333pt;}
.ya4{bottom:171.066667pt;}
.yfc{bottom:173.066667pt;}
.y1ea{bottom:173.733333pt;}
.y210{bottom:175.733333pt;}
.yd6{bottom:177.400000pt;}
.y67{bottom:178.733333pt;}
.y22b{bottom:179.066667pt;}
.y40{bottom:180.400000pt;}
.y1a0{bottom:182.400000pt;}
.yff{bottom:187.333333pt;}
.y20f{bottom:189.733333pt;}
.y223{bottom:190.400000pt;}
.y260{bottom:191.400000pt;}
.y11d{bottom:192.733333pt;}
.y286{bottom:193.400000pt;}
.y12e{bottom:193.733333pt;}
.yc0{bottom:194.066667pt;}
.y1c7{bottom:196.066667pt;}
.y66{bottom:196.400000pt;}
.y1e9{bottom:199.066667pt;}
.y20e{bottom:201.733333pt;}
.y19f{bottom:202.066667pt;}
.y175{bottom:204.066667pt;}
.y22a{bottom:204.400000pt;}
.y25f{bottom:206.733333pt;}
.y285{bottom:208.733333pt;}
.y11c{bottom:212.400000pt;}
.y65{bottom:214.400000pt;}
.y222{bottom:215.733333pt;}
.y1c6{bottom:217.733333pt;}
.y12d{bottom:219.066667pt;}
.ybf{bottom:219.400000pt;}
.y19e{bottom:221.400000pt;}
.ya3{bottom:221.733333pt;}
.y25e{bottom:222.066667pt;}
.y284{bottom:224.066667pt;}
.y3f{bottom:224.400000pt;}
.y174{bottom:229.400000pt;}
.y229{bottom:229.733333pt;}
.y11b{bottom:230.400000pt;}
.y1c5{bottom:231.400000pt;}
.y64{bottom:232.400000pt;}
.y20d{bottom:236.733333pt;}
.y240{bottom:239.066667pt;}
.y28f{bottom:239.400000pt;}
.y221{bottom:241.066667pt;}
.y12c{bottom:244.400000pt;}
.ybe{bottom:244.733333pt;}
.y1c4{bottom:245.400000pt;}
.ya2{bottom:247.066667pt;}
.y3e{bottom:249.733333pt;}
.y63{bottom:250.400000pt;}
.y25d{bottom:253.400000pt;}
.y20c{bottom:254.400000pt;}
.y173{bottom:254.733333pt;}
.y228{bottom:255.066667pt;}
.y283{bottom:255.400000pt;}
.y11a{bottom:255.733333pt;}
.y1c3{bottom:257.400000pt;}
.y1e8{bottom:259.400000pt;}
.y23f{bottom:264.400000pt;}
.y220{bottom:266.400000pt;}
.y62{bottom:268.400000pt;}
.y25c{bottom:268.733333pt;}
.y12b{bottom:269.773333pt;}
.ybd{bottom:270.093333pt;}
.y282{bottom:270.760000pt;}
.y1e7{bottom:271.440000pt;}
.y20b{bottom:271.773333pt;}
.ya1{bottom:272.440000pt;}
.y3d{bottom:274.773333pt;}
.y1c2{bottom:276.773333pt;}
.y172{bottom:280.106667pt;}
.y227{bottom:280.440000pt;}
.y119{bottom:281.106667pt;}
.y13{bottom:286.106667pt;}
.y23e{bottom:289.773333pt;}
.y19b{bottom:290.440000pt;}
.y21f{bottom:291.760000pt;}
.y1e6{bottom:294.773333pt;}
.y12a{bottom:295.106667pt;}
.ybc{bottom:295.440000pt;}
.y1c1{bottom:296.440000pt;}
.ya0{bottom:297.760000pt;}
.y3c{bottom:300.093333pt;}
.y61{bottom:304.106667pt;}
.y171{bottom:305.440000pt;}
.y226{bottom:305.773333pt;}
.y20a{bottom:306.106667pt;}
.y118{bottom:311.773333pt;}
.y149{bottom:313.440000pt;}
.y23d{bottom:314.773333pt;}
.y25b{bottom:315.426667pt;}
.y1c0{bottom:316.106667pt;}
.y21e{bottom:317.106667pt;}
.y281{bottom:317.440000pt;}
.y1e4{bottom:318.106667pt;}
.y129{bottom:320.106667pt;}
.ybb{bottom:320.440000pt;}
.y6c{bottom:320.773333pt;}
.y9f{bottom:322.773333pt;}
.y209{bottom:323.773333pt;}
.y19a{bottom:324.773333pt;}
.y3b{bottom:325.440000pt;}
.y60{bottom:326.773333pt;}
.y12{bottom:329.106667pt;}
.yd1{bottom:330.760000pt;}
.y280{bottom:332.773333pt;}
.y1bf{bottom:335.440000pt;}
.y170{bottom:336.093333pt;}
.y117{bottom:337.106667pt;}
.y148{bottom:338.773333pt;}
.y23c{bottom:340.106667pt;}
.y1e3{bottom:341.440000pt;}
.y21d{bottom:342.426667pt;}
.y199{bottom:344.106667pt;}
.y128{bottom:345.426667pt;}
.yba{bottom:345.760000pt;}
.y9e{bottom:348.093333pt;}
.y5f{bottom:349.773333pt;}
.y3a{bottom:350.773333pt;}
.y1be{bottom:355.106667pt;}
.yd0{bottom:356.106667pt;}
.y208{bottom:358.773333pt;}
.y16f{bottom:360.440000pt;}
.yfb{bottom:361.106667pt;}
.y25a{bottom:362.106667pt;}
.y116{bottom:362.440000pt;}
.y197{bottom:363.773333pt;}
.y147{bottom:364.106667pt;}
.y1e2{bottom:364.773333pt;}
.y23b{bottom:365.440000pt;}
.y21c{bottom:367.773333pt;}
.y5e{bottom:369.106667pt;}
.y127{bottom:370.773333pt;}
.yb9{bottom:371.106667pt;}
.y11{bottom:372.106667pt;}
.y9d{bottom:373.440000pt;}
.y39{bottom:376.106667pt;}
.y259{bottom:377.440000pt;}
.y16e{bottom:378.106667pt;}
.y27f{bottom:379.440000pt;}
.ycf{bottom:381.440000pt;}
.y196{bottom:383.466667pt;}
.yfa{bottom:386.466667pt;}
.y115{bottom:387.800000pt;}
.y1e1{bottom:388.133333pt;}
.y5d{bottom:388.800000pt;}
.y146{bottom:389.466667pt;}
.y23a{bottom:390.800000pt;}
.y258{bottom:392.800000pt;}
.y21b{bottom:393.133333pt;}
.y28e{bottom:394.800000pt;}
.y207{bottom:395.800000pt;}
.y126{bottom:396.133333pt;}
.yb8{bottom:396.466667pt;}
.y9c{bottom:398.800000pt;}
.y38{bottom:401.466667pt;}
.y195{bottom:402.800000pt;}
.y16d{bottom:403.466667pt;}
.yce{bottom:406.800000pt;}
.y5c{bottom:408.466667pt;}
.y1bc{bottom:409.133333pt;}
.y17{bottom:410.466667pt;}
.y27e{bottom:410.800000pt;}
.yf9{bottom:411.466667pt;}
.y114{bottom:413.133333pt;}
.y10{bottom:415.133333pt;}
.y239{bottom:416.133333pt;}
.yb7{bottom:417.466667pt;}
.y21a{bottom:418.133333pt;}
.y145{bottom:420.133333pt;}
.y125{bottom:421.466667pt;}
.y1e0{bottom:422.800000pt;}
.y194{bottom:423.800000pt;}
.y9b{bottom:424.133333pt;}
.y27d{bottom:426.133333pt;}
.y37{bottom:426.800000pt;}
.y5b{bottom:427.800000pt;}
.y1bb{bottom:428.466667pt;}
.y16c{bottom:428.800000pt;}
.ycd{bottom:432.133333pt;}
.yf8{bottom:436.800000pt;}
.y113{bottom:438.466667pt;}
.y257{bottom:439.466667pt;}
.y238{bottom:441.466667pt;}
.yb6{bottom:441.800000pt;}
.y219{bottom:443.466667pt;}
.y193{bottom:445.800000pt;}
.y1df{bottom:446.133333pt;}
.y124{bottom:446.800000pt;}
.y5a{bottom:447.466667pt;}
.y1ba{bottom:448.133333pt;}
.y206{bottom:449.133333pt;}
.y9a{bottom:449.466667pt;}
.yf{bottom:449.800000pt;}
.y144{bottom:450.800000pt;}
.y36{bottom:452.133333pt;}
.y16b{bottom:454.133333pt;}
.y256{bottom:454.800000pt;}
.ycc{bottom:457.466667pt;}
.yf7{bottom:462.133333pt;}
.yb5{bottom:466.466667pt;}
.y192{bottom:466.800000pt;}
.y59{bottom:467.133333pt;}
.y1b9{bottom:467.466667pt;}
.y112{bottom:468.800000pt;}
.y1de{bottom:469.466667pt;}
.y123{bottom:472.133333pt;}
.y27c{bottom:472.800000pt;}
.y99{bottom:474.800000pt;}
.y84{bottom:475.133333pt;}
.y35{bottom:477.466667pt;}
.y16a{bottom:479.466667pt;}
.y143{bottom:481.133333pt;}
.y15{bottom:481.800000pt;}
.ycb{bottom:482.800000pt;}
.y255{bottom:486.133333pt;}
.y58{bottom:486.466667pt;}
.y1b7{bottom:487.133333pt;}
.yf6{bottom:487.466667pt;}
.y27b{bottom:488.133333pt;}
.y191{bottom:490.133333pt;}
.y237{bottom:492.133333pt;}
.yd{bottom:492.800000pt;}
.y111{bottom:494.133333pt;}
.y122{bottom:497.466667pt;}
.y98{bottom:500.173333pt;}
.y83{bottom:500.506667pt;}
.y254{bottom:501.506667pt;}
.y27a{bottom:503.506667pt;}
.y169{bottom:504.840000pt;}
.y205{bottom:505.840000pt;}
.y57{bottom:506.173333pt;}
.y1b6{bottom:506.840000pt;}
.yca{bottom:508.173333pt;}
.y142{bottom:511.840000pt;}
.yf5{bottom:512.840000pt;}
.y190{bottom:513.840000pt;}
.y1dc{bottom:516.173333pt;}
.y253{bottom:516.840000pt;}
.y236{bottom:517.506667pt;}
.y110{bottom:519.506667pt;}
.y34{bottom:521.506667pt;}
.y121{bottom:522.840000pt;}
.y97{bottom:525.506667pt;}
.y56{bottom:525.840000pt;}
.yf4{bottom:527.506667pt;}
.y168{bottom:530.173333pt;}
.y204{bottom:532.173333pt;}
.yc9{bottom:533.506667pt;}
.y279{bottom:534.840000pt;}
.yc{bottom:535.840000pt;}
.y19{bottom:536.173333pt;}
.y141{bottom:537.173333pt;}
.y18f{bottom:537.506667pt;}
.y1da{bottom:539.506667pt;}
.y235{bottom:542.840000pt;}
.y6e{bottom:544.506667pt;}
.y10f{bottom:544.840000pt;}
.y33{bottom:546.506667pt;}
.y252{bottom:548.173333pt;}
.y1b5{bottom:549.506667pt;}
.y278{bottom:550.173333pt;}
.y96{bottom:550.840000pt;}
.y82{bottom:551.173333pt;}
.y55{bottom:552.840000pt;}
.y120{bottom:553.506667pt;}
.y167{bottom:555.173333pt;}
.y203{bottom:557.506667pt;}
.yc8{bottom:558.840000pt;}
.y18e{bottom:561.173333pt;}
.y140{bottom:562.506667pt;}
.y1d9{bottom:562.840000pt;}
.y251{bottom:563.506667pt;}
.y28d{bottom:565.506667pt;}
.y234{bottom:567.840000pt;}
.y10e{bottom:570.173333pt;}
.y130{bottom:571.000000pt;}
.y32{bottom:571.840000pt;}
.y95{bottom:575.840000pt;}
.y81{bottom:576.173333pt;}
.ya{bottom:578.840000pt;}
.y166{bottom:580.506667pt;}
.y277{bottom:581.506667pt;}
.y202{bottom:582.840000pt;}
.y54{bottom:583.840000pt;}
.y18d{bottom:584.840000pt;}
.y1d7{bottom:587.506667pt;}
.y13f{bottom:587.840000pt;}
.y1b4{bottom:590.840000pt;}
.y233{bottom:593.173333pt;}
.yef{bottom:595.506667pt;}
.y276{bottom:596.840000pt;}
.y31{bottom:597.173333pt;}
.y94{bottom:601.173333pt;}
.y80{bottom:601.506667pt;}
.y165{bottom:605.840000pt;}
.y201{bottom:608.173333pt;}
.y18c{bottom:608.506667pt;}
.y53{bottom:609.173333pt;}
.y250{bottom:610.173333pt;}
.y13e{bottom:613.200000pt;}
.yb4{bottom:615.200000pt;}
.y1b3{bottom:616.200000pt;}
.y232{bottom:618.533333pt;}
.y10d{bottom:620.866667pt;}
.y30{bottom:622.533333pt;}
.y24f{bottom:625.533333pt;}
.y93{bottom:626.533333pt;}
.y7f{bottom:626.866667pt;}
.y275{bottom:628.200000pt;}
.y218{bottom:628.866667pt;}
.y164{bottom:631.200000pt;}
.y18b{bottom:631.866667pt;}
.y200{bottom:633.533333pt;}
.y52{bottom:634.533333pt;}
.y9{bottom:638.866667pt;}
.y1d6{bottom:640.866667pt;}
.y1b2{bottom:641.533333pt;}
.y274{bottom:643.533333pt;}
.y231{bottom:643.866667pt;}
.y10c{bottom:646.200000pt;}
.y13d{bottom:646.533333pt;}
.y2f{bottom:647.866667pt;}
.y92{bottom:651.866667pt;}
.y7e{bottom:652.200000pt;}
.y1ff{bottom:653.200000pt;}
.y5{bottom:653.533333pt;}
.y217{bottom:653.866667pt;}
.y18a{bottom:655.533333pt;}
.y163{bottom:656.533333pt;}
.y273{bottom:658.866667pt;}
.y51{bottom:659.866667pt;}
.y216{bottom:662.866667pt;}
.y1fe{bottom:667.866667pt;}
.y230{bottom:669.200000pt;}
.y10b{bottom:671.533333pt;}
.y24e{bottom:672.200000pt;}
.y2e{bottom:673.200000pt;}
.y1b1{bottom:676.533333pt;}
.y13c{bottom:676.866667pt;}
.y91{bottom:677.200000pt;}
.y7d{bottom:677.533333pt;}
.y189{bottom:679.200000pt;}
.y1fd{bottom:681.533333pt;}
.y162{bottom:681.866667pt;}
.y1d5{bottom:682.200000pt;}
.yb3{bottom:685.200000pt;}
.ydc{bottom:686.666667pt;}
.y24d{bottom:687.533333pt;}
.y272{bottom:690.200000pt;}
.y1b0{bottom:690.533333pt;}
.y50{bottom:691.533333pt;}
.y22f{bottom:694.533333pt;}
.y1fc{bottom:695.533333pt;}
.y10a{bottom:696.533333pt;}
.y215{bottom:696.866667pt;}
.yee{bottom:697.533333pt;}
.y13b{bottom:698.200000pt;}
.y90{bottom:702.533333pt;}
.y7c{bottom:702.866667pt;}
.y271{bottom:705.533333pt;}
.y161{bottom:707.200000pt;}
.y1d4{bottom:707.533333pt;}
.yb2{bottom:710.533333pt;}
.y4f{bottom:715.533333pt;}
.y2d{bottom:717.200000pt;}
.y24c{bottom:718.866667pt;}
.y22e{bottom:719.866667pt;}
.y188{bottom:720.200000pt;}
.y270{bottom:720.866667pt;}
.y109{bottom:721.866667pt;}
.y13a{bottom:724.533333pt;}
.y8f{bottom:727.906667pt;}
.y7b{bottom:728.226667pt;}
.y187{bottom:732.240000pt;}
.y160{bottom:732.560000pt;}
.y24b{bottom:734.226667pt;}
.yb1{bottom:735.893333pt;}
.y26f{bottom:736.226667pt;}
.y4e{bottom:739.893333pt;}
.y1ae{bottom:741.560000pt;}
.y1fa{bottom:741.893333pt;}
.y2c{bottom:742.573333pt;}
.y22d{bottom:745.226667pt;}
.y108{bottom:747.226667pt;}
.yec{bottom:748.893333pt;}
.y24a{bottom:749.560000pt;}
.y139{bottom:749.893333pt;}
.y186{bottom:750.560000pt;}
.y28c{bottom:752.240000pt;}
.y8e{bottom:753.226667pt;}
.y7a{bottom:753.560000pt;}
.y1f9{bottom:759.560000pt;}
.y1ad{bottom:760.893333pt;}
.y185{bottom:761.226667pt;}
.yb0{bottom:761.240000pt;}
.y15f{bottom:763.226667pt;}
.y4d{bottom:763.893333pt;}
.y26e{bottom:767.560000pt;}
.y2b{bottom:767.893333pt;}
.y22c{bottom:770.560000pt;}
.y107{bottom:772.573333pt;}
.y138{bottom:775.893333pt;}
.y1f8{bottom:776.893333pt;}
.y8d{bottom:778.573333pt;}
.y79{bottom:778.893333pt;}
.y249{bottom:780.893333pt;}
.y1d3{bottom:781.560000pt;}
.y26d{bottom:782.893333pt;}
.y184{bottom:783.226667pt;}
.yaf{bottom:786.560000pt;}
.y4c{bottom:788.226667pt;}
.y2a{bottom:792.893333pt;}
.y1d2{bottom:793.560000pt;}
.y1f7{bottom:794.560000pt;}
.y1ac{bottom:795.560000pt;}
.y248{bottom:796.226667pt;}
.y106{bottom:797.893333pt;}
.y26c{bottom:798.226667pt;}
.y8c{bottom:803.560000pt;}
.y78{bottom:804.226667pt;}
.y183{bottom:805.226667pt;}
.y15e{bottom:806.226667pt;}
.y137{bottom:807.560000pt;}
.yae{bottom:811.560000pt;}
.y1f6{bottom:811.906667pt;}
.y1d1{bottom:813.226667pt;}
.y28b{bottom:814.226667pt;}
.y1ab{bottom:814.893333pt;}
.ye8{bottom:816.906667pt;}
.y29{bottom:818.226667pt;}
.y4b{bottom:819.226667pt;}
.y105{bottom:823.226667pt;}
.y3{bottom:825.226667pt;}
.y181{bottom:827.240000pt;}
.y8b{bottom:828.893333pt;}
.y77{bottom:829.226667pt;}
.y26b{bottom:829.560000pt;}
.y15d{bottom:831.560000pt;}
.y1d0{bottom:832.573333pt;}
.y1a9{bottom:834.573333pt;}
.yad{bottom:836.893333pt;}
.y136{bottom:838.226667pt;}
.y247{bottom:842.933333pt;}
.y28{bottom:843.600000pt;}
.y26a{bottom:844.933333pt;}
.y104{bottom:845.600000pt;}
.y1f5{bottom:846.600000pt;}
.y180{bottom:849.266667pt;}
.y4a{bottom:850.933333pt;}
.y1cf{bottom:852.266667pt;}
.y1a8{bottom:853.933333pt;}
.y8a{bottom:854.266667pt;}
.y76{bottom:854.600000pt;}
.y15c{bottom:856.933333pt;}
.y246{bottom:858.266667pt;}
.y269{bottom:860.266667pt;}
.yc4{bottom:861.666667pt;}
.yac{bottom:862.266667pt;}
.y135{bottom:863.600000pt;}
.y1f4{bottom:863.933333pt;}
.y103{bottom:866.933333pt;}
.y27{bottom:868.933333pt;}
.ye0{bottom:869.600000pt;}
.y1ce{bottom:871.933333pt;}
.y17d{bottom:872.600000pt;}
.y245{bottom:873.600000pt;}
.y1a7{bottom:874.933333pt;}
.y49{bottom:875.266667pt;}
.y89{bottom:879.600000pt;}
.y75{bottom:879.933333pt;}
.y1f3{bottom:881.600000pt;}
.y15b{bottom:882.266667pt;}
.yab{bottom:887.600000pt;}
.y134{bottom:888.933333pt;}
.y102{bottom:890.266667pt;}
.y268{bottom:891.600000pt;}
.y26{bottom:894.266667pt;}
.y17c{bottom:896.933333pt;}
.y1f2{bottom:898.933333pt;}
.y88{bottom:904.933333pt;}
.y74{bottom:905.266667pt;}
.y48{bottom:905.933333pt;}
.y1cd{bottom:906.266667pt;}
.y267{bottom:906.933333pt;}
.y15a{bottom:907.600000pt;}
.yaa{bottom:912.933333pt;}
.y1f0{bottom:916.600000pt;}
.y17b{bottom:917.933333pt;}
.y25{bottom:919.600000pt;}
.y244{bottom:920.266667pt;}
.y214{bottom:920.600000pt;}
.y133{bottom:922.266667pt;}
.y1cc{bottom:925.600000pt;}
.y87{bottom:930.266667pt;}
.y73{bottom:930.600000pt;}
.y47{bottom:931.266667pt;}
.y159{bottom:932.933333pt;}
.y1ee{bottom:934.266667pt;}
.y243{bottom:935.600000pt;}
.ya9{bottom:938.266667pt;}
.y17a{bottom:941.600000pt;}
.y24{bottom:944.933333pt;}
.y1cb{bottom:945.266667pt;}
.y1ed{bottom:951.600000pt;}
.y266{bottom:953.600000pt;}
.y86{bottom:955.626667pt;}
.y72{bottom:955.960000pt;}
.y46{bottom:956.626667pt;}
.y158{bottom:958.293333pt;}
.ya8{bottom:963.626667pt;}
.y179{bottom:965.293333pt;}
.y1ca{bottom:966.293333pt;}
.y242{bottom:966.960000pt;}
.y28a{bottom:968.960000pt;}
.y1ec{bottom:969.293333pt;}
.y23{bottom:970.293333pt;}
.y85{bottom:980.960000pt;}
.y45{bottom:981.960000pt;}
.y241{bottom:982.293333pt;}
.y157{bottom:983.626667pt;}
.y265{bottom:984.960000pt;}
.ya7{bottom:988.960000pt;}
.y71{bottom:989.293333pt;}
.ydf{bottom:990.960000pt;}
.y264{bottom:1000.293333pt;}
.y1c9{bottom:1002.960000pt;}
.y22{bottom:1014.293333pt;}
.y44{bottom:1015.293333pt;}
.y263{bottom:1015.626667pt;}
.yde{bottom:1016.960000pt;}
.y70{bottom:1017.626667pt;}
.y1f{bottom:1052.293333pt;}
.y1e{bottom:1069.666667pt;}
.y1d{bottom:1082.333333pt;}
.y1{bottom:1083.333333pt;}
.h1d{height:14.000000pt;}
.h14{height:15.000000pt;}
.h37{height:16.666667pt;}
.h2b{height:16.687500pt;}
.h3b{height:16.700000pt;}
.h39{height:17.000000pt;}
.h38{height:17.033333pt;}
.h2c{height:18.666667pt;}
.h2f{height:18.686667pt;}
.h2e{height:18.700000pt;}
.h15{height:19.000000pt;}
.h33{height:19.020000pt;}
.h30{height:19.033333pt;}
.h29{height:21.333333pt;}
.h2a{height:21.353333pt;}
.h36{height:22.250000pt;}
.h34{height:22.666667pt;}
.h35{height:22.700000pt;}
.h11{height:25.333333pt;}
.hc{height:26.000000pt;}
.h26{height:26.333333pt;}
.h28{height:27.812500pt;}
.h25{height:30.593750pt;}
.h2d{height:33.666667pt;}
.h32{height:33.700000pt;}
.h1a{height:33.713959pt;}
.ha{height:34.000000pt;}
.h3a{height:34.020000pt;}
.h8{height:34.033333pt;}
.h1b{height:35.115881pt;}
.hf{height:35.546875pt;}
.h16{height:36.156250pt;}
.h6{height:43.000000pt;}
.h7{height:43.033333pt;}
.h23{height:44.333333pt;}
.h24{height:44.500000pt;}
.h17{height:47.000000pt;}
.h12{height:47.281250pt;}
.h3c{height:47.838542pt;}
.h5{height:48.033333pt;}
.h13{height:50.062500pt;}
.h1f{height:50.686667pt;}
.h21{height:50.700000pt;}
.h31{height:55.625000pt;}
.h19{height:57.927101pt;}
.h10{height:58.406250pt;}
.h1{height:61.187500pt;}
.h1c{height:63.552830pt;}
.he{height:66.750000pt;}
.h20{height:67.333333pt;}
.hd{height:71.916667pt;}
.hb{height:89.000000pt;}
.h22{height:101.366667pt;}
.h9{height:111.250000pt;}
.h1e{height:118.033333pt;}
.h18{height:137.133333pt;}
.h27{height:155.400000pt;}
.h3{height:155.750000pt;}
.h4{height:171.706667pt;}
.h2{height:203.066667pt;}
.h0{height:1122.666667pt;}
.w8{width:8.333333pt;}
.w13{width:16.333333pt;}
.w32{width:48.666667pt;}
.w3a{width:48.700000pt;}
.w29{width:49.033333pt;}
.w17{width:57.000000pt;}
.w18{width:57.700000pt;}
.w37{width:61.666667pt;}
.w3e{width:62.033333pt;}
.w39{width:63.033333pt;}
.w38{width:63.700000pt;}
.w25{width:68.333333pt;}
.w28{width:68.366667pt;}
.w34{width:69.366667pt;}
.w1c{width:70.700000pt;}
.w19{width:71.033333pt;}
.w26{width:71.366667pt;}
.w1b{width:72.700000pt;}
.w2f{width:74.366667pt;}
.w1a{width:74.700000pt;}
.w31{width:77.366667pt;}
.w27{width:78.700000pt;}
.w2c{width:83.033333pt;}
.w36{width:83.400000pt;}
.w30{width:84.033333pt;}
.w20{width:88.700000pt;}
.w3d{width:91.033333pt;}
.w1f{width:91.400000pt;}
.w33{width:92.033333pt;}
.w22{width:107.366667pt;}
.w23{width:117.400000pt;}
.w2b{width:123.700000pt;}
.w2d{width:128.733333pt;}
.w3c{width:143.400000pt;}
.w1e{width:154.733333pt;}
.w16{width:158.106667pt;}
.we{width:177.106667pt;}
.wb{width:180.000000pt;}
.wf{width:193.400000pt;}
.w10{width:194.106667pt;}
.w6{width:211.106667pt;}
.wa{width:219.773333pt;}
.w9{width:220.106667pt;}
.w1d{width:229.106667pt;}
.w35{width:232.440000pt;}
.w24{width:238.133333pt;}
.w2a{width:247.466667pt;}
.w2e{width:254.466667pt;}
.w3b{width:267.466667pt;}
.w15{width:283.133333pt;}
.w14{width:283.466667pt;}
.w12{width:312.000000pt;}
.w11{width:316.333333pt;}
.w21{width:339.826667pt;}
.wd{width:389.333333pt;}
.w5{width:413.506667pt;}
.w4{width:469.200000pt;}
.wc{width:566.826667pt;}
.w3{width:567.266667pt;}
.w7{width:727.333333pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.366667pt;}
.x3{left:8.700000pt;}
.x17{left:9.666667pt;}
.x38{left:11.373333pt;}
.x44{left:12.333333pt;}
.x4a{left:14.333333pt;}
.x11{left:15.666667pt;}
.x3c{left:16.666667pt;}
.xf{left:17.666667pt;}
.x35{left:19.040000pt;}
.x53{left:20.000000pt;}
.x3e{left:20.986667pt;}
.x31{left:23.333333pt;}
.x5e{left:24.333333pt;}
.x47{left:25.666667pt;}
.x36{left:27.333333pt;}
.xd{left:29.040000pt;}
.x48{left:30.026667pt;}
.x12{left:31.700000pt;}
.x34{left:33.333333pt;}
.x4{left:34.700000pt;}
.x30{left:37.373333pt;}
.x4c{left:38.693333pt;}
.x32{left:40.373333pt;}
.x33{left:41.706667pt;}
.x2c{left:43.706667pt;}
.x39{left:44.706667pt;}
.x4d{left:46.026667pt;}
.x2f{left:48.040000pt;}
.x3f{left:49.333333pt;}
.x5f{left:51.693333pt;}
.x62{left:53.360000pt;}
.x37{left:55.706667pt;}
.x7{left:57.366667pt;}
.x3a{left:73.366667pt;}
.x5{left:75.033333pt;}
.x2a{left:81.740000pt;}
.x54{left:83.073333pt;}
.x40{left:86.073333pt;}
.x1c{left:90.951425pt;}
.x4e{left:94.073333pt;}
.x5c{left:100.740000pt;}
.x18{left:102.033333pt;}
.x16{left:103.366667pt;}
.x1{left:113.366655pt;}
.x59{left:117.733322pt;}
.x21{left:137.399988pt;}
.x5a{left:141.733322pt;}
.x5b{left:146.066655pt;}
.x20{left:159.333333pt;}
.x22{left:161.399988pt;}
.xb{left:167.399988pt;}
.xc{left:182.733333pt;}
.xe{left:197.440000pt;}
.x6{left:217.433333pt;}
.x2{left:220.100000pt;}
.x25{left:272.800000pt;}
.x8{left:283.806667pt;}
.x1e{left:291.800000pt;}
.x10{left:296.133333pt;}
.x26{left:330.466667pt;}
.x2b{left:343.800000pt;}
.x55{left:347.133333pt;}
.x1d{left:349.333333pt;}
.x41{left:352.840000pt;}
.x15{left:360.173322pt;}
.x49{left:362.173333pt;}
.x23{left:368.666667pt;}
.x5d{left:382.173333pt;}
.x1b{left:388.727445pt;}
.xa{left:396.839988pt;}
.x42{left:421.840000pt;}
.x56{left:431.200000pt;}
.x4f{left:444.200000pt;}
.x3b{left:454.533333pt;}
.x27{left:460.533333pt;}
.x13{left:469.866655pt;}
.x1f{left:485.866667pt;}
.x43{left:493.866667pt;}
.x2d{left:499.200000pt;}
.x1a{left:500.333333pt;}
.x60{left:526.240000pt;}
.x50{left:528.906667pt;}
.x28{left:535.906667pt;}
.x52{left:536.906667pt;}
.x57{left:557.906667pt;}
.x3d{left:562.573333pt;}
.x4b{left:570.240000pt;}
.x45{left:573.240000pt;}
.x2e{left:591.266667pt;}
.x51{left:606.933333pt;}
.x29{left:609.266667pt;}
.x61{left:617.933333pt;}
.x58{left:621.600000pt;}
.x63{left:636.266655pt;}
.x46{left:642.266667pt;}
.x24{left:664.306667pt;}
.x14{left:672.306667pt;}
.x19{left:674.973322pt;}
}




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