
    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_c649dbc78c3ff9b79ed2a92b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_f0928a182cccdfcd2d1cf820.woff')format("woff");}.ff2{font-family:ff2;line-height:0.760254;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_6dc79fbbb83d33fd8543acb4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.810547;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_bdfe0f73fb8bc896084a8711.woff')format("woff");}.ff4{font-family:ff4;line-height:0.809570;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_522691eacadf8822ed99e22e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.142090;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_a1379fa31da35cd2aa70529b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.142090;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_e683173dedf449041f93ad95.woff')format("woff");}.ff7{font-family:ff7;line-height:1.197754;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_e683173dedf449041f93ad95.woff')format("woff");}.ff8{font-family:ff8;line-height:1.197754;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_b6ac342f6596f6aa353c61a4.woff')format("woff");}.ff9{font-family:ff9;line-height:1.072266;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_ce82c40190411ef10651bebc.woff')format("woff");}.ffa{font-family:ffa;line-height:1.112305;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_ac3f0e076bd033ceda9b4bf6.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c99f6410b622a6e4e100c601.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_c98b6af1252c558d760d3882.woff')format("woff");}.ffd{font-family:ffd;line-height:1.172852;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_d24c01d056036690910cc291.woff')format("woff");}.ffe{font-family:ffe;line-height:0.800293;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);}
.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);}
.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);}
.v4{vertical-align:-48.180000px;}
.v5{vertical-align:-7.920000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.600000px;}
.v2{vertical-align:72.240000px;}
.v3{vertical-align:97.740000px;}
.ls3{letter-spacing:-1.200000px;}
.ls12{letter-spacing:-1.176000px;}
.ls19{letter-spacing:-0.768000px;}
.ls18{letter-spacing:-0.516000px;}
.ls1d{letter-spacing:-0.504000px;}
.ls13{letter-spacing:-0.384000px;}
.ls17{letter-spacing:-0.300000px;}
.ls1e{letter-spacing:-0.204000px;}
.lsc{letter-spacing:-0.108000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.024000px;}
.ls16{letter-spacing:0.026400px;}
.ls6{letter-spacing:0.060000px;}
.ls8{letter-spacing:0.084000px;}
.ls4{letter-spacing:0.120000px;}
.lse{letter-spacing:0.132000px;}
.ls15{letter-spacing:0.154800px;}
.ls1f{letter-spacing:0.162000px;}
.ls9{letter-spacing:0.176400px;}
.ls5{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.192000px;}
.ls14{letter-spacing:0.210000px;}
.ls20{letter-spacing:0.222000px;}
.ls11{letter-spacing:0.254400px;}
.lsf{letter-spacing:0.336000px;}
.ls7{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.372000px;}
.lsb{letter-spacing:0.384000px;}
.lsd{letter-spacing:0.408000px;}
.lsa{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.600000px;}
.ls10{letter-spacing:0.612000px;}
.ls1c{letter-spacing:1.140000px;}
.ls1a{letter-spacing:1.200000px;}
.ls22{letter-spacing:137.982000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-96.000000px;}
.ws5{word-spacing:-72.000000px;}
.ws1e{word-spacing:-24.876000px;}
.ws1{word-spacing:-22.560000px;}
.wsa{word-spacing:-18.432000px;}
.ws1d{word-spacing:-18.192000px;}
.ws6{word-spacing:-18.024000px;}
.ws4{word-spacing:-18.000000px;}
.ws18{word-spacing:-16.824000px;}
.ws7{word-spacing:-16.800000px;}
.ws17{word-spacing:-16.537500px;}
.ws16{word-spacing:-16.500000px;}
.ws1c{word-spacing:-14.949900px;}
.ws1b{word-spacing:-14.916000px;}
.ws9{word-spacing:-14.407500px;}
.ws8{word-spacing:-14.373600px;}
.ws1a{word-spacing:-13.537500px;}
.ws19{word-spacing:-13.500000px;}
.ws1f{word-spacing:-12.204000px;}
.ws3{word-spacing:-12.000000px;}
.ws11{word-spacing:-7.668000px;}
.wsc{word-spacing:-7.464000px;}
.ws10{word-spacing:-7.416000px;}
.wsf{word-spacing:-7.392000px;}
.wse{word-spacing:-7.188000px;}
.ws12{word-spacing:-7.140000px;}
.wsd{word-spacing:-7.056000px;}
.wsb{word-spacing:-6.948000px;}
.ws2{word-spacing:0.000000px;}
.ws20{word-spacing:97.494000px;}
.ws14{word-spacing:203.442000px;}
.ws15{word-spacing:203.502000px;}
.ws13{word-spacing:220.122000px;}
._d{margin-left:-2.481750px;}
._1{margin-left:-1.080750px;}
._0{width:1.056000px;}
._5{width:2.304000px;}
._6{width:3.594000px;}
._1e{width:4.596000px;}
._c{width:5.616000px;}
._2{width:6.768000px;}
._3{width:7.848000px;}
._4{width:9.618000px;}
._a{width:10.805250px;}
._9{width:11.838750px;}
._8{width:12.885000px;}
._7{width:14.328000px;}
._b{width:16.272000px;}
._1a{width:19.080000px;}
._25{width:20.088000px;}
._1b{width:21.120000px;}
._19{width:23.112000px;}
._10{width:25.008750px;}
._e{width:26.280000px;}
._f{width:27.282000px;}
._1d{width:28.398750px;}
._24{width:29.974500px;}
._23{width:67.956000px;}
._28{width:69.684000px;}
._27{width:83.604000px;}
._22{width:88.362000px;}
._2a{width:108.156000px;}
._20{width:135.696000px;}
._15{width:139.902000px;}
._21{width:154.380000px;}
._14{width:156.342000px;}
._26{width:164.160000px;}
._16{width:165.222000px;}
._2c{width:170.742000px;}
._13{width:172.842000px;}
._29{width:174.060000px;}
._1c{width:186.402000px;}
._18{width:199.571700px;}
._1f{width:201.480000px;}
._12{width:205.902000px;}
._11{width:214.122000px;}
._2b{width:216.300000px;}
._17{width:1640.880000px;}
.fc8{color:rgb(83,129,53);}
.fc7{color:rgb(238,0,0);}
.fc6{color:rgb(0,176,240);}
.fc5{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc3{color:rgb(131,60,11);}
.fc2{color:rgb(255,242,204);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:36.000000px;}
.fsc{font-size:39.600000px;}
.fsb{font-size:48.000000px;}
.fs12{font-size:48.150000px;}
.fs8{font-size:54.000000px;}
.fs11{font-size:54.150000px;}
.fs1{font-size:60.000000px;}
.fs13{font-size:60.150000px;}
.fsd{font-size:63.600000px;}
.fse{font-size:63.750000px;}
.fs6{font-size:66.000000px;}
.fs10{font-size:66.150000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs4{font-size:96.000000px;}
.fs9{font-size:108.000000px;}
.fsa{font-size:120.000000px;}
.fs3{font-size:168.000000px;}
.fs2{font-size:216.000000px;}
.fs5{font-size:216.150000px;}
.y1b{bottom:-18.720000px;}
.y20{bottom:-15.405000px;}
.y25{bottom:-12.000000px;}
.ye0{bottom:-1.185000px;}
.y0{bottom:0.000000px;}
.yf0{bottom:2.715000px;}
.ye8{bottom:2.985000px;}
.ye2{bottom:3.000000px;}
.ye6{bottom:3.015000px;}
.y19c{bottom:4.200000px;}
.ybc{bottom:9.300000px;}
.y16b{bottom:9.555000px;}
.y152{bottom:10.950000px;}
.y4c{bottom:11.400000px;}
.y12f{bottom:13.500000px;}
.y180{bottom:14.025000px;}
.y50{bottom:14.100000px;}
.y54{bottom:14.385000px;}
.y21{bottom:15.000000px;}
.y5a{bottom:15.945000px;}
.y284{bottom:16.455000px;}
.ydf{bottom:19.500000px;}
.y104{bottom:21.570000px;}
.y1f2{bottom:22.125000px;}
.y246{bottom:22.275000px;}
.y1d1{bottom:22.350000px;}
.y24{bottom:22.837500px;}
.ybd{bottom:29.925000px;}
.y168{bottom:29.955000px;}
.y4b{bottom:32.130000px;}
.y12e{bottom:32.730000px;}
.y17f{bottom:34.155000px;}
.y59{bottom:37.830000px;}
.y170{bottom:38.925000px;}
.ybb{bottom:39.420000px;}
.y164{bottom:39.645000px;}
.yde{bottom:40.245000px;}
.y163{bottom:40.380000px;}
.y14a{bottom:41.820000px;}
.y16c{bottom:42.975000px;}
.y102{bottom:43.875000px;}
.y1d3{bottom:44.587500px;}
.y231{bottom:44.775000px;}
.y1b2{bottom:44.812500px;}
.y250{bottom:44.850000px;}
.y175{bottom:44.955000px;}
.y53{bottom:45.330000px;}
.yc1{bottom:49.380000px;}
.y12d{bottom:51.975000px;}
.y4a{bottom:52.845000px;}
.y17e{bottom:54.300000px;}
.y2{bottom:56.437500px;}
.y183{bottom:56.737500px;}
.y23{bottom:57.037500px;}
.yae{bottom:57.975000px;}
.yb3{bottom:58.650000px;}
.y165{bottom:58.995000px;}
.yb1{bottom:59.355000px;}
.y16a{bottom:60.120000px;}
.yc0{bottom:61.845000px;}
.yfd{bottom:63.270000px;}
.yb0{bottom:63.705000px;}
.y268{bottom:67.230000px;}
.y1d4{bottom:71.805000px;}
.y1b3{bottom:71.955000px;}
.y128{bottom:72.450000px;}
.y16e{bottom:72.705000px;}
.y1{bottom:73.537500px;}
.y171{bottom:73.650000px;}
.y182{bottom:73.837500px;}
.y173{bottom:74.370000px;}
.y172{bottom:74.580000px;}
.y21d{bottom:75.450000px;}
.y178{bottom:75.780000px;}
.y52{bottom:76.530000px;}
.y232{bottom:76.680000px;}
.yb9{bottom:77.130000px;}
.yba{bottom:78.195000px;}
.y14b{bottom:79.680000px;}
.y181{bottom:81.720000px;}
.y103{bottom:82.350000px;}
.y25e{bottom:84.000000px;}
.y167{bottom:84.750000px;}
.y16d{bottom:85.005000px;}
.y130{bottom:87.075000px;}
.y269{bottom:88.680000px;}
.y16f{bottom:89.220000px;}
.y247{bottom:89.400000px;}
.y153{bottom:89.925000px;}
.y1d5{bottom:90.075000px;}
.y1b4{bottom:90.150000px;}
.ybe{bottom:90.225000px;}
.yaf{bottom:91.080000px;}
.yb7{bottom:91.800000px;}
.yb6{bottom:91.980000px;}
.y121{bottom:92.370000px;}
.y22{bottom:92.737500px;}
.y9f{bottom:93.037500px;}
.yfa{bottom:94.020000px;}
.y11e{bottom:97.237500px;}
.y1b1{bottom:99.300000px;}
.y1d2{bottom:99.600000px;}
.y162{bottom:100.800000px;}
.yad{bottom:101.700000px;}
.yb8{bottom:101.970000px;}
.y169{bottom:102.450000px;}
.y209{bottom:102.637500px;}
.y21e{bottom:103.170000px;}
.y233{bottom:104.430000px;}
.y21b{bottom:105.037500px;}
.yb2{bottom:105.975000px;}
.y174{bottom:106.755000px;}
.y9e{bottom:106.837500px;}
.y19a{bottom:108.037500px;}
.y1b5{bottom:108.330000px;}
.y1d6{bottom:108.375000px;}
.y26a{bottom:110.175000px;}
.y120{bottom:111.555000px;}
.ydc{bottom:112.537500px;}
.y166{bottom:113.580000px;}
.yfe{bottom:115.200000px;}
.ybf{bottom:117.045000px;}
.y14c{bottom:117.570000px;}
.y11d{bottom:117.937500px;}
.y129{bottom:118.050000px;}
.yb4{bottom:118.605000px;}
.y260{bottom:119.055000px;}
.y9d{bottom:121.537500px;}
.y179{bottom:121.725000px;}
.yb5{bottom:122.700000px;}
.y1b6{bottom:126.525000px;}
.y1d7{bottom:126.630000px;}
.y9c{bottom:126.937500px;}
.yfc{bottom:127.725000px;}
.y148{bottom:128.437500px;}
.yac{bottom:129.225000px;}
.y123{bottom:130.425000px;}
.y21f{bottom:130.905000px;}
.y26b{bottom:131.625000px;}
.y234{bottom:132.150000px;}
.ydb{bottom:133.237500px;}
.y208{bottom:133.837500px;}
.y25f{bottom:135.555000px;}
.y21a{bottom:135.937500px;}
.y9b{bottom:138.037500px;}
.y11c{bottom:138.637500px;}
.y199{bottom:138.937500px;}
.y21c{bottom:142.200000px;}
.y1b7{bottom:144.705000px;}
.y248{bottom:144.855000px;}
.y1d8{bottom:144.945000px;}
.y251{bottom:145.620000px;}
.y122{bottom:149.625000px;}
.y159{bottom:151.650000px;}
.y9a{bottom:151.830000px;}
.y26c{bottom:153.120000px;}
.yda{bottom:153.930000px;}
.yfb{bottom:154.530000px;}
.y14d{bottom:155.445000px;}
.y220{bottom:158.670000px;}
.y147{bottom:159.345000px;}
.y235{bottom:159.900000px;}
.y262{bottom:162.375000px;}
.y1b8{bottom:162.900000px;}
.y1d9{bottom:163.200000px;}
.y12a{bottom:163.650000px;}
.y207{bottom:164.730000px;}
.ya1{bottom:165.450000px;}
.y99{bottom:165.630000px;}
.y11f{bottom:166.200000px;}
.y125{bottom:166.725000px;}
.y219{bottom:167.130000px;}
.yff{bottom:167.175000px;}
.y17a{bottom:167.700000px;}
.ya0{bottom:168.900000px;}
.y198{bottom:170.175000px;}
.y16{bottom:171.930000px;}
.y26d{bottom:174.570000px;}
.y18{bottom:178.125000px;}
.y261{bottom:178.875000px;}
.y98{bottom:179.430000px;}
.y1b9{bottom:181.050000px;}
.y1d{bottom:181.425000px;}
.y1da{bottom:181.500000px;}
.yd9{bottom:185.130000px;}
.y124{bottom:185.925000px;}
.y221{bottom:186.375000px;}
.y236{bottom:187.650000px;}
.y15a{bottom:190.350000px;}
.y146{bottom:190.545000px;}
.ya2{bottom:190.845000px;}
.y97{bottom:193.245000px;}
.y14e{bottom:193.320000px;}
.y206{bottom:195.930000px;}
.y26e{bottom:196.050000px;}
.y218{bottom:198.030000px;}
.y1ba{bottom:199.245000px;}
.y1db{bottom:199.770000px;}
.y249{bottom:200.325000px;}
.y15{bottom:200.775000px;}
.y197{bottom:201.075000px;}
.y96{bottom:207.075000px;}
.y12b{bottom:209.250000px;}
.y78{bottom:209.775000px;}
.y17b{bottom:213.645000px;}
.y263{bottom:213.930000px;}
.y222{bottom:214.125000px;}
.y237{bottom:215.355000px;}
.yc2{bottom:215.775000px;}
.yd8{bottom:216.075000px;}
.ya3{bottom:216.225000px;}
.y1bb{bottom:217.425000px;}
.y26f{bottom:217.530000px;}
.y1dc{bottom:218.055000px;}
.y100{bottom:219.120000px;}
.y95{bottom:220.875000px;}
.y145{bottom:221.475000px;}
.y205{bottom:226.875000px;}
.y15b{bottom:229.050000px;}
.y217{bottom:229.275000px;}
.y14f{bottom:231.195000px;}
.y196{bottom:232.275000px;}
.y176{bottom:232.905000px;}
.y14{bottom:233.175000px;}
.y127{bottom:233.325000px;}
.y94{bottom:234.675000px;}
.y1bc{bottom:235.620000px;}
.y1dd{bottom:236.325000px;}
.y45{bottom:238.875000px;}
.y270{bottom:238.980000px;}
.y77{bottom:240.975000px;}
.ya4{bottom:241.605000px;}
.y223{bottom:241.875000px;}
.y238{bottom:243.105000px;}
.yd7{bottom:247.275000px;}
.y93{bottom:249.675000px;}
.y126{bottom:252.525000px;}
.y144{bottom:252.675000px;}
.y1bd{bottom:253.800000px;}
.y1de{bottom:254.625000px;}
.y12c{bottom:254.850000px;}
.y24a{bottom:255.825000px;}
.y252{bottom:256.545000px;}
.y92{bottom:256.575000px;}
.y264{bottom:257.250000px;}
.y204{bottom:258.075000px;}
.y17c{bottom:259.605000px;}
.y216{bottom:260.175000px;}
.y271{bottom:260.475000px;}
.y195{bottom:263.175000px;}
.ya5{bottom:267.000000px;}
.y15c{bottom:267.750000px;}
.y44{bottom:268.575000px;}
.y150{bottom:269.070000px;}
.y91{bottom:269.175000px;}
.y224{bottom:269.580000px;}
.y239{bottom:270.870000px;}
.y101{bottom:271.050000px;}
.y76{bottom:271.875000px;}
.y1be{bottom:271.980000px;}
.y1df{bottom:272.895000px;}
.yd6{bottom:278.175000px;}
.y13{bottom:279.375000px;}
.y272{bottom:281.925000px;}
.y143{bottom:283.575000px;}
.y90{bottom:284.175000px;}
.y267{bottom:286.500000px;}
.y203{bottom:288.975000px;}
.y1bf{bottom:290.175000px;}
.y8f{bottom:291.075000px;}
.y1e0{bottom:291.180000px;}
.y215{bottom:291.375000px;}
.ya6{bottom:292.395000px;}
.y194{bottom:294.420000px;}
.y157{bottom:296.775000px;}
.y225{bottom:297.345000px;}
.y43{bottom:298.275000px;}
.y23a{bottom:298.575000px;}
.y265{bottom:300.570000px;}
.y75{bottom:303.075000px;}
.y273{bottom:303.405000px;}
.y8e{bottom:304.875000px;}
.y17d{bottom:305.580000px;}
.y15d{bottom:306.450000px;}
.y151{bottom:306.975000px;}
.y1c0{bottom:308.325000px;}
.y1e1{bottom:309.450000px;}
.y24b{bottom:311.295000px;}
.y253{bottom:312.030000px;}
.y142{bottom:314.775000px;}
.ya7{bottom:317.775000px;}
.y42{bottom:318.975000px;}
.y202{bottom:320.175000px;}
.y214{bottom:322.275000px;}
.y156{bottom:323.775000px;}
.y177{bottom:324.600000px;}
.y274{bottom:324.855000px;}
.y226{bottom:325.080000px;}
.y193{bottom:325.320000px;}
.y12{bottom:325.575000px;}
.y23b{bottom:326.325000px;}
.y1c1{bottom:326.520000px;}
.y1e2{bottom:327.750000px;}
.y74{bottom:333.975000px;}
.yd5{bottom:336.375000px;}
.y41{bottom:339.675000px;}
.ya8{bottom:343.155000px;}
.y266{bottom:343.875000px;}
.y1c2{bottom:344.700000px;}
.y15e{bottom:345.150000px;}
.y141{bottom:345.675000px;}
.y1e3{bottom:346.005000px;}
.y275{bottom:346.350000px;}
.y201{bottom:351.075000px;}
.y227{bottom:352.800000px;}
.y213{bottom:353.475000px;}
.y23c{bottom:354.075000px;}
.y192{bottom:356.520000px;}
.y1c3{bottom:362.895000px;}
.y1e4{bottom:364.305000px;}
.y73{bottom:365.220000px;}
.yf8{bottom:366.705000px;}
.y24c{bottom:366.750000px;}
.yf7{bottom:367.005000px;}
.y254{bottom:367.500000px;}
.y276{bottom:367.800000px;}
.ya9{bottom:368.550000px;}
.y40{bottom:369.420000px;}
.y11{bottom:371.805000px;}
.y140{bottom:376.905000px;}
.y228{bottom:380.550000px;}
.y1c4{bottom:381.075000px;}
.yeb{bottom:381.705000px;}
.y23d{bottom:381.780000px;}
.yf6{bottom:382.320000px;}
.y1e5{bottom:382.575000px;}
.yea{bottom:383.505000px;}
.y15f{bottom:383.850000px;}
.y212{bottom:384.405000px;}
.ye7{bottom:385.320000px;}
.yf5{bottom:386.505000px;}
.y191{bottom:387.450000px;}
.ye1{bottom:387.705000px;}
.y277{bottom:389.280000px;}
.yf4{bottom:391.320000px;}
.yed{bottom:391.905000px;}
.yee{bottom:393.105000px;}
.yf3{bottom:393.705000px;}
.yaa{bottom:393.930000px;}
.yd4{bottom:394.320000px;}
.y72{bottom:396.120000px;}
.y3f{bottom:399.120000px;}
.y1c5{bottom:399.255000px;}
.y1e6{bottom:400.875000px;}
.yf2{bottom:404.205000px;}
.ye9{bottom:406.005000px;}
.y13f{bottom:407.820000px;}
.y229{bottom:408.300000px;}
.y23e{bottom:409.545000px;}
.y278{bottom:410.775000px;}
.y200{bottom:413.205000px;}
.y211{bottom:415.620000px;}
.y1c6{bottom:417.405000px;}
.y10{bottom:418.005000px;}
.y190{bottom:418.650000px;}
.y1e7{bottom:419.130000px;}
.yab{bottom:419.325000px;}
.y24d{bottom:422.250000px;}
.y160{bottom:422.550000px;}
.y255{bottom:422.955000px;}
.y71{bottom:427.320000px;}
.y3e{bottom:428.820000px;}
.y279{bottom:432.225000px;}
.y1c7{bottom:435.600000px;}
.y22a{bottom:436.005000px;}
.y23f{bottom:437.280000px;}
.y1e8{bottom:437.430000px;}
.y13e{bottom:439.005000px;}
.y1ff{bottom:444.420000px;}
.yf1{bottom:446.505000px;}
.y18f{bottom:449.550000px;}
.yd3{bottom:452.505000px;}
.y27a{bottom:453.705000px;}
.y1c8{bottom:453.780000px;}
.y1e9{bottom:455.700000px;}
.y11b{bottom:457.005000px;}
.y70{bottom:458.205000px;}
.y3d{bottom:458.505000px;}
.y161{bottom:461.250000px;}
.ye5{bottom:463.605000px;}
.y22b{bottom:463.770000px;}
.yf{bottom:464.205000px;}
.y240{bottom:465.000000px;}
.y13d{bottom:469.920000px;}
.y257{bottom:470.205000px;}
.ye3{bottom:470.820000px;}
.y8c{bottom:471.420000px;}
.y1c9{bottom:471.975000px;}
.y1ea{bottom:474.000000px;}
.y27b{bottom:475.155000px;}
.y1fe{bottom:475.320000px;}
.yef{bottom:475.905000px;}
.y210{bottom:477.705000px;}
.y8d{bottom:478.320000px;}
.y18e{bottom:480.750000px;}
.y256{bottom:486.705000px;}
.y11a{bottom:487.905000px;}
.y3c{bottom:488.205000px;}
.y6f{bottom:489.405000px;}
.y1ca{bottom:490.155000px;}
.yec{bottom:490.605000px;}
.y22c{bottom:491.505000px;}
.y1eb{bottom:492.270000px;}
.y241{bottom:492.750000px;}
.y27c{bottom:496.650000px;}
.y13c{bottom:501.120000px;}
.y8b{bottom:502.305000px;}
.y1fd{bottom:506.505000px;}
.ydd{bottom:508.005000px;}
.y1cb{bottom:508.350000px;}
.y20f{bottom:508.605000px;}
.ye{bottom:510.405000px;}
.y1ec{bottom:510.555000px;}
.y18d{bottom:511.695000px;}
.y3b{bottom:517.905000px;}
.y27d{bottom:518.100000px;}
.y119{bottom:519.105000px;}
.y22d{bottom:519.225000px;}
.y6e{bottom:520.320000px;}
.y242{bottom:520.500000px;}
.y1cc{bottom:526.500000px;}
.y1ed{bottom:528.825000px;}
.y13b{bottom:532.050000px;}
.y24e{bottom:533.175000px;}
.y8a{bottom:533.550000px;}
.y258{bottom:533.925000px;}
.y1fc{bottom:537.450000px;}
.y27e{bottom:539.580000px;}
.y20e{bottom:539.850000px;}
.y18c{bottom:542.895000px;}
.y1cd{bottom:544.680000px;}
.y22e{bottom:546.975000px;}
.y1ee{bottom:547.125000px;}
.y3a{bottom:547.650000px;}
.y243{bottom:548.205000px;}
.y118{bottom:550.050000px;}
.y6d{bottom:551.550000px;}
.yd{bottom:559.350000px;}
.y1b0{bottom:559.650000px;}
.y27f{bottom:561.075000px;}
.y1ce{bottom:562.875000px;}
.y13a{bottom:563.250000px;}
.y89{bottom:564.450000px;}
.y1ef{bottom:565.425000px;}
.yd2{bottom:568.650000px;}
.y20d{bottom:570.750000px;}
.y18b{bottom:573.795000px;}
.y22f{bottom:574.725000px;}
.y244{bottom:575.955000px;}
.y39{bottom:577.350000px;}
.y1cf{bottom:581.055000px;}
.y117{bottom:581.250000px;}
.y6c{bottom:582.450000px;}
.y280{bottom:582.525000px;}
.y1f0{bottom:583.680000px;}
.y25d{bottom:585.600000px;}
.y24f{bottom:588.675000px;}
.y259{bottom:589.380000px;}
.y139{bottom:590.250000px;}
.y1af{bottom:590.550000px;}
.y149{bottom:591.000000px;}
.ye4{bottom:594.450000px;}
.y88{bottom:595.650000px;}
.y1d0{bottom:599.250000px;}
.y1fb{bottom:599.550000px;}
.y20c{bottom:601.950000px;}
.y1f1{bottom:601.980000px;}
.y230{bottom:602.430000px;}
.y245{bottom:603.705000px;}
.y281{bottom:604.005000px;}
.y18a{bottom:604.995000px;}
.y38{bottom:607.050000px;}
.y116{bottom:612.150000px;}
.y6b{bottom:613.650000px;}
.yc{bottom:618.450000px;}
.y1ae{bottom:621.750000px;}
.y282{bottom:625.455000px;}
.y87{bottom:626.550000px;}
.y1fa{bottom:630.750000px;}
.y20b{bottom:632.850000px;}
.y189{bottom:635.925000px;}
.y37{bottom:636.750000px;}
.y1a1{bottom:640.650000px;}
.y115{bottom:643.350000px;}
.y6a{bottom:644.550000px;}
.y283{bottom:646.950000px;}
.y1ad{bottom:652.650000px;}
.yd1{bottom:657.750000px;}
.y1f9{bottom:661.650000px;}
.y86{bottom:663.750000px;}
.y20a{bottom:664.050000px;}
.y36{bottom:666.450000px;}
.y155{bottom:666.750000px;}
.y188{bottom:667.125000px;}
.y1a0{bottom:667.650000px;}
.y5b{bottom:667.950000px;}
.y1ab{bottom:670.950000px;}
.y114{bottom:674.250000px;}
.y69{bottom:675.750000px;}
.yb{bottom:677.850000px;}
.y1a8{bottom:679.950000px;}
.y1ac{bottom:683.850000px;}
.y58{bottom:684.750000px;}
.yd0{bottom:688.650000px;}
.y1f8{bottom:692.850000px;}
.y154{bottom:693.780000px;}
.y158{bottom:694.200000px;}
.y85{bottom:694.680000px;}
.y113{bottom:694.995000px;}
.y35{bottom:696.180000px;}
.y187{bottom:698.025000px;}
.y1a9{bottom:701.880000px;}
.yf9{bottom:705.300000px;}
.y68{bottom:706.695000px;}
.y1aa{bottom:710.880000px;}
.ycf{bottom:719.880000px;}
.y1f7{bottom:723.780000px;}
.y34{bottom:725.880000px;}
.y112{bottom:726.195000px;}
.y186{bottom:729.270000px;}
.y19b{bottom:735.270000px;}
.ya{bottom:737.280000px;}
.y67{bottom:737.880000px;}
.y57{bottom:739.680000px;}
.yce{bottom:750.780000px;}
.y1f6{bottom:754.980000px;}
.y33{bottom:755.580000px;}
.y84{bottom:756.780000px;}
.y111{bottom:757.080000px;}
.y185{bottom:760.170000px;}
.y1c{bottom:768.000000px;}
.y66{bottom:768.780000px;}
.y17{bottom:770.100000px;}
.ycd{bottom:781.980000px;}
.y56{bottom:784.980000px;}
.y32{bottom:785.295000px;}
.y1f5{bottom:785.880000px;}
.y110{bottom:788.295000px;}
.y184{bottom:791.370000px;}
.y83{bottom:793.980000px;}
.y9{bottom:796.695000px;}
.y65{bottom:799.980000px;}
.ycc{bottom:812.880000px;}
.y31{bottom:814.995000px;}
.y55{bottom:815.880000px;}
.y1a{bottom:817.080000px;}
.y1f{bottom:818.295000px;}
.y10f{bottom:819.195000px;}
.y82{bottom:824.880000px;}
.y64{bottom:830.880000px;}
.y51{bottom:832.695000px;}
.y25c{bottom:839.880000px;}
.ycb{bottom:844.080000px;}
.y30{bottom:844.695000px;}
.y1f4{bottom:847.980000px;}
.y10e{bottom:850.380000px;}
.y8{bottom:856.080000px;}
.y63{bottom:862.125000px;}
.y25b{bottom:871.125000px;}
.y2f{bottom:874.425000px;}
.yca{bottom:875.025000px;}
.y1f3{bottom:879.225000px;}
.y10d{bottom:881.325000px;}
.y19{bottom:882.825000px;}
.y1e{bottom:883.725000px;}
.y80{bottom:887.025000px;}
.y62{bottom:893.025000px;}
.y81{bottom:893.925000px;}
.y25a{bottom:902.025000px;}
.y2e{bottom:904.125000px;}
.yc9{bottom:906.225000px;}
.y10c{bottom:912.525000px;}
.y7{bottom:917.025000px;}
.y7f{bottom:918.225000px;}
.y61{bottom:924.225000px;}
.y4f{bottom:926.025000px;}
.y138{bottom:933.225000px;}
.y2d{bottom:933.825000px;}
.yc8{bottom:937.125000px;}
.y10b{bottom:943.425000px;}
.y1a7{bottom:946.125000px;}
.y7e{bottom:949.125000px;}
.y60{bottom:955.125000px;}
.y4e{bottom:960.825000px;}
.y19f{bottom:961.125000px;}
.y2c{bottom:963.525000px;}
.y137{bottom:964.125000px;}
.yc7{bottom:968.325000px;}
.y10a{bottom:974.625000px;}
.y1a6{bottom:977.325000px;}
.y6{bottom:977.925000px;}
.y7c{bottom:980.325000px;}
.y5f{bottom:986.325000px;}
.y7d{bottom:987.225000px;}
.y4d{bottom:992.025000px;}
.y2b{bottom:993.225000px;}
.y136{bottom:995.325000px;}
.yc6{bottom:999.225000px;}
.y109{bottom:1005.525000px;}
.y1a5{bottom:1008.225000px;}
.y49{bottom:1008.825000px;}
.y7b{bottom:1011.225000px;}
.y5e{bottom:1017.225000px;}
.y2a{bottom:1022.955000px;}
.y135{bottom:1026.255000px;}
.yc5{bottom:1030.455000px;}
.y108{bottom:1036.755000px;}
.y5{bottom:1038.870000px;}
.y1a4{bottom:1039.455000px;}
.y7a{bottom:1042.455000px;}
.y5d{bottom:1048.455000px;}
.y19e{bottom:1054.170000px;}
.y134{bottom:1057.455000px;}
.y29{bottom:1057.755000px;}
.yc4{bottom:1061.355000px;}
.y107{bottom:1067.670000px;}
.y1a3{bottom:1070.370000px;}
.y79{bottom:1073.370000px;}
.y5c{bottom:1079.355000px;}
.y19d{bottom:1085.070000px;}
.y133{bottom:1088.370000px;}
.y48{bottom:1089.570000px;}
.yc3{bottom:1092.255000px;}
.y4{bottom:1098.255000px;}
.y106{bottom:1098.870000px;}
.y1a2{bottom:1101.255000px;}
.y28{bottom:1103.355000px;}
.y47{bottom:1110.255000px;}
.y132{bottom:1119.255000px;}
.y105{bottom:1129.755000px;}
.y27{bottom:1138.455000px;}
.y46{bottom:1142.070000px;}
.y131{bottom:1151.070000px;}
.y3{bottom:1160.955000px;}
.y26{bottom:1165.755000px;}
.h23{height:11.700000px;}
.h21{height:12.000000px;}
.h31{height:12.900000px;}
.h22{height:28.705078px;}
.h16{height:30.900000px;}
.h32{height:32.273438px;}
.h1b{height:35.500781px;}
.h1a{height:43.031250px;}
.he{height:43.057617px;}
.h3{height:45.000000px;}
.h35{height:47.742188px;}
.h36{height:47.891382px;}
.h2a{height:48.410156px;}
.h2b{height:48.544629px;}
.h20{height:51.337500px;}
.h34{height:53.709961px;}
.h1c{height:53.789062px;}
.h3a{height:53.859155px;}
.h18{height:54.937500px;}
.h26{height:59.167969px;}
.h27{height:59.302441px;}
.h37{height:59.677734px;}
.h3d{height:59.826929px;}
.h12{height:61.664062px;}
.h1e{height:63.258398px;}
.h1f{height:63.407593px;}
.h2{height:64.546875px;}
.h2d{height:65.645508px;}
.h2e{height:65.794702px;}
.hd{height:67.394531px;}
.h13{height:70.631250px;}
.h19{height:73.722656px;}
.h15{height:76.837500px;}
.hc{height:78.626953px;}
.hf{height:86.115234px;}
.h6{height:89.859375px;}
.h17{height:93.322500px;}
.h14{height:101.091797px;}
.h10{height:112.324219px;}
.hb{height:116.737500px;}
.h5{height:133.957031px;}
.h11{height:150.609375px;}
.h25{height:156.907969px;}
.h4{height:172.230469px;}
.h8{height:214.734375px;}
.h9{height:214.883496px;}
.h7{height:232.800000px;}
.ha{height:235.800000px;}
.h28{height:276.600000px;}
.h24{height:285.600000px;}
.h29{height:327.900000px;}
.h3b{height:386.100000px;}
.h1d{height:441.300000px;}
.h2c{height:483.600000px;}
.h33{height:629.700000px;}
.h38{height:632.400000px;}
.h39{height:637.800000px;}
.h3c{height:700.800000px;}
.h2f{height:893.100000px;}
.h30{height:893.250000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w1b{width:36.900000px;}
.w1a{width:36.937500px;}
.w15{width:37.200000px;}
.w22{width:38.100000px;}
.w18{width:38.437500px;}
.w19{width:39.600000px;}
.w16{width:40.800000px;}
.w17{width:41.100000px;}
.w1c{width:45.637500px;}
.w13{width:49.800000px;}
.w14{width:49.837500px;}
.w9{width:156.330000px;}
.wb{width:177.930000px;}
.wa{width:177.975000px;}
.w8{width:199.575000px;}
.w7{width:214.875000px;}
.wc{width:237.075000px;}
.we{width:237.375000px;}
.wd{width:237.675000px;}
.w12{width:257.175000px;}
.w25{width:323.400000px;}
.w24{width:382.500000px;}
.w23{width:382.800000px;}
.w26{width:463.200000px;}
.w6{width:497.250000px;}
.w4{width:600.000000px;}
.w3{width:600.300000px;}
.w1d{width:699.900000px;}
.w1e{width:701.400000px;}
.wf{width:712.125000px;}
.w11{width:764.400000px;}
.w5{width:892.799985px;}
.w10{width:893.099973px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.w21{width:1262.699981px;}
.w1f{width:1262.700000px;}
.w20{width:1263.000000px;}
.x0{left:0.000000px;}
.x1c{left:7.800000px;}
.xa{left:10.830000px;}
.xbb{left:12.675000px;}
.xb0{left:16.305000px;}
.xaf{left:17.400000px;}
.xa1{left:18.900000px;}
.xa6{left:19.987500px;}
.x82{left:22.275000px;}
.xa3{left:23.662500px;}
.x7{left:25.575000px;}
.x91{left:27.037500px;}
.xc4{left:28.470000px;}
.x6f{left:29.925000px;}
.xa9{left:31.837500px;}
.x45{left:34.012500px;}
.x6e{left:36.675000px;}
.x9e{left:39.975000px;}
.xc7{left:41.325000px;}
.x2f{left:42.750000px;}
.xc3{left:44.145000px;}
.xa4{left:46.612500px;}
.xb7{left:47.850000px;}
.xa5{left:49.650000px;}
.x2e{left:50.737500px;}
.x93{left:51.975000px;}
.xad{left:53.280000px;}
.xac{left:54.675000px;}
.x84{left:56.130000px;}
.xbe{left:58.012500px;}
.xa8{left:59.662500px;}
.xba{left:61.312500px;}
.x6d{left:62.580000px;}
.x2c{left:66.300000px;}
.xae{left:67.425000px;}
.x83{left:68.700000px;}
.x9f{left:70.012500px;}
.xa7{left:71.437500px;}
.xc5{left:72.825000px;}
.x2d{left:74.662500px;}
.x92{left:77.055000px;}
.xa0{left:78.150000px;}
.xb9{left:79.620000px;}
.xaa{left:81.000000px;}
.x66{left:82.605000px;}
.xa2{left:84.300000px;}
.xbd{left:88.275000px;}
.xb8{left:89.955000px;}
.xc8{left:93.225000px;}
.xbc{left:95.370000px;}
.xca{left:96.855000px;}
.x1b{left:98.437500px;}
.x70{left:103.830000px;}
.x3{left:106.237487px;}
.xc9{left:111.030000px;}
.x2a{left:112.237487px;}
.x5e{left:123.600000px;}
.xcc{left:124.725000px;}
.x19{left:126.637487px;}
.x30{left:128.325000px;}
.x5b{left:129.645000px;}
.x71{left:132.825000px;}
.x67{left:135.045000px;}
.x9d{left:136.770000px;}
.xb{left:146.700000px;}
.x6{left:148.800000px;}
.x85{left:151.050000px;}
.x31{left:157.395000px;}
.x2b{left:160.244987px;}
.x72{left:161.820000px;}
.xcb{left:166.845000px;}
.x1e{left:170.175000px;}
.x48{left:173.475000px;}
.x62{left:177.600000px;}
.x86{left:178.770000px;}
.xc0{left:179.925000px;}
.xb1{left:181.275000px;}
.xb2{left:183.450000px;}
.x32{left:186.495000px;}
.xb3{left:188.505000px;}
.x73{left:190.800000px;}
.xc1{left:194.520000px;}
.xb4{left:195.795000px;}
.xb5{left:196.950000px;}
.x4e{left:204.075000px;}
.x87{left:206.430000px;}
.xc{left:208.274987px;}
.x8{left:210.374987px;}
.x33{left:215.595000px;}
.x74{left:219.795000px;}
.x50{left:234.075000px;}
.x34{left:244.695000px;}
.xcd{left:247.350000px;}
.x75{left:248.775000px;}
.x11{left:251.774987px;}
.xd{left:261.374987px;}
.x9{left:263.474987px;}
.xc2{left:270.870000px;}
.x35{left:273.750000px;}
.x76{left:277.770000px;}
.x94{left:285.420000px;}
.x49{left:290.220000px;}
.x28{left:292.319973px;}
.x5f{left:295.650000px;}
.x1f{left:298.020000px;}
.xe{left:300.150000px;}
.x14{left:301.319987px;}
.x36{left:302.850000px;}
.x77{left:306.750000px;}
.x51{left:315.720000px;}
.x88{left:317.175000px;}
.x29{left:322.319987px;}
.x37{left:331.950000px;}
.x22{left:335.520000px;}
.xb6{left:340.470000px;}
.x89{left:344.880000px;}
.x4b{left:346.020000px;}
.x17{left:348.404987px;}
.x4{left:351.719987px;}
.x38{left:361.050000px;}
.x78{left:364.680000px;}
.x1a{left:366.404987px;}
.xf{left:369.119985px;}
.x8a{left:372.570000px;}
.x52{left:378.120000px;}
.x5c{left:382.905000px;}
.x39{left:390.150000px;}
.x79{left:393.675000px;}
.x13{left:396.119987px;}
.x15{left:400.649987px;}
.x5{left:401.849987px;}
.x4f{left:404.550000px;}
.x12{left:413.549987px;}
.x3a{left:419.220000px;}
.x69{left:423.420000px;}
.x8b{left:427.950000px;}
.x95{left:432.330000px;}
.x26{left:433.349973px;}
.x68{left:435.525000px;}
.x27{left:439.349987px;}
.x10{left:448.349985px;}
.x7a{left:451.650000px;}
.x20{left:454.350000px;}
.x8c{left:455.625000px;}
.x2{left:457.049987px;}
.x63{left:458.250000px;}
.x18{left:462.449987px;}
.x53{left:464.250000px;}
.xab{left:465.300000px;}
.x5d{left:468.750000px;}
.xbf{left:470.100000px;}
.x3b{left:477.420000px;}
.x7b{left:480.645000px;}
.x16{left:484.049987px;}
.x60{left:488.849987px;}
.x54{left:493.650000px;}
.x3c{left:506.520000px;}
.x7c{left:509.625000px;}
.x8d{left:511.020000px;}
.x47{left:520.095000px;}
.xc6{left:521.400000px;}
.x3d{left:535.575000px;}
.x7d{left:538.620000px;}
.x96{left:543.330000px;}
.x6b{left:547.050000px;}
.x57{left:552.195000px;}
.x3e{left:564.675000px;}
.x8e{left:566.400000px;}
.x7e{left:567.600000px;}
.x6a{left:569.895000px;}
.x23{left:573.195000px;}
.x64{left:578.670000px;}
.x55{left:581.895000px;}
.x97{left:584.475000px;}
.x6c{left:586.305000px;}
.x46{left:589.995000px;}
.x3f{left:593.775000px;}
.x1d{left:595.695000px;}
.x65{left:600.570000px;}
.x4a{left:606.780000px;}
.x24{left:615.779973px;}
.x25{left:621.794987px;}
.x40{left:622.875000px;}
.x7f{left:625.575000px;}
.x21{left:632.625000px;}
.x4c{left:636.525000px;}
.x99{left:642.149981px;}
.x8f{left:649.455000px;}
.x41{left:651.975000px;}
.x80{left:654.570000px;}
.x58{left:668.325000px;}
.x90{left:677.145000px;}
.x42{left:681.045000px;}
.x81{left:683.550000px;}
.x4d{left:694.425000px;}
.x43{left:710.145000px;}
.x56{left:724.725000px;}
.x44{left:739.245000px;}
.x9c{left:755.069987px;}
.x59{left:756.270000px;}
.x5a{left:783.870000px;}
.x9b{left:789.869987px;}
.x1{left:798.869987px;}
.x61{left:808.469987px;}
.x9a{left:1075.755000px;}
.x98{left:1160.069981px;}
@media print{
.v4{vertical-align:-42.826667pt;}
.v5{vertical-align:-7.040000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.533333pt;}
.v2{vertical-align:64.213333pt;}
.v3{vertical-align:86.880000pt;}
.ls3{letter-spacing:-1.066667pt;}
.ls12{letter-spacing:-1.045333pt;}
.ls19{letter-spacing:-0.682667pt;}
.ls18{letter-spacing:-0.458667pt;}
.ls1d{letter-spacing:-0.448000pt;}
.ls13{letter-spacing:-0.341333pt;}
.ls17{letter-spacing:-0.266667pt;}
.ls1e{letter-spacing:-0.181333pt;}
.lsc{letter-spacing:-0.096000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.021333pt;}
.ls16{letter-spacing:0.023467pt;}
.ls6{letter-spacing:0.053333pt;}
.ls8{letter-spacing:0.074667pt;}
.ls4{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.117333pt;}
.ls15{letter-spacing:0.137600pt;}
.ls1f{letter-spacing:0.144000pt;}
.ls9{letter-spacing:0.156800pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.170667pt;}
.ls14{letter-spacing:0.186667pt;}
.ls20{letter-spacing:0.197333pt;}
.ls11{letter-spacing:0.226133pt;}
.lsf{letter-spacing:0.298667pt;}
.ls7{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.330667pt;}
.lsb{letter-spacing:0.341333pt;}
.lsd{letter-spacing:0.362667pt;}
.lsa{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.533333pt;}
.ls10{letter-spacing:0.544000pt;}
.ls1c{letter-spacing:1.013333pt;}
.ls1a{letter-spacing:1.066667pt;}
.ls22{letter-spacing:122.650667pt;}
.ws0{word-spacing:-85.333333pt;}
.ws5{word-spacing:-64.000000pt;}
.ws1e{word-spacing:-22.112000pt;}
.ws1{word-spacing:-20.053333pt;}
.wsa{word-spacing:-16.384000pt;}
.ws1d{word-spacing:-16.170667pt;}
.ws6{word-spacing:-16.021333pt;}
.ws4{word-spacing:-16.000000pt;}
.ws18{word-spacing:-14.954667pt;}
.ws7{word-spacing:-14.933333pt;}
.ws17{word-spacing:-14.700000pt;}
.ws16{word-spacing:-14.666667pt;}
.ws1c{word-spacing:-13.288800pt;}
.ws1b{word-spacing:-13.258667pt;}
.ws9{word-spacing:-12.806667pt;}
.ws8{word-spacing:-12.776533pt;}
.ws1a{word-spacing:-12.033333pt;}
.ws19{word-spacing:-12.000000pt;}
.ws1f{word-spacing:-10.848000pt;}
.ws3{word-spacing:-10.666667pt;}
.ws11{word-spacing:-6.816000pt;}
.wsc{word-spacing:-6.634667pt;}
.ws10{word-spacing:-6.592000pt;}
.wsf{word-spacing:-6.570667pt;}
.wse{word-spacing:-6.389333pt;}
.ws12{word-spacing:-6.346667pt;}
.wsd{word-spacing:-6.272000pt;}
.wsb{word-spacing:-6.176000pt;}
.ws2{word-spacing:0.000000pt;}
.ws20{word-spacing:86.661333pt;}
.ws14{word-spacing:180.837333pt;}
.ws15{word-spacing:180.890667pt;}
.ws13{word-spacing:195.664000pt;}
._d{margin-left:-2.206000pt;}
._1{margin-left:-0.960667pt;}
._0{width:0.938667pt;}
._5{width:2.048000pt;}
._6{width:3.194667pt;}
._1e{width:4.085333pt;}
._c{width:4.992000pt;}
._2{width:6.016000pt;}
._3{width:6.976000pt;}
._4{width:8.549333pt;}
._a{width:9.604667pt;}
._9{width:10.523333pt;}
._8{width:11.453333pt;}
._7{width:12.736000pt;}
._b{width:14.464000pt;}
._1a{width:16.960000pt;}
._25{width:17.856000pt;}
._1b{width:18.773333pt;}
._19{width:20.544000pt;}
._10{width:22.230000pt;}
._e{width:23.360000pt;}
._f{width:24.250667pt;}
._1d{width:25.243333pt;}
._24{width:26.644000pt;}
._23{width:60.405333pt;}
._28{width:61.941333pt;}
._27{width:74.314667pt;}
._22{width:78.544000pt;}
._2a{width:96.138667pt;}
._20{width:120.618667pt;}
._15{width:124.357333pt;}
._21{width:137.226667pt;}
._14{width:138.970667pt;}
._26{width:145.920000pt;}
._16{width:146.864000pt;}
._2c{width:151.770667pt;}
._13{width:153.637333pt;}
._29{width:154.720000pt;}
._1c{width:165.690667pt;}
._18{width:177.397067pt;}
._1f{width:179.093333pt;}
._12{width:183.024000pt;}
._11{width:190.330667pt;}
._2b{width:192.266667pt;}
._17{width:1458.560000pt;}
.fsf{font-size:32.000000pt;}
.fsc{font-size:35.200000pt;}
.fsb{font-size:42.666667pt;}
.fs12{font-size:42.800000pt;}
.fs8{font-size:48.000000pt;}
.fs11{font-size:48.133333pt;}
.fs1{font-size:53.333333pt;}
.fs13{font-size:53.466667pt;}
.fsd{font-size:56.533333pt;}
.fse{font-size:56.666667pt;}
.fs6{font-size:58.666667pt;}
.fs10{font-size:58.800000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs4{font-size:85.333333pt;}
.fs9{font-size:96.000000pt;}
.fsa{font-size:106.666667pt;}
.fs3{font-size:149.333333pt;}
.fs2{font-size:192.000000pt;}
.fs5{font-size:192.133333pt;}
.y1b{bottom:-16.640000pt;}
.y20{bottom:-13.693333pt;}
.y25{bottom:-10.666667pt;}
.ye0{bottom:-1.053333pt;}
.y0{bottom:0.000000pt;}
.yf0{bottom:2.413333pt;}
.ye8{bottom:2.653333pt;}
.ye2{bottom:2.666667pt;}
.ye6{bottom:2.680000pt;}
.y19c{bottom:3.733333pt;}
.ybc{bottom:8.266667pt;}
.y16b{bottom:8.493333pt;}
.y152{bottom:9.733333pt;}
.y4c{bottom:10.133333pt;}
.y12f{bottom:12.000000pt;}
.y180{bottom:12.466667pt;}
.y50{bottom:12.533333pt;}
.y54{bottom:12.786667pt;}
.y21{bottom:13.333333pt;}
.y5a{bottom:14.173333pt;}
.y284{bottom:14.626667pt;}
.ydf{bottom:17.333333pt;}
.y104{bottom:19.173333pt;}
.y1f2{bottom:19.666667pt;}
.y246{bottom:19.800000pt;}
.y1d1{bottom:19.866667pt;}
.y24{bottom:20.300000pt;}
.ybd{bottom:26.600000pt;}
.y168{bottom:26.626667pt;}
.y4b{bottom:28.560000pt;}
.y12e{bottom:29.093333pt;}
.y17f{bottom:30.360000pt;}
.y59{bottom:33.626667pt;}
.y170{bottom:34.600000pt;}
.ybb{bottom:35.040000pt;}
.y164{bottom:35.240000pt;}
.yde{bottom:35.773333pt;}
.y163{bottom:35.893333pt;}
.y14a{bottom:37.173333pt;}
.y16c{bottom:38.200000pt;}
.y102{bottom:39.000000pt;}
.y1d3{bottom:39.633333pt;}
.y231{bottom:39.800000pt;}
.y1b2{bottom:39.833333pt;}
.y250{bottom:39.866667pt;}
.y175{bottom:39.960000pt;}
.y53{bottom:40.293333pt;}
.yc1{bottom:43.893333pt;}
.y12d{bottom:46.200000pt;}
.y4a{bottom:46.973333pt;}
.y17e{bottom:48.266667pt;}
.y2{bottom:50.166667pt;}
.y183{bottom:50.433333pt;}
.y23{bottom:50.700000pt;}
.yae{bottom:51.533333pt;}
.yb3{bottom:52.133333pt;}
.y165{bottom:52.440000pt;}
.yb1{bottom:52.760000pt;}
.y16a{bottom:53.440000pt;}
.yc0{bottom:54.973333pt;}
.yfd{bottom:56.240000pt;}
.yb0{bottom:56.626667pt;}
.y268{bottom:59.760000pt;}
.y1d4{bottom:63.826667pt;}
.y1b3{bottom:63.960000pt;}
.y128{bottom:64.400000pt;}
.y16e{bottom:64.626667pt;}
.y1{bottom:65.366667pt;}
.y171{bottom:65.466667pt;}
.y182{bottom:65.633333pt;}
.y173{bottom:66.106667pt;}
.y172{bottom:66.293333pt;}
.y21d{bottom:67.066667pt;}
.y178{bottom:67.360000pt;}
.y52{bottom:68.026667pt;}
.y232{bottom:68.160000pt;}
.yb9{bottom:68.560000pt;}
.yba{bottom:69.506667pt;}
.y14b{bottom:70.826667pt;}
.y181{bottom:72.640000pt;}
.y103{bottom:73.200000pt;}
.y25e{bottom:74.666667pt;}
.y167{bottom:75.333333pt;}
.y16d{bottom:75.560000pt;}
.y130{bottom:77.400000pt;}
.y269{bottom:78.826667pt;}
.y16f{bottom:79.306667pt;}
.y247{bottom:79.466667pt;}
.y153{bottom:79.933333pt;}
.y1d5{bottom:80.066667pt;}
.y1b4{bottom:80.133333pt;}
.ybe{bottom:80.200000pt;}
.yaf{bottom:80.960000pt;}
.yb7{bottom:81.600000pt;}
.yb6{bottom:81.760000pt;}
.y121{bottom:82.106667pt;}
.y22{bottom:82.433333pt;}
.y9f{bottom:82.700000pt;}
.yfa{bottom:83.573333pt;}
.y11e{bottom:86.433333pt;}
.y1b1{bottom:88.266667pt;}
.y1d2{bottom:88.533333pt;}
.y162{bottom:89.600000pt;}
.yad{bottom:90.400000pt;}
.yb8{bottom:90.640000pt;}
.y169{bottom:91.066667pt;}
.y209{bottom:91.233333pt;}
.y21e{bottom:91.706667pt;}
.y233{bottom:92.826667pt;}
.y21b{bottom:93.366667pt;}
.yb2{bottom:94.200000pt;}
.y174{bottom:94.893333pt;}
.y9e{bottom:94.966667pt;}
.y19a{bottom:96.033333pt;}
.y1b5{bottom:96.293333pt;}
.y1d6{bottom:96.333333pt;}
.y26a{bottom:97.933333pt;}
.y120{bottom:99.160000pt;}
.ydc{bottom:100.033333pt;}
.y166{bottom:100.960000pt;}
.yfe{bottom:102.400000pt;}
.ybf{bottom:104.040000pt;}
.y14c{bottom:104.506667pt;}
.y11d{bottom:104.833333pt;}
.y129{bottom:104.933333pt;}
.yb4{bottom:105.426667pt;}
.y260{bottom:105.826667pt;}
.y9d{bottom:108.033333pt;}
.y179{bottom:108.200000pt;}
.yb5{bottom:109.066667pt;}
.y1b6{bottom:112.466667pt;}
.y1d7{bottom:112.560000pt;}
.y9c{bottom:112.833333pt;}
.yfc{bottom:113.533333pt;}
.y148{bottom:114.166667pt;}
.yac{bottom:114.866667pt;}
.y123{bottom:115.933333pt;}
.y21f{bottom:116.360000pt;}
.y26b{bottom:117.000000pt;}
.y234{bottom:117.466667pt;}
.ydb{bottom:118.433333pt;}
.y208{bottom:118.966667pt;}
.y25f{bottom:120.493333pt;}
.y21a{bottom:120.833333pt;}
.y9b{bottom:122.700000pt;}
.y11c{bottom:123.233333pt;}
.y199{bottom:123.500000pt;}
.y21c{bottom:126.400000pt;}
.y1b7{bottom:128.626667pt;}
.y248{bottom:128.760000pt;}
.y1d8{bottom:128.840000pt;}
.y251{bottom:129.440000pt;}
.y122{bottom:133.000000pt;}
.y159{bottom:134.800000pt;}
.y9a{bottom:134.960000pt;}
.y26c{bottom:136.106667pt;}
.yda{bottom:136.826667pt;}
.yfb{bottom:137.360000pt;}
.y14d{bottom:138.173333pt;}
.y220{bottom:141.040000pt;}
.y147{bottom:141.640000pt;}
.y235{bottom:142.133333pt;}
.y262{bottom:144.333333pt;}
.y1b8{bottom:144.800000pt;}
.y1d9{bottom:145.066667pt;}
.y12a{bottom:145.466667pt;}
.y207{bottom:146.426667pt;}
.ya1{bottom:147.066667pt;}
.y99{bottom:147.226667pt;}
.y11f{bottom:147.733333pt;}
.y125{bottom:148.200000pt;}
.y219{bottom:148.560000pt;}
.yff{bottom:148.600000pt;}
.y17a{bottom:149.066667pt;}
.ya0{bottom:150.133333pt;}
.y198{bottom:151.266667pt;}
.y16{bottom:152.826667pt;}
.y26d{bottom:155.173333pt;}
.y18{bottom:158.333333pt;}
.y261{bottom:159.000000pt;}
.y98{bottom:159.493333pt;}
.y1b9{bottom:160.933333pt;}
.y1d{bottom:161.266667pt;}
.y1da{bottom:161.333333pt;}
.yd9{bottom:164.560000pt;}
.y124{bottom:165.266667pt;}
.y221{bottom:165.666667pt;}
.y236{bottom:166.800000pt;}
.y15a{bottom:169.200000pt;}
.y146{bottom:169.373333pt;}
.ya2{bottom:169.640000pt;}
.y97{bottom:171.773333pt;}
.y14e{bottom:171.840000pt;}
.y206{bottom:174.160000pt;}
.y26e{bottom:174.266667pt;}
.y218{bottom:176.026667pt;}
.y1ba{bottom:177.106667pt;}
.y1db{bottom:177.573333pt;}
.y249{bottom:178.066667pt;}
.y15{bottom:178.466667pt;}
.y197{bottom:178.733333pt;}
.y96{bottom:184.066667pt;}
.y12b{bottom:186.000000pt;}
.y78{bottom:186.466667pt;}
.y17b{bottom:189.906667pt;}
.y263{bottom:190.160000pt;}
.y222{bottom:190.333333pt;}
.y237{bottom:191.426667pt;}
.yc2{bottom:191.800000pt;}
.yd8{bottom:192.066667pt;}
.ya3{bottom:192.200000pt;}
.y1bb{bottom:193.266667pt;}
.y26f{bottom:193.360000pt;}
.y1dc{bottom:193.826667pt;}
.y100{bottom:194.773333pt;}
.y95{bottom:196.333333pt;}
.y145{bottom:196.866667pt;}
.y205{bottom:201.666667pt;}
.y15b{bottom:203.600000pt;}
.y217{bottom:203.800000pt;}
.y14f{bottom:205.506667pt;}
.y196{bottom:206.466667pt;}
.y176{bottom:207.026667pt;}
.y14{bottom:207.266667pt;}
.y127{bottom:207.400000pt;}
.y94{bottom:208.600000pt;}
.y1bc{bottom:209.440000pt;}
.y1dd{bottom:210.066667pt;}
.y45{bottom:212.333333pt;}
.y270{bottom:212.426667pt;}
.y77{bottom:214.200000pt;}
.ya4{bottom:214.760000pt;}
.y223{bottom:215.000000pt;}
.y238{bottom:216.093333pt;}
.yd7{bottom:219.800000pt;}
.y93{bottom:221.933333pt;}
.y126{bottom:224.466667pt;}
.y144{bottom:224.600000pt;}
.y1bd{bottom:225.600000pt;}
.y1de{bottom:226.333333pt;}
.y12c{bottom:226.533333pt;}
.y24a{bottom:227.400000pt;}
.y252{bottom:228.040000pt;}
.y92{bottom:228.066667pt;}
.y264{bottom:228.666667pt;}
.y204{bottom:229.400000pt;}
.y17c{bottom:230.760000pt;}
.y216{bottom:231.266667pt;}
.y271{bottom:231.533333pt;}
.y195{bottom:233.933333pt;}
.ya5{bottom:237.333333pt;}
.y15c{bottom:238.000000pt;}
.y44{bottom:238.733333pt;}
.y150{bottom:239.173333pt;}
.y91{bottom:239.266667pt;}
.y224{bottom:239.626667pt;}
.y239{bottom:240.773333pt;}
.y101{bottom:240.933333pt;}
.y76{bottom:241.666667pt;}
.y1be{bottom:241.760000pt;}
.y1df{bottom:242.573333pt;}
.yd6{bottom:247.266667pt;}
.y13{bottom:248.333333pt;}
.y272{bottom:250.600000pt;}
.y143{bottom:252.066667pt;}
.y90{bottom:252.600000pt;}
.y267{bottom:254.666667pt;}
.y203{bottom:256.866667pt;}
.y1bf{bottom:257.933333pt;}
.y8f{bottom:258.733333pt;}
.y1e0{bottom:258.826667pt;}
.y215{bottom:259.000000pt;}
.ya6{bottom:259.906667pt;}
.y194{bottom:261.706667pt;}
.y157{bottom:263.800000pt;}
.y225{bottom:264.306667pt;}
.y43{bottom:265.133333pt;}
.y23a{bottom:265.400000pt;}
.y265{bottom:267.173333pt;}
.y75{bottom:269.400000pt;}
.y273{bottom:269.693333pt;}
.y8e{bottom:271.000000pt;}
.y17d{bottom:271.626667pt;}
.y15d{bottom:272.400000pt;}
.y151{bottom:272.866667pt;}
.y1c0{bottom:274.066667pt;}
.y1e1{bottom:275.066667pt;}
.y24b{bottom:276.706667pt;}
.y253{bottom:277.360000pt;}
.y142{bottom:279.800000pt;}
.ya7{bottom:282.466667pt;}
.y42{bottom:283.533333pt;}
.y202{bottom:284.600000pt;}
.y214{bottom:286.466667pt;}
.y156{bottom:287.800000pt;}
.y177{bottom:288.533333pt;}
.y274{bottom:288.760000pt;}
.y226{bottom:288.960000pt;}
.y193{bottom:289.173333pt;}
.y12{bottom:289.400000pt;}
.y23b{bottom:290.066667pt;}
.y1c1{bottom:290.240000pt;}
.y1e2{bottom:291.333333pt;}
.y74{bottom:296.866667pt;}
.yd5{bottom:299.000000pt;}
.y41{bottom:301.933333pt;}
.ya8{bottom:305.026667pt;}
.y266{bottom:305.666667pt;}
.y1c2{bottom:306.400000pt;}
.y15e{bottom:306.800000pt;}
.y141{bottom:307.266667pt;}
.y1e3{bottom:307.560000pt;}
.y275{bottom:307.866667pt;}
.y201{bottom:312.066667pt;}
.y227{bottom:313.600000pt;}
.y213{bottom:314.200000pt;}
.y23c{bottom:314.733333pt;}
.y192{bottom:316.906667pt;}
.y1c3{bottom:322.573333pt;}
.y1e4{bottom:323.826667pt;}
.y73{bottom:324.640000pt;}
.yf8{bottom:325.960000pt;}
.y24c{bottom:326.000000pt;}
.yf7{bottom:326.226667pt;}
.y254{bottom:326.666667pt;}
.y276{bottom:326.933333pt;}
.ya9{bottom:327.600000pt;}
.y40{bottom:328.373333pt;}
.y11{bottom:330.493333pt;}
.y140{bottom:335.026667pt;}
.y228{bottom:338.266667pt;}
.y1c4{bottom:338.733333pt;}
.yeb{bottom:339.293333pt;}
.y23d{bottom:339.360000pt;}
.yf6{bottom:339.840000pt;}
.y1e5{bottom:340.066667pt;}
.yea{bottom:340.893333pt;}
.y15f{bottom:341.200000pt;}
.y212{bottom:341.693333pt;}
.ye7{bottom:342.506667pt;}
.yf5{bottom:343.560000pt;}
.y191{bottom:344.400000pt;}
.ye1{bottom:344.626667pt;}
.y277{bottom:346.026667pt;}
.yf4{bottom:347.840000pt;}
.yed{bottom:348.360000pt;}
.yee{bottom:349.426667pt;}
.yf3{bottom:349.960000pt;}
.yaa{bottom:350.160000pt;}
.yd4{bottom:350.506667pt;}
.y72{bottom:352.106667pt;}
.y3f{bottom:354.773333pt;}
.y1c5{bottom:354.893333pt;}
.y1e6{bottom:356.333333pt;}
.yf2{bottom:359.293333pt;}
.ye9{bottom:360.893333pt;}
.y13f{bottom:362.506667pt;}
.y229{bottom:362.933333pt;}
.y23e{bottom:364.040000pt;}
.y278{bottom:365.133333pt;}
.y200{bottom:367.293333pt;}
.y211{bottom:369.440000pt;}
.y1c6{bottom:371.026667pt;}
.y10{bottom:371.560000pt;}
.y190{bottom:372.133333pt;}
.y1e7{bottom:372.560000pt;}
.yab{bottom:372.733333pt;}
.y24d{bottom:375.333333pt;}
.y160{bottom:375.600000pt;}
.y255{bottom:375.960000pt;}
.y71{bottom:379.840000pt;}
.y3e{bottom:381.173333pt;}
.y279{bottom:384.200000pt;}
.y1c7{bottom:387.200000pt;}
.y22a{bottom:387.560000pt;}
.y23f{bottom:388.693333pt;}
.y1e8{bottom:388.826667pt;}
.y13e{bottom:390.226667pt;}
.y1ff{bottom:395.040000pt;}
.yf1{bottom:396.893333pt;}
.y18f{bottom:399.600000pt;}
.yd3{bottom:402.226667pt;}
.y27a{bottom:403.293333pt;}
.y1c8{bottom:403.360000pt;}
.y1e9{bottom:405.066667pt;}
.y11b{bottom:406.226667pt;}
.y70{bottom:407.293333pt;}
.y3d{bottom:407.560000pt;}
.y161{bottom:410.000000pt;}
.ye5{bottom:412.093333pt;}
.y22b{bottom:412.240000pt;}
.yf{bottom:412.626667pt;}
.y240{bottom:413.333333pt;}
.y13d{bottom:417.706667pt;}
.y257{bottom:417.960000pt;}
.ye3{bottom:418.506667pt;}
.y8c{bottom:419.040000pt;}
.y1c9{bottom:419.533333pt;}
.y1ea{bottom:421.333333pt;}
.y27b{bottom:422.360000pt;}
.y1fe{bottom:422.506667pt;}
.yef{bottom:423.026667pt;}
.y210{bottom:424.626667pt;}
.y8d{bottom:425.173333pt;}
.y18e{bottom:427.333333pt;}
.y256{bottom:432.626667pt;}
.y11a{bottom:433.693333pt;}
.y3c{bottom:433.960000pt;}
.y6f{bottom:435.026667pt;}
.y1ca{bottom:435.693333pt;}
.yec{bottom:436.093333pt;}
.y22c{bottom:436.893333pt;}
.y1eb{bottom:437.573333pt;}
.y241{bottom:438.000000pt;}
.y27c{bottom:441.466667pt;}
.y13c{bottom:445.440000pt;}
.y8b{bottom:446.493333pt;}
.y1fd{bottom:450.226667pt;}
.ydd{bottom:451.560000pt;}
.y1cb{bottom:451.866667pt;}
.y20f{bottom:452.093333pt;}
.ye{bottom:453.693333pt;}
.y1ec{bottom:453.826667pt;}
.y18d{bottom:454.840000pt;}
.y3b{bottom:460.360000pt;}
.y27d{bottom:460.533333pt;}
.y119{bottom:461.426667pt;}
.y22d{bottom:461.533333pt;}
.y6e{bottom:462.506667pt;}
.y242{bottom:462.666667pt;}
.y1cc{bottom:468.000000pt;}
.y1ed{bottom:470.066667pt;}
.y13b{bottom:472.933333pt;}
.y24e{bottom:473.933333pt;}
.y8a{bottom:474.266667pt;}
.y258{bottom:474.600000pt;}
.y1fc{bottom:477.733333pt;}
.y27e{bottom:479.626667pt;}
.y20e{bottom:479.866667pt;}
.y18c{bottom:482.573333pt;}
.y1cd{bottom:484.160000pt;}
.y22e{bottom:486.200000pt;}
.y1ee{bottom:486.333333pt;}
.y3a{bottom:486.800000pt;}
.y243{bottom:487.293333pt;}
.y118{bottom:488.933333pt;}
.y6d{bottom:490.266667pt;}
.yd{bottom:497.200000pt;}
.y1b0{bottom:497.466667pt;}
.y27f{bottom:498.733333pt;}
.y1ce{bottom:500.333333pt;}
.y13a{bottom:500.666667pt;}
.y89{bottom:501.733333pt;}
.y1ef{bottom:502.600000pt;}
.yd2{bottom:505.466667pt;}
.y20d{bottom:507.333333pt;}
.y18b{bottom:510.040000pt;}
.y22f{bottom:510.866667pt;}
.y244{bottom:511.960000pt;}
.y39{bottom:513.200000pt;}
.y1cf{bottom:516.493333pt;}
.y117{bottom:516.666667pt;}
.y6c{bottom:517.733333pt;}
.y280{bottom:517.800000pt;}
.y1f0{bottom:518.826667pt;}
.y25d{bottom:520.533333pt;}
.y24f{bottom:523.266667pt;}
.y259{bottom:523.893333pt;}
.y139{bottom:524.666667pt;}
.y1af{bottom:524.933333pt;}
.y149{bottom:525.333333pt;}
.ye4{bottom:528.400000pt;}
.y88{bottom:529.466667pt;}
.y1d0{bottom:532.666667pt;}
.y1fb{bottom:532.933333pt;}
.y20c{bottom:535.066667pt;}
.y1f1{bottom:535.093333pt;}
.y230{bottom:535.493333pt;}
.y245{bottom:536.626667pt;}
.y281{bottom:536.893333pt;}
.y18a{bottom:537.773333pt;}
.y38{bottom:539.600000pt;}
.y116{bottom:544.133333pt;}
.y6b{bottom:545.466667pt;}
.yc{bottom:549.733333pt;}
.y1ae{bottom:552.666667pt;}
.y282{bottom:555.960000pt;}
.y87{bottom:556.933333pt;}
.y1fa{bottom:560.666667pt;}
.y20b{bottom:562.533333pt;}
.y189{bottom:565.266667pt;}
.y37{bottom:566.000000pt;}
.y1a1{bottom:569.466667pt;}
.y115{bottom:571.866667pt;}
.y6a{bottom:572.933333pt;}
.y283{bottom:575.066667pt;}
.y1ad{bottom:580.133333pt;}
.yd1{bottom:584.666667pt;}
.y1f9{bottom:588.133333pt;}
.y86{bottom:590.000000pt;}
.y20a{bottom:590.266667pt;}
.y36{bottom:592.400000pt;}
.y155{bottom:592.666667pt;}
.y188{bottom:593.000000pt;}
.y1a0{bottom:593.466667pt;}
.y5b{bottom:593.733333pt;}
.y1ab{bottom:596.400000pt;}
.y114{bottom:599.333333pt;}
.y69{bottom:600.666667pt;}
.yb{bottom:602.533333pt;}
.y1a8{bottom:604.400000pt;}
.y1ac{bottom:607.866667pt;}
.y58{bottom:608.666667pt;}
.yd0{bottom:612.133333pt;}
.y1f8{bottom:615.866667pt;}
.y154{bottom:616.693333pt;}
.y158{bottom:617.066667pt;}
.y85{bottom:617.493333pt;}
.y113{bottom:617.773333pt;}
.y35{bottom:618.826667pt;}
.y187{bottom:620.466667pt;}
.y1a9{bottom:623.893333pt;}
.yf9{bottom:626.933333pt;}
.y68{bottom:628.173333pt;}
.y1aa{bottom:631.893333pt;}
.ycf{bottom:639.893333pt;}
.y1f7{bottom:643.360000pt;}
.y34{bottom:645.226667pt;}
.y112{bottom:645.506667pt;}
.y186{bottom:648.240000pt;}
.y19b{bottom:653.573333pt;}
.ya{bottom:655.360000pt;}
.y67{bottom:655.893333pt;}
.y57{bottom:657.493333pt;}
.yce{bottom:667.360000pt;}
.y1f6{bottom:671.093333pt;}
.y33{bottom:671.626667pt;}
.y84{bottom:672.693333pt;}
.y111{bottom:672.960000pt;}
.y185{bottom:675.706667pt;}
.y1c{bottom:682.666667pt;}
.y66{bottom:683.360000pt;}
.y17{bottom:684.533333pt;}
.ycd{bottom:695.093333pt;}
.y56{bottom:697.760000pt;}
.y32{bottom:698.040000pt;}
.y1f5{bottom:698.560000pt;}
.y110{bottom:700.706667pt;}
.y184{bottom:703.440000pt;}
.y83{bottom:705.760000pt;}
.y9{bottom:708.173333pt;}
.y65{bottom:711.093333pt;}
.ycc{bottom:722.560000pt;}
.y31{bottom:724.440000pt;}
.y55{bottom:725.226667pt;}
.y1a{bottom:726.293333pt;}
.y1f{bottom:727.373333pt;}
.y10f{bottom:728.173333pt;}
.y82{bottom:733.226667pt;}
.y64{bottom:738.560000pt;}
.y51{bottom:740.173333pt;}
.y25c{bottom:746.560000pt;}
.ycb{bottom:750.293333pt;}
.y30{bottom:750.840000pt;}
.y1f4{bottom:753.760000pt;}
.y10e{bottom:755.893333pt;}
.y8{bottom:760.960000pt;}
.y63{bottom:766.333333pt;}
.y25b{bottom:774.333333pt;}
.y2f{bottom:777.266667pt;}
.yca{bottom:777.800000pt;}
.y1f3{bottom:781.533333pt;}
.y10d{bottom:783.400000pt;}
.y19{bottom:784.733333pt;}
.y1e{bottom:785.533333pt;}
.y80{bottom:788.466667pt;}
.y62{bottom:793.800000pt;}
.y81{bottom:794.600000pt;}
.y25a{bottom:801.800000pt;}
.y2e{bottom:803.666667pt;}
.yc9{bottom:805.533333pt;}
.y10c{bottom:811.133333pt;}
.y7{bottom:815.133333pt;}
.y7f{bottom:816.200000pt;}
.y61{bottom:821.533333pt;}
.y4f{bottom:823.133333pt;}
.y138{bottom:829.533333pt;}
.y2d{bottom:830.066667pt;}
.yc8{bottom:833.000000pt;}
.y10b{bottom:838.600000pt;}
.y1a7{bottom:841.000000pt;}
.y7e{bottom:843.666667pt;}
.y60{bottom:849.000000pt;}
.y4e{bottom:854.066667pt;}
.y19f{bottom:854.333333pt;}
.y2c{bottom:856.466667pt;}
.y137{bottom:857.000000pt;}
.yc7{bottom:860.733333pt;}
.y10a{bottom:866.333333pt;}
.y1a6{bottom:868.733333pt;}
.y6{bottom:869.266667pt;}
.y7c{bottom:871.400000pt;}
.y5f{bottom:876.733333pt;}
.y7d{bottom:877.533333pt;}
.y4d{bottom:881.800000pt;}
.y2b{bottom:882.866667pt;}
.y136{bottom:884.733333pt;}
.yc6{bottom:888.200000pt;}
.y109{bottom:893.800000pt;}
.y1a5{bottom:896.200000pt;}
.y49{bottom:896.733333pt;}
.y7b{bottom:898.866667pt;}
.y5e{bottom:904.200000pt;}
.y2a{bottom:909.293333pt;}
.y135{bottom:912.226667pt;}
.yc5{bottom:915.960000pt;}
.y108{bottom:921.560000pt;}
.y5{bottom:923.440000pt;}
.y1a4{bottom:923.960000pt;}
.y7a{bottom:926.626667pt;}
.y5d{bottom:931.960000pt;}
.y19e{bottom:937.040000pt;}
.y134{bottom:939.960000pt;}
.y29{bottom:940.226667pt;}
.yc4{bottom:943.426667pt;}
.y107{bottom:949.040000pt;}
.y1a3{bottom:951.440000pt;}
.y79{bottom:954.106667pt;}
.y5c{bottom:959.426667pt;}
.y19d{bottom:964.506667pt;}
.y133{bottom:967.440000pt;}
.y48{bottom:968.506667pt;}
.yc3{bottom:970.893333pt;}
.y4{bottom:976.226667pt;}
.y106{bottom:976.773333pt;}
.y1a2{bottom:978.893333pt;}
.y28{bottom:980.760000pt;}
.y47{bottom:986.893333pt;}
.y132{bottom:994.893333pt;}
.y105{bottom:1004.226667pt;}
.y27{bottom:1011.960000pt;}
.y46{bottom:1015.173333pt;}
.y131{bottom:1023.173333pt;}
.y3{bottom:1031.960000pt;}
.y26{bottom:1036.226667pt;}
.h23{height:10.400000pt;}
.h21{height:10.666667pt;}
.h31{height:11.466667pt;}
.h22{height:25.515625pt;}
.h16{height:27.466667pt;}
.h32{height:28.687500pt;}
.h1b{height:31.556250pt;}
.h1a{height:38.250000pt;}
.he{height:38.273438pt;}
.h3{height:40.000000pt;}
.h35{height:42.437500pt;}
.h36{height:42.570117pt;}
.h2a{height:43.031250pt;}
.h2b{height:43.150781pt;}
.h20{height:45.633333pt;}
.h34{height:47.742188pt;}
.h1c{height:47.812500pt;}
.h3a{height:47.874805pt;}
.h18{height:48.833333pt;}
.h26{height:52.593750pt;}
.h27{height:52.713281pt;}
.h37{height:53.046875pt;}
.h3d{height:53.179492pt;}
.h12{height:54.812500pt;}
.h1e{height:56.229687pt;}
.h1f{height:56.362305pt;}
.h2{height:57.375000pt;}
.h2d{height:58.351562pt;}
.h2e{height:58.484180pt;}
.hd{height:59.906250pt;}
.h13{height:62.783333pt;}
.h19{height:65.531250pt;}
.h15{height:68.300000pt;}
.hc{height:69.890625pt;}
.hf{height:76.546875pt;}
.h6{height:79.875000pt;}
.h17{height:82.953333pt;}
.h14{height:89.859375pt;}
.h10{height:99.843750pt;}
.hb{height:103.766667pt;}
.h5{height:119.072917pt;}
.h11{height:133.875000pt;}
.h25{height:139.473750pt;}
.h4{height:153.093750pt;}
.h8{height:190.875000pt;}
.h9{height:191.007552pt;}
.h7{height:206.933333pt;}
.ha{height:209.600000pt;}
.h28{height:245.866667pt;}
.h24{height:253.866667pt;}
.h29{height:291.466667pt;}
.h3b{height:343.200000pt;}
.h1d{height:392.266667pt;}
.h2c{height:429.866667pt;}
.h33{height:559.733333pt;}
.h38{height:562.133333pt;}
.h39{height:566.933333pt;}
.h3c{height:622.933333pt;}
.h2f{height:793.866667pt;}
.h30{height:794.000000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w1b{width:32.800000pt;}
.w1a{width:32.833333pt;}
.w15{width:33.066667pt;}
.w22{width:33.866667pt;}
.w18{width:34.166667pt;}
.w19{width:35.200000pt;}
.w16{width:36.266667pt;}
.w17{width:36.533333pt;}
.w1c{width:40.566667pt;}
.w13{width:44.266667pt;}
.w14{width:44.300000pt;}
.w9{width:138.960000pt;}
.wb{width:158.160000pt;}
.wa{width:158.200000pt;}
.w8{width:177.400000pt;}
.w7{width:191.000000pt;}
.wc{width:210.733333pt;}
.we{width:211.000000pt;}
.wd{width:211.266667pt;}
.w12{width:228.600000pt;}
.w25{width:287.466667pt;}
.w24{width:340.000000pt;}
.w23{width:340.266667pt;}
.w26{width:411.733333pt;}
.w6{width:442.000000pt;}
.w4{width:533.333333pt;}
.w3{width:533.600000pt;}
.w1d{width:622.133333pt;}
.w1e{width:623.466667pt;}
.wf{width:633.000000pt;}
.w11{width:679.466667pt;}
.w5{width:793.599987pt;}
.w10{width:793.866643pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.w21{width:1122.399983pt;}
.w1f{width:1122.400000pt;}
.w20{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1c{left:6.933333pt;}
.xa{left:9.626667pt;}
.xbb{left:11.266667pt;}
.xb0{left:14.493333pt;}
.xaf{left:15.466667pt;}
.xa1{left:16.800000pt;}
.xa6{left:17.766667pt;}
.x82{left:19.800000pt;}
.xa3{left:21.033333pt;}
.x7{left:22.733333pt;}
.x91{left:24.033333pt;}
.xc4{left:25.306667pt;}
.x6f{left:26.600000pt;}
.xa9{left:28.300000pt;}
.x45{left:30.233333pt;}
.x6e{left:32.600000pt;}
.x9e{left:35.533333pt;}
.xc7{left:36.733333pt;}
.x2f{left:38.000000pt;}
.xc3{left:39.240000pt;}
.xa4{left:41.433333pt;}
.xb7{left:42.533333pt;}
.xa5{left:44.133333pt;}
.x2e{left:45.100000pt;}
.x93{left:46.200000pt;}
.xad{left:47.360000pt;}
.xac{left:48.600000pt;}
.x84{left:49.893333pt;}
.xbe{left:51.566667pt;}
.xa8{left:53.033333pt;}
.xba{left:54.500000pt;}
.x6d{left:55.626667pt;}
.x2c{left:58.933333pt;}
.xae{left:59.933333pt;}
.x83{left:61.066667pt;}
.x9f{left:62.233333pt;}
.xa7{left:63.500000pt;}
.xc5{left:64.733333pt;}
.x2d{left:66.366667pt;}
.x92{left:68.493333pt;}
.xa0{left:69.466667pt;}
.xb9{left:70.773333pt;}
.xaa{left:72.000000pt;}
.x66{left:73.426667pt;}
.xa2{left:74.933333pt;}
.xbd{left:78.466667pt;}
.xb8{left:79.960000pt;}
.xc8{left:82.866667pt;}
.xbc{left:84.773333pt;}
.xca{left:86.093333pt;}
.x1b{left:87.500000pt;}
.x70{left:92.293333pt;}
.x3{left:94.433322pt;}
.xc9{left:98.693333pt;}
.x2a{left:99.766655pt;}
.x5e{left:109.866667pt;}
.xcc{left:110.866667pt;}
.x19{left:112.566655pt;}
.x30{left:114.066667pt;}
.x5b{left:115.240000pt;}
.x71{left:118.066667pt;}
.x67{left:120.040000pt;}
.x9d{left:121.573333pt;}
.xb{left:130.400000pt;}
.x6{left:132.266667pt;}
.x85{left:134.266667pt;}
.x31{left:139.906667pt;}
.x2b{left:142.439988pt;}
.x72{left:143.840000pt;}
.xcb{left:148.306667pt;}
.x1e{left:151.266667pt;}
.x48{left:154.200000pt;}
.x62{left:157.866667pt;}
.x86{left:158.906667pt;}
.xc0{left:159.933333pt;}
.xb1{left:161.133333pt;}
.xb2{left:163.066667pt;}
.x32{left:165.773333pt;}
.xb3{left:167.560000pt;}
.x73{left:169.600000pt;}
.xc1{left:172.906667pt;}
.xb4{left:174.040000pt;}
.xb5{left:175.066667pt;}
.x4e{left:181.400000pt;}
.x87{left:183.493333pt;}
.xc{left:185.133322pt;}
.x8{left:186.999988pt;}
.x33{left:191.640000pt;}
.x74{left:195.373333pt;}
.x50{left:208.066667pt;}
.x34{left:217.506667pt;}
.xcd{left:219.866667pt;}
.x75{left:221.133333pt;}
.x11{left:223.799988pt;}
.xd{left:232.333322pt;}
.x9{left:234.199988pt;}
.xc2{left:240.773333pt;}
.x35{left:243.333333pt;}
.x76{left:246.906667pt;}
.x94{left:253.706667pt;}
.x49{left:257.973333pt;}
.x28{left:259.839976pt;}
.x5f{left:262.800000pt;}
.x1f{left:264.906667pt;}
.xe{left:266.800000pt;}
.x14{left:267.839988pt;}
.x36{left:269.200000pt;}
.x77{left:272.666667pt;}
.x51{left:280.640000pt;}
.x88{left:281.933333pt;}
.x29{left:286.506655pt;}
.x37{left:295.066667pt;}
.x22{left:298.240000pt;}
.xb6{left:302.640000pt;}
.x89{left:306.560000pt;}
.x4b{left:307.573333pt;}
.x17{left:309.693322pt;}
.x4{left:312.639988pt;}
.x38{left:320.933333pt;}
.x78{left:324.160000pt;}
.x1a{left:325.693322pt;}
.xf{left:328.106653pt;}
.x8a{left:331.173333pt;}
.x52{left:336.106667pt;}
.x5c{left:340.360000pt;}
.x39{left:346.800000pt;}
.x79{left:349.933333pt;}
.x13{left:352.106655pt;}
.x15{left:356.133322pt;}
.x5{left:357.199988pt;}
.x4f{left:359.600000pt;}
.x12{left:367.599988pt;}
.x3a{left:372.640000pt;}
.x69{left:376.373333pt;}
.x8b{left:380.400000pt;}
.x95{left:384.293333pt;}
.x26{left:385.199976pt;}
.x68{left:387.133333pt;}
.x27{left:390.533322pt;}
.x10{left:398.533320pt;}
.x7a{left:401.466667pt;}
.x20{left:403.866667pt;}
.x8c{left:405.000000pt;}
.x2{left:406.266655pt;}
.x63{left:407.333333pt;}
.x18{left:411.066655pt;}
.x53{left:412.666667pt;}
.xab{left:413.600000pt;}
.x5d{left:416.666667pt;}
.xbf{left:417.866667pt;}
.x3b{left:424.373333pt;}
.x7b{left:427.240000pt;}
.x16{left:430.266655pt;}
.x60{left:434.533322pt;}
.x54{left:438.800000pt;}
.x3c{left:450.240000pt;}
.x7c{left:453.000000pt;}
.x8d{left:454.240000pt;}
.x47{left:462.306667pt;}
.xc6{left:463.466667pt;}
.x3d{left:476.066667pt;}
.x7d{left:478.773333pt;}
.x96{left:482.960000pt;}
.x6b{left:486.266667pt;}
.x57{left:490.840000pt;}
.x3e{left:501.933333pt;}
.x8e{left:503.466667pt;}
.x7e{left:504.533333pt;}
.x6a{left:506.573333pt;}
.x23{left:509.506667pt;}
.x64{left:514.373333pt;}
.x55{left:517.240000pt;}
.x97{left:519.533333pt;}
.x6c{left:521.160000pt;}
.x46{left:524.440000pt;}
.x3f{left:527.800000pt;}
.x1d{left:529.506667pt;}
.x65{left:533.840000pt;}
.x4a{left:539.360000pt;}
.x24{left:547.359976pt;}
.x25{left:552.706655pt;}
.x40{left:553.666667pt;}
.x7f{left:556.066667pt;}
.x21{left:562.333333pt;}
.x4c{left:565.800000pt;}
.x99{left:570.799983pt;}
.x8f{left:577.293333pt;}
.x41{left:579.533333pt;}
.x80{left:581.840000pt;}
.x58{left:594.066667pt;}
.x90{left:601.906667pt;}
.x42{left:605.373333pt;}
.x81{left:607.600000pt;}
.x4d{left:617.266667pt;}
.x43{left:631.240000pt;}
.x56{left:644.200000pt;}
.x44{left:657.106667pt;}
.x9c{left:671.173322pt;}
.x59{left:672.240000pt;}
.x5a{left:696.773333pt;}
.x9b{left:702.106655pt;}
.x1{left:710.106655pt;}
.x61{left:718.639988pt;}
.x9a{left:956.226667pt;}
.x98{left:1031.173317pt;}
}




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