
    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_e6f0708552efe89a65852fea.woff')format("woff");}.ff1{font-family:ff1;line-height:0.854004;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_ccf8d2653027932ac63ef476.woff')format("woff");}.ff2{font-family:ff2;line-height:1.119629;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_bca7fcbe50bd39fea342991c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.119629;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_ab45941b9b6b10f5d79842a7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.745117;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_b5bee9881af20a15763af716.woff')format("woff");}.ff5{font-family:ff5;line-height:0.853516;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_4c22be35f380cdc42b5cf950.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_0e0e1ceb3b4d402cc601aecf.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_15dcf4ac1dd270f9c4c8ba0d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.014160;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_10336cdb0f5760a167ace3b2.woff')format("woff");}.ff9{font-family:ff9;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_81a3e732ab4ebca043f8d634.woff')format("woff");}.ffa{font-family:ffa;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e79fac62636988c0a966a867.woff')format("woff");}.ffb{font-family:ffb;line-height:0.914062;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_648f4d506b9a26942c3b3cdf.woff')format("woff");}.ffc{font-family:ffc;line-height:1.090332;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_be20a2eefecb28165900af12.woff')format("woff");}.ffd{font-family:ffd;line-height:1.040039;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_a69c319d75b7e7191b9d8450.woff')format("woff");}.ffe{font-family:ffe;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_3f17e5d15cb6f7c1bdfa77bd.woff')format("woff");}.fff{font-family:fff;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_0a8f884d5cb723540a5e9821.woff')format("woff");}.ff10{font-family:ff10;line-height:0.776855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_a7f96812ba964b44f553a69c.woff')format("woff");}.ff11{font-family:ff11;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_2b5cd6d444cc109d330ba9f9.woff')format("woff");}.ff12{font-family:ff12;line-height:1.123047;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v1{vertical-align:-27.360000px;}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.v2{vertical-align:27.360000px;}
.ls15{letter-spacing:-9.480000px;}
.ls1d{letter-spacing:-4.464000px;}
.ls11{letter-spacing:-3.816000px;}
.lsa{letter-spacing:-2.880000px;}
.lsc{letter-spacing:-1.584000px;}
.ls16{letter-spacing:-0.936000px;}
.ls29{letter-spacing:-0.864000px;}
.ls7{letter-spacing:-0.720000px;}
.ls2{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.072000px;}
.ls14{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.262200px;}
.ls1a{letter-spacing:0.269400px;}
.ls12{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.576000px;}
.ls1f{letter-spacing:0.684000px;}
.ls1{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.864000px;}
.ls13{letter-spacing:0.936000px;}
.ls1b{letter-spacing:1.224000px;}
.ls21{letter-spacing:1.944000px;}
.ls28{letter-spacing:2.160000px;}
.ls22{letter-spacing:2.664000px;}
.ls24{letter-spacing:3.384000px;}
.ls9{letter-spacing:3.924000px;}
.ls20{letter-spacing:4.104000px;}
.ls26{letter-spacing:4.824000px;}
.ls23{letter-spacing:5.544000px;}
.ls1c{letter-spacing:6.444000px;}
.ls25{letter-spacing:6.984000px;}
.ls27{letter-spacing:12.744000px;}
.ls1e{letter-spacing:15.624000px;}
.ls17{letter-spacing:21.600000px;}
.ls18{letter-spacing:128.160000px;}
.lsf{letter-spacing:194.376000px;}
.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:-95.760000px;}
.ws8{word-spacing:-72.000000px;}
.wse{word-spacing:-18.864000px;}
.ws4{word-spacing:-18.720000px;}
.wsa{word-spacing:-18.576000px;}
.ws18{word-spacing:-18.288000px;}
.ws17{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.wsb{word-spacing:-16.560000px;}
.ws13{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.120000px;}
.ws14{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.616000px;}
.ws10{word-spacing:-14.328000px;}
.ws11{word-spacing:-14.184000px;}
.ws16{word-spacing:-13.536000px;}
.ws15{word-spacing:-12.329400px;}
.wsd{word-spacing:-12.060000px;}
.wsf{word-spacing:-9.720000px;}
.ws12{word-spacing:-8.520000px;}
.ws1{word-spacing:0.000000px;}
._25{margin-left:-104.202331px;}
._2c{margin-left:-98.100000px;}
._2e{margin-left:-78.624000px;}
._2d{margin-left:-20.580000px;}
._8{margin-left:-16.560000px;}
._7{margin-left:-12.552000px;}
._6{margin-left:-10.524000px;}
._1{margin-left:-8.424000px;}
._24{margin-left:-7.272960px;}
._0{margin-left:-6.264000px;}
._5{margin-left:-4.320000px;}
._4{margin-left:-3.255840px;}
._c{margin-left:-2.099040px;}
._3{margin-left:-1.010880px;}
._2{width:1.296000px;}
._9{width:2.520000px;}
._e{width:3.684000px;}
._17{width:5.021760px;}
._1a{width:6.624000px;}
._10{width:7.680000px;}
._14{width:9.336000px;}
._13{width:10.512000px;}
._d{width:12.024000px;}
._a{width:13.968000px;}
._b{width:15.384000px;}
._f{width:16.560000px;}
._1f{width:19.298880px;}
._15{width:20.592000px;}
._16{width:21.672000px;}
._23{width:22.896000px;}
._11{width:24.048000px;}
._12{width:25.644000px;}
._1c{width:27.062880px;}
._20{width:28.872000px;}
._21{width:30.096000px;}
._1b{width:31.680000px;}
._1d{width:32.988000px;}
._31{width:34.067040px;}
._1e{width:35.208000px;}
._30{width:36.360000px;}
._2f{width:37.656000px;}
._18{width:39.432000px;}
._19{width:41.244000px;}
._28{width:43.992000px;}
._29{width:45.072000px;}
._2b{width:69.735840px;}
._2a{width:75.384000px;}
._26{width:127.296000px;}
._27{width:128.750880px;}
._33{width:537.993120px;}
._32{width:539.570880px;}
._22{width:846.013920px;}
.fcb{color:rgb(15,71,97);}
.fc9{color:rgb(252,225,0);}
.fc8{color:rgb(247,99,12);}
.fc7{color:rgb(70,120,134);}
.fc5{color:rgb(232,18,36);}
.fc4{color:rgb(58,150,221);}
.fc3{color:rgb(0,120,215);}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fca{color:rgb(255,255,255);}
.fc6{color:rgb(239,105,80);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs9{font-size:75.893905px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:108.000000px;}
.fsa{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.yd2{bottom:3.960000px;}
.ye2{bottom:4.320000px;}
.yd5{bottom:4.680000px;}
.yb4{bottom:4.860000px;}
.yde{bottom:5.040000px;}
.ye6{bottom:5.220000px;}
.ye4{bottom:5.400000px;}
.yb9{bottom:5.940000px;}
.yb6{bottom:6.120000px;}
.y12e{bottom:7.380000px;}
.y12a{bottom:7.560000px;}
.y149{bottom:10.080000px;}
.y102{bottom:10.800000px;}
.yc6{bottom:11.385000px;}
.y140{bottom:12.060000px;}
.ycc{bottom:12.420000px;}
.y130{bottom:14.400000px;}
.yc1{bottom:15.840000px;}
.y157{bottom:17.820000px;}
.y17c{bottom:18.000000px;}
.y124{bottom:23.040000px;}
.y28b{bottom:24.480000px;}
.y283{bottom:24.654000px;}
.yd1{bottom:24.660000px;}
.yf1{bottom:24.690000px;}
.y10e{bottom:24.705000px;}
.ye3{bottom:26.094000px;}
.yfc{bottom:26.100000px;}
.y13a{bottom:30.780000px;}
.y101{bottom:31.500000px;}
.yf9{bottom:31.680000px;}
.yc5{bottom:32.085000px;}
.ycb{bottom:33.120000px;}
.y12f{bottom:35.100000px;}
.yc0{bottom:36.540000px;}
.y156{bottom:43.020000px;}
.y17b{bottom:43.200000px;}
.y28a{bottom:45.180000px;}
.y261{bottom:45.354000px;}
.yd0{bottom:45.360000px;}
.yf0{bottom:45.390000px;}
.y25b{bottom:45.405000px;}
.y17a{bottom:45.576000px;}
.y136{bottom:47.520000px;}
.ye0{bottom:47.874000px;}
.y17d{bottom:50.436000px;}
.y100{bottom:52.200000px;}
.yf8{bottom:52.380000px;}
.yc4{bottom:52.785000px;}
.yca{bottom:53.820000px;}
.y155{bottom:55.836000px;}
.ybf{bottom:57.240000px;}
.y16{bottom:57.996000px;}
.y12c{bottom:59.940000px;}
.y123{bottom:62.136000px;}
.y289{bottom:65.880000px;}
.y260{bottom:66.054000px;}
.ycf{bottom:66.060000px;}
.yef{bottom:66.090000px;}
.y24d{bottom:66.105000px;}
.y135{bottom:68.220000px;}
.yff{bottom:72.900000px;}
.yf7{bottom:73.080000px;}
.yc3{bottom:73.485000px;}
.yc9{bottom:74.520000px;}
.ybe{bottom:77.940000px;}
.y15{bottom:78.876000px;}
.y146{bottom:80.460000px;}
.yb2{bottom:85.716000px;}
.y288{bottom:86.580000px;}
.y25f{bottom:86.754000px;}
.yed{bottom:86.760000px;}
.yce{bottom:86.790000px;}
.y24c{bottom:86.805000px;}
.y134{bottom:88.920000px;}
.y10a{bottom:90.585000px;}
.yf6{bottom:93.810000px;}
.yc8{bottom:95.220000px;}
.ybd{bottom:98.640000px;}
.y145{bottom:101.160000px;}
.y287{bottom:107.280000px;}
.y25e{bottom:107.454000px;}
.y266{bottom:107.460000px;}
.y255{bottom:107.490000px;}
.y24b{bottom:107.505000px;}
.ye5{bottom:108.396000px;}
.y133{bottom:109.620000px;}
.y126{bottom:110.196000px;}
.y4a{bottom:110.376000px;}
.y23d{bottom:110.556000px;}
.y25c{bottom:110.916000px;}
.y109{bottom:111.285000px;}
.y26e{bottom:117.036000px;}
.y2be{bottom:117.756000px;}
.ybc{bottom:119.340000px;}
.y211{bottom:120.456000px;}
.y144{bottom:121.860000px;}
.y16c{bottom:122.256000px;}
.y154{bottom:126.216000px;}
.y69{bottom:127.296000px;}
.y25d{bottom:127.974000px;}
.y286{bottom:127.980000px;}
.y273{bottom:128.154000px;}
.y265{bottom:128.160000px;}
.y254{bottom:128.190000px;}
.y25a{bottom:128.205000px;}
.ya7{bottom:129.096000px;}
.y179{bottom:129.276000px;}
.y132{bottom:130.365000px;}
.ydf{bottom:131.076000px;}
.y108{bottom:131.985000px;}
.y244{bottom:132.516000px;}
.y2b2{bottom:133.776000px;}
.yb1{bottom:134.316000px;}
.y1eb{bottom:134.496000px;}
.y13{bottom:136.116000px;}
.y291{bottom:137.736000px;}
.y280{bottom:138.456000px;}
.ybb{bottom:139.860000px;}
.y86{bottom:141.336000px;}
.y49{bottom:141.516000px;}
.y143{bottom:142.590000px;}
.y201{bottom:144.396000px;}
.y122{bottom:144.756000px;}
.y1bb{bottom:145.836000px;}
.y23c{bottom:146.376000px;}
.y99{bottom:148.356000px;}
.y285{bottom:148.680000px;}
.y27c{bottom:148.725000px;}
.y272{bottom:148.854000px;}
.y264{bottom:148.860000px;}
.y253{bottom:148.890000px;}
.y259{bottom:148.905000px;}
.y107{bottom:152.685000px;}
.y16b{bottom:153.210000px;}
.y165{bottom:154.290000px;}
.y210{bottom:156.450000px;}
.y153{bottom:157.170000px;}
.y68{bottom:158.430000px;}
.y2c8{bottom:159.150000px;}
.y178{bottom:160.230000px;}
.y142{bottom:163.290000px;}
.ya6{bottom:164.370000px;}
.y189{bottom:165.270000px;}
.yb0{bottom:165.450000px;}
.y243{bottom:168.510000px;}
.y2d0{bottom:169.380000px;}
.y284{bottom:169.410000px;}
.y27b{bottom:169.425000px;}
.y271{bottom:169.554000px;}
.y2b1{bottom:169.560000px;}
.y252{bottom:169.590000px;}
.y282{bottom:169.599000px;}
.y258{bottom:169.605000px;}
.yc7{bottom:171.030000px;}
.y12{bottom:171.210000px;}
.y85{bottom:172.290000px;}
.y48{bottom:172.470000px;}
.ye1{bottom:174.630000px;}
.y121{bottom:175.890000px;}
.y1ba{bottom:176.790000px;}
.y200{bottom:180.390000px;}
.y23b{bottom:182.370000px;}
.y16a{bottom:184.350000px;}
.y164{bottom:185.430000px;}
.y152{bottom:188.310000px;}
.y67{bottom:189.390000px;}
.y2cf{bottom:190.080000px;}
.y27a{bottom:190.125000px;}
.y2b0{bottom:190.260000px;}
.y251{bottom:190.290000px;}
.y270{bottom:190.299000px;}
.y26b{bottom:190.305000px;}
.y98{bottom:191.370000px;}
.y20f{bottom:192.450000px;}
.y1ea{bottom:194.430000px;}
.ya5{bottom:194.970000px;}
.y188{bottom:196.230000px;}
.yaf{bottom:196.410000px;}
.y84{bottom:203.430000px;}
.y47{bottom:203.610000px;}
.y242{bottom:204.330000px;}
.y11{bottom:205.050000px;}
.y23a{bottom:206.310000px;}
.y120{bottom:206.850000px;}
.y2ce{bottom:210.780000px;}
.y279{bottom:210.825000px;}
.y2af{bottom:210.960000px;}
.y250{bottom:210.990000px;}
.y26f{bottom:210.999000px;}
.y26a{bottom:211.005000px;}
.y169{bottom:215.310000px;}
.y163{bottom:216.390000px;}
.y151{bottom:219.270000px;}
.y1b9{bottom:219.990000px;}
.y173{bottom:220.530000px;}
.y177{bottom:222.330000px;}
.yae{bottom:226.470000px;}
.y187{bottom:227.370000px;}
.y20e{bottom:228.270000px;}
.y21c{bottom:228.450000px;}
.y1e9{bottom:230.430000px;}
.y2cd{bottom:231.510000px;}
.y278{bottom:231.525000px;}
.y2ae{bottom:231.660000px;}
.y24f{bottom:231.690000px;}
.y281{bottom:231.699000px;}
.y269{bottom:231.705000px;}
.y66{bottom:232.410000px;}
.y83{bottom:234.390000px;}
.y46{bottom:234.570000px;}
.y11f{bottom:237.990000px;}
.y19a{bottom:239.430000px;}
.y10{bottom:239.790000px;}
.y241{bottom:240.330000px;}
.y239{bottom:242.310000px;}
.ydd{bottom:245.370000px;}
.y15a{bottom:246.450000px;}
.y162{bottom:247.530000px;}
.y150{bottom:250.410000px;}
.y1b8{bottom:250.950000px;}
.y277{bottom:252.225000px;}
.y2ad{bottom:252.360000px;}
.y1ff{bottom:252.390000px;}
.y2c4{bottom:252.399000px;}
.y268{bottom:252.405000px;}
.y176{bottom:253.470000px;}
.y257{bottom:256.530000px;}
.y186{bottom:258.330000px;}
.y28f{bottom:262.650000px;}
.y65{bottom:263.550000px;}
.y20d{bottom:264.270000px;}
.y82{bottom:265.350000px;}
.y1e8{bottom:266.430000px;}
.y11e{bottom:268.950000px;}
.y199{bottom:270.570000px;}
.y276{bottom:272.925000px;}
.y2ac{bottom:273.090000px;}
.y2c3{bottom:273.099000px;}
.y290{bottom:273.105000px;}
.ydc{bottom:276.330000px;}
.y97{bottom:277.410000px;}
.y45{bottom:277.590000px;}
.y238{bottom:278.310000px;}
.y161{bottom:278.490000px;}
.y14f{bottom:281.370000px;}
.yf{bottom:281.550000px;}
.yc2{bottom:283.710000px;}
.yad{bottom:284.430000px;}
.y1b7{bottom:286.950000px;}
.y1fe{bottom:288.390000px;}
.y185{bottom:289.470000px;}
.y1e7{bottom:290.415000px;}
.y296{bottom:293.625000px;}
.y275{bottom:293.655000px;}
.y2ab{bottom:293.790000px;}
.y2c2{bottom:293.799000px;}
.y2bb{bottom:293.805000px;}
.y64{bottom:294.555000px;}
.y172{bottom:296.355000px;}
.y81{bottom:296.535000px;}
.y11d{bottom:300.135000px;}
.y20c{bottom:300.315000px;}
.y198{bottom:301.575000px;}
.ydb{bottom:306.435000px;}
.y96{bottom:308.595000px;}
.y44{bottom:308.775000px;}
.y160{bottom:309.675000px;}
.y1b6{bottom:310.935000px;}
.y22a{bottom:312.375000px;}
.y14e{bottom:312.555000px;}
.y29b{bottom:313.455000px;}
.y295{bottom:314.325000px;}
.y237{bottom:314.355000px;}
.y2aa{bottom:314.490000px;}
.y2c1{bottom:314.499000px;}
.y2ba{bottom:314.505000px;}
.yac{bottom:315.615000px;}
.y184{bottom:320.475000px;}
.ye{bottom:323.310000px;}
.y217{bottom:324.255000px;}
.y1fd{bottom:324.435000px;}
.y63{bottom:325.695000px;}
.y1e6{bottom:326.415000px;}
.y80{bottom:327.495000px;}
.y11c{bottom:331.095000px;}
.y197{bottom:332.715000px;}
.y294{bottom:335.025000px;}
.y2a9{bottom:335.190000px;}
.y2c0{bottom:335.199000px;}
.y2b9{bottom:335.205000px;}
.y20b{bottom:336.315000px;}
.y95{bottom:339.555000px;}
.y43{bottom:339.735000px;}
.y15f{bottom:340.635000px;}
.yda{bottom:342.435000px;}
.y14d{bottom:343.515000px;}
.y26d{bottom:345.495000px;}
.yab{bottom:346.575000px;}
.y1b5{bottom:346.935000px;}
.y229{bottom:348.375000px;}
.y29a{bottom:349.455000px;}
.y236{bottom:350.355000px;}
.y183{bottom:351.615000px;}
.y293{bottom:355.755000px;}
.y2a8{bottom:355.890000px;}
.y2bf{bottom:355.899000px;}
.y2b8{bottom:355.905000px;}
.y62{bottom:356.655000px;}
.y7f{bottom:358.635000px;}
.y1fc{bottom:360.255000px;}
.y21f{bottom:360.435000px;}
.y11b{bottom:362.235000px;}
.y196{bottom:363.675000px;}
.yd{bottom:365.115000px;}
.y299{bottom:366.915000px;}
.y94{bottom:370.695000px;}
.y42{bottom:370.875000px;}
.y15e{bottom:371.775000px;}
.y20a{bottom:372.315000px;}
.yba{bottom:374.655000px;}
.y2a7{bottom:376.590000px;}
.y2b7{bottom:376.605000px;}
.yaa{bottom:377.715000px;}
.y14c{bottom:378.795000px;}
.y182{bottom:382.575000px;}
.y1b4{bottom:382.935000px;}
.y228{bottom:384.375000px;}
.y235{bottom:386.355000px;}
.y27f{bottom:387.615000px;}
.y61{bottom:387.795000px;}
.y7e{bottom:389.595000px;}
.yd9{bottom:393.375000px;}
.y195{bottom:394.815000px;}
.y14b{bottom:394.995000px;}
.y1fb{bottom:396.255000px;}
.y2a6{bottom:397.290000px;}
.y2b6{bottom:397.305000px;}
.y1e5{bottom:398.235000px;}
.y93{bottom:401.655000px;}
.y41{bottom:401.835000px;}
.y15d{bottom:402.735000px;}
.y11a{bottom:405.255000px;}
.yc{bottom:406.875000px;}
.y209{bottom:408.315000px;}
.y175{bottom:408.675000px;}
.y181{bottom:413.715000px;}
.y2a5{bottom:417.990000px;}
.y2b5{bottom:418.005000px;}
.y60{bottom:418.755000px;}
.y1fa{bottom:420.195000px;}
.y227{bottom:420.375000px;}
.y7d{bottom:420.735000px;}
.y234{bottom:422.355000px;}
.y194{bottom:425.775000px;}
.yd8{bottom:428.655000px;}
.y2c7{bottom:429.015000px;}
.y216{bottom:432.255000px;}
.y92{bottom:432.795000px;}
.y40{bottom:432.975000px;}
.y15c{bottom:433.875000px;}
.y1e4{bottom:434.235000px;}
.y119{bottom:436.395000px;}
.y2a4{bottom:438.690000px;}
.y1b3{bottom:442.875000px;}
.y141{bottom:443.235000px;}
.y256{bottom:443.595000px;}
.y208{bottom:444.315000px;}
.y180{bottom:444.675000px;}
.yf4{bottom:444.855000px;}
.yb{bottom:448.635000px;}
.y5f{bottom:449.895000px;}
.y298{bottom:450.435000px;}
.y7c{bottom:451.695000px;}
.y1f9{bottom:456.195000px;}
.y233{bottom:458.355000px;}
.y2a3{bottom:459.390000px;}
.y91{bottom:463.755000px;}
.y3f{bottom:463.935000px;}
.y15b{bottom:464.835000px;}
.yf3{bottom:466.275000px;}
.y1b2{bottom:466.815000px;}
.y118{bottom:467.355000px;}
.y215{bottom:468.255000px;}
.y193{bottom:468.795000px;}
.ya4{bottom:469.335000px;}
.y1e3{bottom:470.235000px;}
.y26c{bottom:470.415000px;}
.y17f{bottom:475.815000px;}
.ya{bottom:478.515000px;}
.y2a2{bottom:480.090000px;}
.y1f8{bottom:480.315000px;}
.y5e{bottom:480.855000px;}
.y7b{bottom:482.835000px;}
.y14a{bottom:485.355000px;}
.y2bd{bottom:491.115000px;}
.y1b1{bottom:491.835000px;}
.y232{bottom:494.175000px;}
.y90{bottom:494.895000px;}
.y117{bottom:498.315000px;}
.y192{bottom:499.935000px;}
.y2a1{bottom:500.790000px;}
.y214{bottom:504.255000px;}
.y1e2{bottom:506.235000px;}
.y17e{bottom:506.775000px;}
.y3e{bottom:506.955000px;}
.y9{bottom:508.215000px;}
.yf2{bottom:508.395000px;}
.y5d{bottom:511.995000px;}
.ya3{bottom:512.355000px;}
.y27e{bottom:512.535000px;}
.y7a{bottom:513.795000px;}
.y1f7{bottom:516.135000px;}
.y226{bottom:516.315000px;}
.y1b0{bottom:518.475000px;}
.y2a0{bottom:521.490000px;}
.y125{bottom:525.855000px;}
.y21e{bottom:528.195000px;}
.y116{bottom:529.455000px;}
.y1e1{bottom:530.175000px;}
.y191{bottom:530.895000px;}
.yb8{bottom:532.155000px;}
.y148{bottom:533.595000px;}
.y2d3{bottom:536.475000px;}
.y8f{bottom:537.915000px;}
.y3d{bottom:538.095000px;}
.y213{bottom:540.255000px;}
.y29{bottom:541.515000px;}
.y29f{bottom:542.190000px;}
.ya2{bottom:543.495000px;}
.y79{bottom:544.935000px;}
.y24e{bottom:547.815000px;}
.y8{bottom:549.975000px;}
.yee{bottom:550.515000px;}
.y1f6{bottom:552.135000px;}
.y28e{bottom:553.215000px;}
.y2d2{bottom:553.935000px;}
.y1af{bottom:554.475000px;}
.y5c{bottom:555.015000px;}
.yb7{bottom:555.555000px;}
.y159{bottom:556.995000px;}
.y115{bottom:560.415000px;}
.y190{bottom:562.035000px;}
.y29e{bottom:562.935000px;}
.y1cf{bottom:564.195000px;}
.y1e0{bottom:566.175000px;}
.y8e{bottom:568.875000px;}
.y3c{bottom:569.055000px;}
.ya1{bottom:574.485000px;}
.y78{bottom:575.925000px;}
.y212{bottom:576.105000px;}
.y21d{bottom:576.285000px;}
.yb5{bottom:577.905000px;}
.y1ae{bottom:578.445000px;}
.y28{bottom:578.805000px;}
.y147{bottom:581.865000px;}
.y29d{bottom:583.635000px;}
.y5b{bottom:586.005000px;}
.y158{bottom:587.985000px;}
.y1f5{bottom:588.165000px;}
.y114{bottom:591.585000px;}
.y7{bottom:591.915000px;}
.y18f{bottom:593.025000px;}
.y2bc{bottom:595.365000px;}
.y8d{bottom:600.045000px;}
.y3b{bottom:600.225000px;}
.yb3{bottom:601.485000px;}
.y1df{bottom:602.205000px;}
.y1ad{bottom:602.565000px;}
.y29c{bottom:604.335000px;}
.y77{bottom:607.065000px;}
.y27{bottom:610.485000px;}
.y207{bottom:612.105000px;}
.ya0{bottom:616.245000px;}
.y5a{bottom:617.145000px;}
.y168{bottom:618.945000px;}
.y113{bottom:622.545000px;}
.y13c{bottom:623.985000px;}
.y18e{bottom:624.165000px;}
.y1ce{bottom:624.345000px;}
.y1ac{bottom:626.505000px;}
.y8c{bottom:631.005000px;}
.y3a{bottom:631.185000px;}
.y6{bottom:634.425000px;}
.y22b{bottom:636.045000px;}
.y225{bottom:636.225000px;}
.y297{bottom:637.485000px;}
.ya9{bottom:638.025000px;}
.y1de{bottom:638.205000px;}
.y26{bottom:641.985000px;}
.y59{bottom:648.105000px;}
.y76{bottom:650.085000px;}
.y13f{bottom:653.505000px;}
.y112{bottom:653.685000px;}
.y18d{bottom:654.225000px;}
.yec{bottom:654.765000px;}
.y9f{bottom:658.005000px;}
.y1cd{bottom:660.165000px;}
.y8b{bottom:662.145000px;}
.y39{bottom:662.325000px;}
.y1ab{bottom:662.505000px;}
.y171{bottom:669.165000px;}
.y224{bottom:672.045000px;}
.y25{bottom:673.485000px;}
.y1dd{bottom:674.205000px;}
.y28d{bottom:678.165000px;}
.y13e{bottom:678.525000px;}
.y2b4{bottom:678.885000px;}
.y58{bottom:679.245000px;}
.y5{bottom:679.965000px;}
.ya8{bottom:681.045000px;}
.y206{bottom:684.105000px;}
.y1cc{bottom:684.285000px;}
.y1aa{bottom:686.445000px;}
.y111{bottom:689.685000px;}
.y75{bottom:693.105000px;}
.y38{bottom:693.285000px;}
.y1f4{bottom:696.165000px;}
.y231{bottom:698.145000px;}
.y267{bottom:698.865000px;}
.y27d{bottom:699.585000px;}
.y170{bottom:700.125000px;}
.y13d{bottom:703.365000px;}
.y24{bottom:704.985000px;}
.y21b{bottom:708.045000px;}
.y1cb{bottom:708.225000px;}
.y1dc{bottom:710.025000px;}
.y57{bottom:710.205000px;}
.y1a9{bottom:710.385000px;}
.y167{bottom:712.185000px;}
.y205{bottom:720.105000px;}
.y4{bottom:723.885000px;}
.y74{bottom:724.245000px;}
.y37{bottom:724.425000px;}
.y110{bottom:724.965000px;}
.y131{bottom:728.205000px;}
.y16f{bottom:731.265000px;}
.y1ca{bottom:732.165000px;}
.y230{bottom:734.145000px;}
.y1a8{bottom:734.325000px;}
.y23{bottom:736.485000px;}
.y2c6{bottom:740.265000px;}
.y10f{bottom:741.165000px;}
.y56{bottom:741.345000px;}
.y166{bottom:743.145000px;}
.y21a{bottom:744.045000px;}
.y1db{bottom:746.025000px;}
.y13b{bottom:753.225000px;}
.y73{bottom:755.205000px;}
.y204{bottom:756.105000px;}
.yeb{bottom:758.985000px;}
.y16e{bottom:762.225000px;}
.y3{bottom:763.485000px;}
.y36{bottom:767.445000px;}
.y22{bottom:767.805000px;}
.y1f3{bottom:767.985000px;}
.y1c9{bottom:768.165000px;}
.y22f{bottom:770.145000px;}
.y1a7{bottom:770.325000px;}
.y55{bottom:772.305000px;}
.y174{bottom:774.285000px;}
.y139{bottom:778.065000px;}
.y219{bottom:780.045000px;}
.yea{bottom:780.585000px;}
.y1da{bottom:782.025000px;}
.y292{bottom:783.285000px;}
.y106{bottom:784.725000px;}
.y72{bottom:786.345000px;}
.y1c8{bottom:792.105000px;}
.y1a6{bottom:794.265000px;}
.y24a{bottom:796.965000px;}
.y21{bottom:797.685000px;}
.y35{bottom:798.405000px;}
.y2d1{bottom:803.085000px;}
.y54{bottom:803.445000px;}
.y23f{bottom:803.985000px;}
.y16d{bottom:805.245000px;}
.y22e{bottom:805.965000px;}
.y2{bottom:807.225000px;}
.y1c7{bottom:816.045000px;}
.y71{bottom:817.305000px;}
.y1d9{bottom:818.025000px;}
.y1a5{bottom:818.385000px;}
.y2cb{bottom:823.065000px;}
.y28c{bottom:823.785000px;}
.y138{bottom:826.305000px;}
.y10d{bottom:826.845000px;}
.y20{bottom:827.565000px;}
.y1f2{bottom:827.925000px;}
.y240{bottom:828.105000px;}
.y34{bottom:829.545000px;}
.y22d{bottom:830.085000px;}
.y53{bottom:834.405000px;}
.y1{bottom:836.385000px;}
.y1c6{bottom:839.985000px;}
.ye9{bottom:843.405000px;}
.y274{bottom:845.385000px;}
.y70{bottom:848.445000px;}
.y137{bottom:851.190000px;}
.y218{bottom:852.090000px;}
.y1d8{bottom:854.070000px;}
.y1a4{bottom:854.250000px;}
.y1f{bottom:857.490000px;}
.y8a{bottom:860.370000px;}
.y33{bottom:860.550000px;}
.y1f1{bottom:863.970000px;}
.y1c5{bottom:864.150000px;}
.ye8{bottom:864.870000px;}
.y52{bottom:865.590000px;}
.y18c{bottom:867.390000px;}
.y10c{bottom:869.190000px;}
.y12b{bottom:876.030000px;}
.y1d7{bottom:878.010000px;}
.y6f{bottom:879.450000px;}
.y2ca{bottom:885.930000px;}
.ye7{bottom:886.290000px;}
.y1c4{bottom:888.090000px;}
.y1e{bottom:888.990000px;}
.y22c{bottom:890.070000px;}
.y1a3{bottom:890.250000px;}
.y89{bottom:891.510000px;}
.y51{bottom:896.550000px;}
.y18b{bottom:898.530000px;}
.y1f0{bottom:899.970000px;}
.y32{bottom:903.570000px;}
.y2cc{bottom:907.530000px;}
.y6e{bottom:910.590000px;}
.y223{bottom:912.030000px;}
.y10b{bottom:912.750000px;}
.y1d6{bottom:914.010000px;}
.yd7{bottom:915.810000px;}
.y1d{bottom:920.490000px;}
.y249{bottom:921.930000px;}
.y88{bottom:922.470000px;}
.y203{bottom:923.910000px;}
.y1c3{bottom:924.090000px;}
.y1a2{bottom:926.250000px;}
.y50{bottom:927.690000px;}
.y12d{bottom:928.590000px;}
.y18a{bottom:929.490000px;}
.y31{bottom:934.710000px;}
.y1ef{bottom:935.970000px;}
.y6d{bottom:941.550000px;}
.y1c2{bottom:948.030000px;}
.y1d5{bottom:950.010000px;}
.y1a1{bottom:950.190000px;}
.yd6{bottom:950.910000px;}
.y1c{bottom:951.810000px;}
.y129{bottom:953.430000px;}
.y87{bottom:953.610000px;}
.yfe{bottom:954.870000px;}
.y4f{bottom:958.650000px;}
.y202{bottom:959.910000px;}
.y30{bottom:965.670000px;}
.yd4{bottom:967.290000px;}
.y263{bottom:968.730000px;}
.y248{bottom:969.630000px;}
.y1c1{bottom:971.970000px;}
.y9e{bottom:972.510000px;}
.y1a0{bottom:974.310000px;}
.y105{bottom:977.550000px;}
.y1b{bottom:983.310000px;}
.y222{bottom:984.030000px;}
.y6c{bottom:984.570000px;}
.y1d4{bottom:986.010000px;}
.yd3{bottom:989.430000px;}
.y4e{bottom:989.790000px;}
.y1ee{bottom:995.910000px;}
.y2f{bottom:996.810000px;}
.y19f{bottom:998.250000px;}
.y104{bottom:1000.050000px;}
.y247{bottom:1000.770000px;}
.y9d{bottom:1003.650000px;}
.y128{bottom:1004.730000px;}
.y1a{bottom:1005.810000px;}
.y1c0{bottom:1007.970000px;}
.y6b{bottom:1015.710000px;}
.y4d{bottom:1019.670000px;}
.y221{bottom:1019.850000px;}
.y1d3{bottom:1022.010000px;}
.y103{bottom:1022.550000px;}
.y2e{bottom:1027.770000px;}
.y246{bottom:1031.730000px;}
.y1bf{bottom:1031.910000px;}
.y19e{bottom:1034.250000px;}
.y9c{bottom:1034.610000px;}
.y127{bottom:1035.690000px;}
.y23e{bottom:1043.970000px;}
.yf5{bottom:1045.230000px;}
.y6a{bottom:1046.670000px;}
.y19{bottom:1047.750000px;}
.ycd{bottom:1052.250000px;}
.y1be{bottom:1055.850000px;}
.y1d2{bottom:1057.830000px;}
.y19d{bottom:1058.190000px;}
.y2d{bottom:1058.910000px;}
.y245{bottom:1062.870000px;}
.y9b{bottom:1065.750000px;}
.yfd{bottom:1067.730000px;}
.y1ed{bottom:1067.910000px;}
.y2c9{bottom:1072.950000px;}
.y4c{bottom:1077.810000px;}
.y220{bottom:1079.970000px;}
.y19c{bottom:1083.210000px;}
.y18{bottom:1086.450000px;}
.y2c{bottom:1088.970000px;}
.yfb{bottom:1090.410000px;}
.y1bd{bottom:1091.850000px;}
.y2c5{bottom:1093.650000px;}
.y1d1{bottom:1093.830000px;}
.y9a{bottom:1096.710000px;}
.y1ec{bottom:1103.910000px;}
.y4b{bottom:1108.770000px;}
.y19b{bottom:1109.850000px;}
.y2b3{bottom:1114.350000px;}
.y1bc{bottom:1115.790000px;}
.y1d0{bottom:1128.570000px;}
.y17{bottom:1132.560000px;}
.yfa{bottom:1134.000000px;}
.y262{bottom:1135.080000px;}
.y2b{bottom:1139.940000px;}
.y2a{bottom:1170.900000px;}
.y14{bottom:1192.860000px;}
.h20{height:20.700000px;}
.h21{height:20.736000px;}
.h1d{height:21.060000px;}
.h19{height:21.420000px;}
.h10{height:21.600000px;}
.h12{height:21.636000px;}
.h1b{height:21.780000px;}
.h1f{height:21.960000px;}
.h13{height:22.680000px;}
.h11{height:22.860000px;}
.h2e{height:24.120000px;}
.h2c{height:24.300000px;}
.h2b{height:27.147656px;}
.h32{height:28.800000px;}
.h2a{height:31.860000px;}
.he{height:33.683203px;}
.h23{height:41.400000px;}
.h29{height:41.436000px;}
.h35{height:41.726953px;}
.h1e{height:42.840000px;}
.h25{height:42.876000px;}
.hd{height:46.736719px;}
.h31{height:47.520000px;}
.h34{height:47.556000px;}
.h8{height:50.273438px;}
.ha{height:50.800781px;}
.h2f{height:51.840000px;}
.h36{height:52.020000px;}
.h1a{height:54.596250px;}
.h2{height:55.987031px;}
.h28{height:57.796523px;}
.hc{height:58.429688px;}
.hb{height:59.343750px;}
.hf{height:61.043203px;}
.h39{height:61.223203px;}
.h18{height:62.100000px;}
.h4d{height:62.136000px;}
.h7{height:62.402344px;}
.h1c{height:64.620000px;}
.h6{height:65.144531px;}
.h38{height:65.707031px;}
.h37{height:69.260600px;}
.h4{height:76.219102px;}
.h2d{height:76.680000px;}
.h9{height:78.506367px;}
.h49{height:82.800000px;}
.h4f{height:82.836000px;}
.h3a{height:83.956641px;}
.h5{height:86.642227px;}
.h26{height:89.640000px;}
.h15{height:90.216000px;}
.h3{height:97.716797px;}
.h22{height:103.500000px;}
.h17{height:103.536000px;}
.h24{height:110.556000px;}
.h16{height:111.960000px;}
.h42{height:124.200000px;}
.h3b{height:124.236000px;}
.h3e{height:144.720000px;}
.h44{height:144.900000px;}
.h46{height:144.936000px;}
.h30{height:147.096000px;}
.h14{height:156.600000px;}
.h3f{height:165.630000px;}
.h27{height:169.410000px;}
.h33{height:180.030000px;}
.h45{height:186.150000px;}
.h50{height:186.300000px;}
.h3d{height:186.330000px;}
.h41{height:227.730000px;}
.h52{height:248.250000px;}
.h3c{height:248.430000px;}
.h40{height:269.130000px;}
.h47{height:289.830000px;}
.h43{height:310.395000px;}
.h4e{height:310.530000px;}
.h51{height:351.930000px;}
.h48{height:372.495000px;}
.h4c{height:372.630000px;}
.h4b{height:434.730000px;}
.h4a{height:621.075000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w16{width:94.500000px;}
.w12{width:129.996000px;}
.w8{width:135.036000px;}
.w9{width:154.290000px;}
.w13{width:154.470000px;}
.wb{width:162.360000px;}
.w15{width:162.720000px;}
.wa{width:192.630000px;}
.w14{width:192.810000px;}
.wd{width:317.730000px;}
.we{width:317.775000px;}
.w4{width:320.430000px;}
.w5{width:320.835000px;}
.w7{width:355.710000px;}
.w11{width:356.250000px;}
.w17{width:541.005000px;}
.wc{width:636.405000px;}
.w3{width:641.985000px;}
.w10{width:642.165000px;}
.wf{width:646.125000px;}
.w6{width:646.485000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:7.740000px;}
.x3c{left:10.800000px;}
.x39{left:18.900000px;}
.x30{left:24.480000px;}
.x24{left:25.560000px;}
.x3f{left:32.970000px;}
.x42{left:34.230000px;}
.x22{left:35.490000px;}
.x36{left:36.750000px;}
.x2d{left:37.800000px;}
.x31{left:39.240000px;}
.x33{left:40.314000px;}
.x34{left:41.430000px;}
.x35{left:43.380000px;}
.x27{left:45.180000px;}
.x32{left:48.240000px;}
.x37{left:52.020000px;}
.x2f{left:55.980000px;}
.x2e{left:58.530000px;}
.x1d{left:60.834000px;}
.x28{left:63.030000px;}
.x29{left:64.980000px;}
.x38{left:66.774000px;}
.x25{left:93.954000px;}
.x41{left:96.294000px;}
.x2c{left:115.410000px;}
.x1b{left:117.030000px;}
.x3b{left:118.836000px;}
.xc{left:127.655987px;}
.x19{left:129.594000px;}
.x20{left:142.374000px;}
.xd{left:144.215987px;}
.x3a{left:153.029987px;}
.x11{left:154.649987px;}
.x8{left:160.409987px;}
.x7{left:167.789987px;}
.x12{left:180.749987px;}
.x2a{left:188.859000px;}
.x17{left:191.739000px;}
.xb{left:217.289987px;}
.x46{left:223.770000px;}
.x5{left:225.209987px;}
.xe{left:237.089987px;}
.xf{left:238.169987px;}
.x3{left:275.969987px;}
.x3e{left:278.319000px;}
.x1f{left:280.479000px;}
.x2b{left:284.799000px;}
.x18{left:287.679000px;}
.x4{left:298.874987px;}
.xa{left:316.874987px;}
.x26{left:321.735000px;}
.x14{left:365.294987px;}
.x16{left:366.734987px;}
.x1e{left:368.534987px;}
.x6{left:399.314987px;}
.x45{left:403.814987px;}
.x9{left:405.794987px;}
.x2{left:446.474987px;}
.x1a{left:449.535000px;}
.x13{left:473.114987px;}
.x21{left:484.815000px;}
.x43{left:533.984987px;}
.x44{left:537.764987px;}
.x40{left:616.065000px;}
.x23{left:620.565000px;}
.x1{left:629.924987px;}
.x15{left:722.129987px;}
.x3d{left:746.249987px;}
.x10{left:755.969987px;}
@media print{
.v1{vertical-align:-24.320000pt;}
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.v2{vertical-align:24.320000pt;}
.ls15{letter-spacing:-8.426667pt;}
.ls1d{letter-spacing:-3.968000pt;}
.ls11{letter-spacing:-3.392000pt;}
.lsa{letter-spacing:-2.560000pt;}
.lsc{letter-spacing:-1.408000pt;}
.ls16{letter-spacing:-0.832000pt;}
.ls29{letter-spacing:-0.768000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.064000pt;}
.ls14{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.233067pt;}
.ls1a{letter-spacing:0.239467pt;}
.ls12{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.512000pt;}
.ls1f{letter-spacing:0.608000pt;}
.ls1{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.768000pt;}
.ls13{letter-spacing:0.832000pt;}
.ls1b{letter-spacing:1.088000pt;}
.ls21{letter-spacing:1.728000pt;}
.ls28{letter-spacing:1.920000pt;}
.ls22{letter-spacing:2.368000pt;}
.ls24{letter-spacing:3.008000pt;}
.ls9{letter-spacing:3.488000pt;}
.ls20{letter-spacing:3.648000pt;}
.ls26{letter-spacing:4.288000pt;}
.ls23{letter-spacing:4.928000pt;}
.ls1c{letter-spacing:5.728000pt;}
.ls25{letter-spacing:6.208000pt;}
.ls27{letter-spacing:11.328000pt;}
.ls1e{letter-spacing:13.888000pt;}
.ls17{letter-spacing:19.200000pt;}
.ls18{letter-spacing:113.920000pt;}
.lsf{letter-spacing:172.778667pt;}
.ws0{word-spacing:-85.120000pt;}
.ws8{word-spacing:-64.000000pt;}
.wse{word-spacing:-16.768000pt;}
.ws4{word-spacing:-16.640000pt;}
.wsa{word-spacing:-16.512000pt;}
.ws18{word-spacing:-16.256000pt;}
.ws17{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.wsb{word-spacing:-14.720000pt;}
.ws13{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.440000pt;}
.ws14{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.992000pt;}
.ws10{word-spacing:-12.736000pt;}
.ws11{word-spacing:-12.608000pt;}
.ws16{word-spacing:-12.032000pt;}
.ws15{word-spacing:-10.959467pt;}
.wsd{word-spacing:-10.720000pt;}
.wsf{word-spacing:-8.640000pt;}
.ws12{word-spacing:-7.573333pt;}
.ws1{word-spacing:0.000000pt;}
._25{margin-left:-92.624295pt;}
._2c{margin-left:-87.200000pt;}
._2e{margin-left:-69.888000pt;}
._2d{margin-left:-18.293333pt;}
._8{margin-left:-14.720000pt;}
._7{margin-left:-11.157333pt;}
._6{margin-left:-9.354667pt;}
._1{margin-left:-7.488000pt;}
._24{margin-left:-6.464853pt;}
._0{margin-left:-5.568000pt;}
._5{margin-left:-3.840000pt;}
._4{margin-left:-2.894080pt;}
._c{margin-left:-1.865813pt;}
._3{margin-left:-0.898560pt;}
._2{width:1.152000pt;}
._9{width:2.240000pt;}
._e{width:3.274667pt;}
._17{width:4.463787pt;}
._1a{width:5.888000pt;}
._10{width:6.826667pt;}
._14{width:8.298667pt;}
._13{width:9.344000pt;}
._d{width:10.688000pt;}
._a{width:12.416000pt;}
._b{width:13.674667pt;}
._f{width:14.720000pt;}
._1f{width:17.154560pt;}
._15{width:18.304000pt;}
._16{width:19.264000pt;}
._23{width:20.352000pt;}
._11{width:21.376000pt;}
._12{width:22.794667pt;}
._1c{width:24.055893pt;}
._20{width:25.664000pt;}
._21{width:26.752000pt;}
._1b{width:28.160000pt;}
._1d{width:29.322667pt;}
._31{width:30.281813pt;}
._1e{width:31.296000pt;}
._30{width:32.320000pt;}
._2f{width:33.472000pt;}
._18{width:35.050667pt;}
._19{width:36.661333pt;}
._28{width:39.104000pt;}
._29{width:40.064000pt;}
._2b{width:61.987413pt;}
._2a{width:67.008000pt;}
._26{width:113.152000pt;}
._27{width:114.445227pt;}
._33{width:478.216107pt;}
._32{width:479.618560pt;}
._22{width:752.012373pt;}
.fs8{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs9{font-size:67.461249pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:96.000000pt;}
.fsa{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.yd2{bottom:3.520000pt;}
.ye2{bottom:3.840000pt;}
.yd5{bottom:4.160000pt;}
.yb4{bottom:4.320000pt;}
.yde{bottom:4.480000pt;}
.ye6{bottom:4.640000pt;}
.ye4{bottom:4.800000pt;}
.yb9{bottom:5.280000pt;}
.yb6{bottom:5.440000pt;}
.y12e{bottom:6.560000pt;}
.y12a{bottom:6.720000pt;}
.y149{bottom:8.960000pt;}
.y102{bottom:9.600000pt;}
.yc6{bottom:10.120000pt;}
.y140{bottom:10.720000pt;}
.ycc{bottom:11.040000pt;}
.y130{bottom:12.800000pt;}
.yc1{bottom:14.080000pt;}
.y157{bottom:15.840000pt;}
.y17c{bottom:16.000000pt;}
.y124{bottom:20.480000pt;}
.y28b{bottom:21.760000pt;}
.y283{bottom:21.914667pt;}
.yd1{bottom:21.920000pt;}
.yf1{bottom:21.946667pt;}
.y10e{bottom:21.960000pt;}
.ye3{bottom:23.194667pt;}
.yfc{bottom:23.200000pt;}
.y13a{bottom:27.360000pt;}
.y101{bottom:28.000000pt;}
.yf9{bottom:28.160000pt;}
.yc5{bottom:28.520000pt;}
.ycb{bottom:29.440000pt;}
.y12f{bottom:31.200000pt;}
.yc0{bottom:32.480000pt;}
.y156{bottom:38.240000pt;}
.y17b{bottom:38.400000pt;}
.y28a{bottom:40.160000pt;}
.y261{bottom:40.314667pt;}
.yd0{bottom:40.320000pt;}
.yf0{bottom:40.346667pt;}
.y25b{bottom:40.360000pt;}
.y17a{bottom:40.512000pt;}
.y136{bottom:42.240000pt;}
.ye0{bottom:42.554667pt;}
.y17d{bottom:44.832000pt;}
.y100{bottom:46.400000pt;}
.yf8{bottom:46.560000pt;}
.yc4{bottom:46.920000pt;}
.yca{bottom:47.840000pt;}
.y155{bottom:49.632000pt;}
.ybf{bottom:50.880000pt;}
.y16{bottom:51.552000pt;}
.y12c{bottom:53.280000pt;}
.y123{bottom:55.232000pt;}
.y289{bottom:58.560000pt;}
.y260{bottom:58.714667pt;}
.ycf{bottom:58.720000pt;}
.yef{bottom:58.746667pt;}
.y24d{bottom:58.760000pt;}
.y135{bottom:60.640000pt;}
.yff{bottom:64.800000pt;}
.yf7{bottom:64.960000pt;}
.yc3{bottom:65.320000pt;}
.yc9{bottom:66.240000pt;}
.ybe{bottom:69.280000pt;}
.y15{bottom:70.112000pt;}
.y146{bottom:71.520000pt;}
.yb2{bottom:76.192000pt;}
.y288{bottom:76.960000pt;}
.y25f{bottom:77.114667pt;}
.yed{bottom:77.120000pt;}
.yce{bottom:77.146667pt;}
.y24c{bottom:77.160000pt;}
.y134{bottom:79.040000pt;}
.y10a{bottom:80.520000pt;}
.yf6{bottom:83.386667pt;}
.yc8{bottom:84.640000pt;}
.ybd{bottom:87.680000pt;}
.y145{bottom:89.920000pt;}
.y287{bottom:95.360000pt;}
.y25e{bottom:95.514667pt;}
.y266{bottom:95.520000pt;}
.y255{bottom:95.546667pt;}
.y24b{bottom:95.560000pt;}
.ye5{bottom:96.352000pt;}
.y133{bottom:97.440000pt;}
.y126{bottom:97.952000pt;}
.y4a{bottom:98.112000pt;}
.y23d{bottom:98.272000pt;}
.y25c{bottom:98.592000pt;}
.y109{bottom:98.920000pt;}
.y26e{bottom:104.032000pt;}
.y2be{bottom:104.672000pt;}
.ybc{bottom:106.080000pt;}
.y211{bottom:107.072000pt;}
.y144{bottom:108.320000pt;}
.y16c{bottom:108.672000pt;}
.y154{bottom:112.192000pt;}
.y69{bottom:113.152000pt;}
.y25d{bottom:113.754667pt;}
.y286{bottom:113.760000pt;}
.y273{bottom:113.914667pt;}
.y265{bottom:113.920000pt;}
.y254{bottom:113.946667pt;}
.y25a{bottom:113.960000pt;}
.ya7{bottom:114.752000pt;}
.y179{bottom:114.912000pt;}
.y132{bottom:115.880000pt;}
.ydf{bottom:116.512000pt;}
.y108{bottom:117.320000pt;}
.y244{bottom:117.792000pt;}
.y2b2{bottom:118.912000pt;}
.yb1{bottom:119.392000pt;}
.y1eb{bottom:119.552000pt;}
.y13{bottom:120.992000pt;}
.y291{bottom:122.432000pt;}
.y280{bottom:123.072000pt;}
.ybb{bottom:124.320000pt;}
.y86{bottom:125.632000pt;}
.y49{bottom:125.792000pt;}
.y143{bottom:126.746667pt;}
.y201{bottom:128.352000pt;}
.y122{bottom:128.672000pt;}
.y1bb{bottom:129.632000pt;}
.y23c{bottom:130.112000pt;}
.y99{bottom:131.872000pt;}
.y285{bottom:132.160000pt;}
.y27c{bottom:132.200000pt;}
.y272{bottom:132.314667pt;}
.y264{bottom:132.320000pt;}
.y253{bottom:132.346667pt;}
.y259{bottom:132.360000pt;}
.y107{bottom:135.720000pt;}
.y16b{bottom:136.186667pt;}
.y165{bottom:137.146667pt;}
.y210{bottom:139.066667pt;}
.y153{bottom:139.706667pt;}
.y68{bottom:140.826667pt;}
.y2c8{bottom:141.466667pt;}
.y178{bottom:142.426667pt;}
.y142{bottom:145.146667pt;}
.ya6{bottom:146.106667pt;}
.y189{bottom:146.906667pt;}
.yb0{bottom:147.066667pt;}
.y243{bottom:149.786667pt;}
.y2d0{bottom:150.560000pt;}
.y284{bottom:150.586667pt;}
.y27b{bottom:150.600000pt;}
.y271{bottom:150.714667pt;}
.y2b1{bottom:150.720000pt;}
.y252{bottom:150.746667pt;}
.y282{bottom:150.754667pt;}
.y258{bottom:150.760000pt;}
.yc7{bottom:152.026667pt;}
.y12{bottom:152.186667pt;}
.y85{bottom:153.146667pt;}
.y48{bottom:153.306667pt;}
.ye1{bottom:155.226667pt;}
.y121{bottom:156.346667pt;}
.y1ba{bottom:157.146667pt;}
.y200{bottom:160.346667pt;}
.y23b{bottom:162.106667pt;}
.y16a{bottom:163.866667pt;}
.y164{bottom:164.826667pt;}
.y152{bottom:167.386667pt;}
.y67{bottom:168.346667pt;}
.y2cf{bottom:168.960000pt;}
.y27a{bottom:169.000000pt;}
.y2b0{bottom:169.120000pt;}
.y251{bottom:169.146667pt;}
.y270{bottom:169.154667pt;}
.y26b{bottom:169.160000pt;}
.y98{bottom:170.106667pt;}
.y20f{bottom:171.066667pt;}
.y1ea{bottom:172.826667pt;}
.ya5{bottom:173.306667pt;}
.y188{bottom:174.426667pt;}
.yaf{bottom:174.586667pt;}
.y84{bottom:180.826667pt;}
.y47{bottom:180.986667pt;}
.y242{bottom:181.626667pt;}
.y11{bottom:182.266667pt;}
.y23a{bottom:183.386667pt;}
.y120{bottom:183.866667pt;}
.y2ce{bottom:187.360000pt;}
.y279{bottom:187.400000pt;}
.y2af{bottom:187.520000pt;}
.y250{bottom:187.546667pt;}
.y26f{bottom:187.554667pt;}
.y26a{bottom:187.560000pt;}
.y169{bottom:191.386667pt;}
.y163{bottom:192.346667pt;}
.y151{bottom:194.906667pt;}
.y1b9{bottom:195.546667pt;}
.y173{bottom:196.026667pt;}
.y177{bottom:197.626667pt;}
.yae{bottom:201.306667pt;}
.y187{bottom:202.106667pt;}
.y20e{bottom:202.906667pt;}
.y21c{bottom:203.066667pt;}
.y1e9{bottom:204.826667pt;}
.y2cd{bottom:205.786667pt;}
.y278{bottom:205.800000pt;}
.y2ae{bottom:205.920000pt;}
.y24f{bottom:205.946667pt;}
.y281{bottom:205.954667pt;}
.y269{bottom:205.960000pt;}
.y66{bottom:206.586667pt;}
.y83{bottom:208.346667pt;}
.y46{bottom:208.506667pt;}
.y11f{bottom:211.546667pt;}
.y19a{bottom:212.826667pt;}
.y10{bottom:213.146667pt;}
.y241{bottom:213.626667pt;}
.y239{bottom:215.386667pt;}
.ydd{bottom:218.106667pt;}
.y15a{bottom:219.066667pt;}
.y162{bottom:220.026667pt;}
.y150{bottom:222.586667pt;}
.y1b8{bottom:223.066667pt;}
.y277{bottom:224.200000pt;}
.y2ad{bottom:224.320000pt;}
.y1ff{bottom:224.346667pt;}
.y2c4{bottom:224.354667pt;}
.y268{bottom:224.360000pt;}
.y176{bottom:225.306667pt;}
.y257{bottom:228.026667pt;}
.y186{bottom:229.626667pt;}
.y28f{bottom:233.466667pt;}
.y65{bottom:234.266667pt;}
.y20d{bottom:234.906667pt;}
.y82{bottom:235.866667pt;}
.y1e8{bottom:236.826667pt;}
.y11e{bottom:239.066667pt;}
.y199{bottom:240.506667pt;}
.y276{bottom:242.600000pt;}
.y2ac{bottom:242.746667pt;}
.y2c3{bottom:242.754667pt;}
.y290{bottom:242.760000pt;}
.ydc{bottom:245.626667pt;}
.y97{bottom:246.586667pt;}
.y45{bottom:246.746667pt;}
.y238{bottom:247.386667pt;}
.y161{bottom:247.546667pt;}
.y14f{bottom:250.106667pt;}
.yf{bottom:250.266667pt;}
.yc2{bottom:252.186667pt;}
.yad{bottom:252.826667pt;}
.y1b7{bottom:255.066667pt;}
.y1fe{bottom:256.346667pt;}
.y185{bottom:257.306667pt;}
.y1e7{bottom:258.146667pt;}
.y296{bottom:261.000000pt;}
.y275{bottom:261.026667pt;}
.y2ab{bottom:261.146667pt;}
.y2c2{bottom:261.154667pt;}
.y2bb{bottom:261.160000pt;}
.y64{bottom:261.826667pt;}
.y172{bottom:263.426667pt;}
.y81{bottom:263.586667pt;}
.y11d{bottom:266.786667pt;}
.y20c{bottom:266.946667pt;}
.y198{bottom:268.066667pt;}
.ydb{bottom:272.386667pt;}
.y96{bottom:274.306667pt;}
.y44{bottom:274.466667pt;}
.y160{bottom:275.266667pt;}
.y1b6{bottom:276.386667pt;}
.y22a{bottom:277.666667pt;}
.y14e{bottom:277.826667pt;}
.y29b{bottom:278.626667pt;}
.y295{bottom:279.400000pt;}
.y237{bottom:279.426667pt;}
.y2aa{bottom:279.546667pt;}
.y2c1{bottom:279.554667pt;}
.y2ba{bottom:279.560000pt;}
.yac{bottom:280.546667pt;}
.y184{bottom:284.866667pt;}
.ye{bottom:287.386667pt;}
.y217{bottom:288.226667pt;}
.y1fd{bottom:288.386667pt;}
.y63{bottom:289.506667pt;}
.y1e6{bottom:290.146667pt;}
.y80{bottom:291.106667pt;}
.y11c{bottom:294.306667pt;}
.y197{bottom:295.746667pt;}
.y294{bottom:297.800000pt;}
.y2a9{bottom:297.946667pt;}
.y2c0{bottom:297.954667pt;}
.y2b9{bottom:297.960000pt;}
.y20b{bottom:298.946667pt;}
.y95{bottom:301.826667pt;}
.y43{bottom:301.986667pt;}
.y15f{bottom:302.786667pt;}
.yda{bottom:304.386667pt;}
.y14d{bottom:305.346667pt;}
.y26d{bottom:307.106667pt;}
.yab{bottom:308.066667pt;}
.y1b5{bottom:308.386667pt;}
.y229{bottom:309.666667pt;}
.y29a{bottom:310.626667pt;}
.y236{bottom:311.426667pt;}
.y183{bottom:312.546667pt;}
.y293{bottom:316.226667pt;}
.y2a8{bottom:316.346667pt;}
.y2bf{bottom:316.354667pt;}
.y2b8{bottom:316.360000pt;}
.y62{bottom:317.026667pt;}
.y7f{bottom:318.786667pt;}
.y1fc{bottom:320.226667pt;}
.y21f{bottom:320.386667pt;}
.y11b{bottom:321.986667pt;}
.y196{bottom:323.266667pt;}
.yd{bottom:324.546667pt;}
.y299{bottom:326.146667pt;}
.y94{bottom:329.506667pt;}
.y42{bottom:329.666667pt;}
.y15e{bottom:330.466667pt;}
.y20a{bottom:330.946667pt;}
.yba{bottom:333.026667pt;}
.y2a7{bottom:334.746667pt;}
.y2b7{bottom:334.760000pt;}
.yaa{bottom:335.746667pt;}
.y14c{bottom:336.706667pt;}
.y182{bottom:340.066667pt;}
.y1b4{bottom:340.386667pt;}
.y228{bottom:341.666667pt;}
.y235{bottom:343.426667pt;}
.y27f{bottom:344.546667pt;}
.y61{bottom:344.706667pt;}
.y7e{bottom:346.306667pt;}
.yd9{bottom:349.666667pt;}
.y195{bottom:350.946667pt;}
.y14b{bottom:351.106667pt;}
.y1fb{bottom:352.226667pt;}
.y2a6{bottom:353.146667pt;}
.y2b6{bottom:353.160000pt;}
.y1e5{bottom:353.986667pt;}
.y93{bottom:357.026667pt;}
.y41{bottom:357.186667pt;}
.y15d{bottom:357.986667pt;}
.y11a{bottom:360.226667pt;}
.yc{bottom:361.666667pt;}
.y209{bottom:362.946667pt;}
.y175{bottom:363.266667pt;}
.y181{bottom:367.746667pt;}
.y2a5{bottom:371.546667pt;}
.y2b5{bottom:371.560000pt;}
.y60{bottom:372.226667pt;}
.y1fa{bottom:373.506667pt;}
.y227{bottom:373.666667pt;}
.y7d{bottom:373.986667pt;}
.y234{bottom:375.426667pt;}
.y194{bottom:378.466667pt;}
.yd8{bottom:381.026667pt;}
.y2c7{bottom:381.346667pt;}
.y216{bottom:384.226667pt;}
.y92{bottom:384.706667pt;}
.y40{bottom:384.866667pt;}
.y15c{bottom:385.666667pt;}
.y1e4{bottom:385.986667pt;}
.y119{bottom:387.906667pt;}
.y2a4{bottom:389.946667pt;}
.y1b3{bottom:393.666667pt;}
.y141{bottom:393.986667pt;}
.y256{bottom:394.306667pt;}
.y208{bottom:394.946667pt;}
.y180{bottom:395.266667pt;}
.yf4{bottom:395.426667pt;}
.yb{bottom:398.786667pt;}
.y5f{bottom:399.906667pt;}
.y298{bottom:400.386667pt;}
.y7c{bottom:401.506667pt;}
.y1f9{bottom:405.506667pt;}
.y233{bottom:407.426667pt;}
.y2a3{bottom:408.346667pt;}
.y91{bottom:412.226667pt;}
.y3f{bottom:412.386667pt;}
.y15b{bottom:413.186667pt;}
.yf3{bottom:414.466667pt;}
.y1b2{bottom:414.946667pt;}
.y118{bottom:415.426667pt;}
.y215{bottom:416.226667pt;}
.y193{bottom:416.706667pt;}
.ya4{bottom:417.186667pt;}
.y1e3{bottom:417.986667pt;}
.y26c{bottom:418.146667pt;}
.y17f{bottom:422.946667pt;}
.ya{bottom:425.346667pt;}
.y2a2{bottom:426.746667pt;}
.y1f8{bottom:426.946667pt;}
.y5e{bottom:427.426667pt;}
.y7b{bottom:429.186667pt;}
.y14a{bottom:431.426667pt;}
.y2bd{bottom:436.546667pt;}
.y1b1{bottom:437.186667pt;}
.y232{bottom:439.266667pt;}
.y90{bottom:439.906667pt;}
.y117{bottom:442.946667pt;}
.y192{bottom:444.386667pt;}
.y2a1{bottom:445.146667pt;}
.y214{bottom:448.226667pt;}
.y1e2{bottom:449.986667pt;}
.y17e{bottom:450.466667pt;}
.y3e{bottom:450.626667pt;}
.y9{bottom:451.746667pt;}
.yf2{bottom:451.906667pt;}
.y5d{bottom:455.106667pt;}
.ya3{bottom:455.426667pt;}
.y27e{bottom:455.586667pt;}
.y7a{bottom:456.706667pt;}
.y1f7{bottom:458.786667pt;}
.y226{bottom:458.946667pt;}
.y1b0{bottom:460.866667pt;}
.y2a0{bottom:463.546667pt;}
.y125{bottom:467.426667pt;}
.y21e{bottom:469.506667pt;}
.y116{bottom:470.626667pt;}
.y1e1{bottom:471.266667pt;}
.y191{bottom:471.906667pt;}
.yb8{bottom:473.026667pt;}
.y148{bottom:474.306667pt;}
.y2d3{bottom:476.866667pt;}
.y8f{bottom:478.146667pt;}
.y3d{bottom:478.306667pt;}
.y213{bottom:480.226667pt;}
.y29{bottom:481.346667pt;}
.y29f{bottom:481.946667pt;}
.ya2{bottom:483.106667pt;}
.y79{bottom:484.386667pt;}
.y24e{bottom:486.946667pt;}
.y8{bottom:488.866667pt;}
.yee{bottom:489.346667pt;}
.y1f6{bottom:490.786667pt;}
.y28e{bottom:491.746667pt;}
.y2d2{bottom:492.386667pt;}
.y1af{bottom:492.866667pt;}
.y5c{bottom:493.346667pt;}
.yb7{bottom:493.826667pt;}
.y159{bottom:495.106667pt;}
.y115{bottom:498.146667pt;}
.y190{bottom:499.586667pt;}
.y29e{bottom:500.386667pt;}
.y1cf{bottom:501.506667pt;}
.y1e0{bottom:503.266667pt;}
.y8e{bottom:505.666667pt;}
.y3c{bottom:505.826667pt;}
.ya1{bottom:510.653333pt;}
.y78{bottom:511.933333pt;}
.y212{bottom:512.093333pt;}
.y21d{bottom:512.253333pt;}
.yb5{bottom:513.693333pt;}
.y1ae{bottom:514.173333pt;}
.y28{bottom:514.493333pt;}
.y147{bottom:517.213333pt;}
.y29d{bottom:518.786667pt;}
.y5b{bottom:520.893333pt;}
.y158{bottom:522.653333pt;}
.y1f5{bottom:522.813333pt;}
.y114{bottom:525.853333pt;}
.y7{bottom:526.146667pt;}
.y18f{bottom:527.133333pt;}
.y2bc{bottom:529.213333pt;}
.y8d{bottom:533.373333pt;}
.y3b{bottom:533.533333pt;}
.yb3{bottom:534.653333pt;}
.y1df{bottom:535.293333pt;}
.y1ad{bottom:535.613333pt;}
.y29c{bottom:537.186667pt;}
.y77{bottom:539.613333pt;}
.y27{bottom:542.653333pt;}
.y207{bottom:544.093333pt;}
.ya0{bottom:547.773333pt;}
.y5a{bottom:548.573333pt;}
.y168{bottom:550.173333pt;}
.y113{bottom:553.373333pt;}
.y13c{bottom:554.653333pt;}
.y18e{bottom:554.813333pt;}
.y1ce{bottom:554.973333pt;}
.y1ac{bottom:556.893333pt;}
.y8c{bottom:560.893333pt;}
.y3a{bottom:561.053333pt;}
.y6{bottom:563.933333pt;}
.y22b{bottom:565.373333pt;}
.y225{bottom:565.533333pt;}
.y297{bottom:566.653333pt;}
.ya9{bottom:567.133333pt;}
.y1de{bottom:567.293333pt;}
.y26{bottom:570.653333pt;}
.y59{bottom:576.093333pt;}
.y76{bottom:577.853333pt;}
.y13f{bottom:580.893333pt;}
.y112{bottom:581.053333pt;}
.y18d{bottom:581.533333pt;}
.yec{bottom:582.013333pt;}
.y9f{bottom:584.893333pt;}
.y1cd{bottom:586.813333pt;}
.y8b{bottom:588.573333pt;}
.y39{bottom:588.733333pt;}
.y1ab{bottom:588.893333pt;}
.y171{bottom:594.813333pt;}
.y224{bottom:597.373333pt;}
.y25{bottom:598.653333pt;}
.y1dd{bottom:599.293333pt;}
.y28d{bottom:602.813333pt;}
.y13e{bottom:603.133333pt;}
.y2b4{bottom:603.453333pt;}
.y58{bottom:603.773333pt;}
.y5{bottom:604.413333pt;}
.ya8{bottom:605.373333pt;}
.y206{bottom:608.093333pt;}
.y1cc{bottom:608.253333pt;}
.y1aa{bottom:610.173333pt;}
.y111{bottom:613.053333pt;}
.y75{bottom:616.093333pt;}
.y38{bottom:616.253333pt;}
.y1f4{bottom:618.813333pt;}
.y231{bottom:620.573333pt;}
.y267{bottom:621.213333pt;}
.y27d{bottom:621.853333pt;}
.y170{bottom:622.333333pt;}
.y13d{bottom:625.213333pt;}
.y24{bottom:626.653333pt;}
.y21b{bottom:629.373333pt;}
.y1cb{bottom:629.533333pt;}
.y1dc{bottom:631.133333pt;}
.y57{bottom:631.293333pt;}
.y1a9{bottom:631.453333pt;}
.y167{bottom:633.053333pt;}
.y205{bottom:640.093333pt;}
.y4{bottom:643.453333pt;}
.y74{bottom:643.773333pt;}
.y37{bottom:643.933333pt;}
.y110{bottom:644.413333pt;}
.y131{bottom:647.293333pt;}
.y16f{bottom:650.013333pt;}
.y1ca{bottom:650.813333pt;}
.y230{bottom:652.573333pt;}
.y1a8{bottom:652.733333pt;}
.y23{bottom:654.653333pt;}
.y2c6{bottom:658.013333pt;}
.y10f{bottom:658.813333pt;}
.y56{bottom:658.973333pt;}
.y166{bottom:660.573333pt;}
.y21a{bottom:661.373333pt;}
.y1db{bottom:663.133333pt;}
.y13b{bottom:669.533333pt;}
.y73{bottom:671.293333pt;}
.y204{bottom:672.093333pt;}
.yeb{bottom:674.653333pt;}
.y16e{bottom:677.533333pt;}
.y3{bottom:678.653333pt;}
.y36{bottom:682.173333pt;}
.y22{bottom:682.493333pt;}
.y1f3{bottom:682.653333pt;}
.y1c9{bottom:682.813333pt;}
.y22f{bottom:684.573333pt;}
.y1a7{bottom:684.733333pt;}
.y55{bottom:686.493333pt;}
.y174{bottom:688.253333pt;}
.y139{bottom:691.613333pt;}
.y219{bottom:693.373333pt;}
.yea{bottom:693.853333pt;}
.y1da{bottom:695.133333pt;}
.y292{bottom:696.253333pt;}
.y106{bottom:697.533333pt;}
.y72{bottom:698.973333pt;}
.y1c8{bottom:704.093333pt;}
.y1a6{bottom:706.013333pt;}
.y24a{bottom:708.413333pt;}
.y21{bottom:709.053333pt;}
.y35{bottom:709.693333pt;}
.y2d1{bottom:713.853333pt;}
.y54{bottom:714.173333pt;}
.y23f{bottom:714.653333pt;}
.y16d{bottom:715.773333pt;}
.y22e{bottom:716.413333pt;}
.y2{bottom:717.533333pt;}
.y1c7{bottom:725.373333pt;}
.y71{bottom:726.493333pt;}
.y1d9{bottom:727.133333pt;}
.y1a5{bottom:727.453333pt;}
.y2cb{bottom:731.613333pt;}
.y28c{bottom:732.253333pt;}
.y138{bottom:734.493333pt;}
.y10d{bottom:734.973333pt;}
.y20{bottom:735.613333pt;}
.y1f2{bottom:735.933333pt;}
.y240{bottom:736.093333pt;}
.y34{bottom:737.373333pt;}
.y22d{bottom:737.853333pt;}
.y53{bottom:741.693333pt;}
.y1{bottom:743.453333pt;}
.y1c6{bottom:746.653333pt;}
.ye9{bottom:749.693333pt;}
.y274{bottom:751.453333pt;}
.y70{bottom:754.173333pt;}
.y137{bottom:756.613333pt;}
.y218{bottom:757.413333pt;}
.y1d8{bottom:759.173333pt;}
.y1a4{bottom:759.333333pt;}
.y1f{bottom:762.213333pt;}
.y8a{bottom:764.773333pt;}
.y33{bottom:764.933333pt;}
.y1f1{bottom:767.973333pt;}
.y1c5{bottom:768.133333pt;}
.ye8{bottom:768.773333pt;}
.y52{bottom:769.413333pt;}
.y18c{bottom:771.013333pt;}
.y10c{bottom:772.613333pt;}
.y12b{bottom:778.693333pt;}
.y1d7{bottom:780.453333pt;}
.y6f{bottom:781.733333pt;}
.y2ca{bottom:787.493333pt;}
.ye7{bottom:787.813333pt;}
.y1c4{bottom:789.413333pt;}
.y1e{bottom:790.213333pt;}
.y22c{bottom:791.173333pt;}
.y1a3{bottom:791.333333pt;}
.y89{bottom:792.453333pt;}
.y51{bottom:796.933333pt;}
.y18b{bottom:798.693333pt;}
.y1f0{bottom:799.973333pt;}
.y32{bottom:803.173333pt;}
.y2cc{bottom:806.693333pt;}
.y6e{bottom:809.413333pt;}
.y223{bottom:810.693333pt;}
.y10b{bottom:811.333333pt;}
.y1d6{bottom:812.453333pt;}
.yd7{bottom:814.053333pt;}
.y1d{bottom:818.213333pt;}
.y249{bottom:819.493333pt;}
.y88{bottom:819.973333pt;}
.y203{bottom:821.253333pt;}
.y1c3{bottom:821.413333pt;}
.y1a2{bottom:823.333333pt;}
.y50{bottom:824.613333pt;}
.y12d{bottom:825.413333pt;}
.y18a{bottom:826.213333pt;}
.y31{bottom:830.853333pt;}
.y1ef{bottom:831.973333pt;}
.y6d{bottom:836.933333pt;}
.y1c2{bottom:842.693333pt;}
.y1d5{bottom:844.453333pt;}
.y1a1{bottom:844.613333pt;}
.yd6{bottom:845.253333pt;}
.y1c{bottom:846.053333pt;}
.y129{bottom:847.493333pt;}
.y87{bottom:847.653333pt;}
.yfe{bottom:848.773333pt;}
.y4f{bottom:852.133333pt;}
.y202{bottom:853.253333pt;}
.y30{bottom:858.373333pt;}
.yd4{bottom:859.813333pt;}
.y263{bottom:861.093333pt;}
.y248{bottom:861.893333pt;}
.y1c1{bottom:863.973333pt;}
.y9e{bottom:864.453333pt;}
.y1a0{bottom:866.053333pt;}
.y105{bottom:868.933333pt;}
.y1b{bottom:874.053333pt;}
.y222{bottom:874.693333pt;}
.y6c{bottom:875.173333pt;}
.y1d4{bottom:876.453333pt;}
.yd3{bottom:879.493333pt;}
.y4e{bottom:879.813333pt;}
.y1ee{bottom:885.253333pt;}
.y2f{bottom:886.053333pt;}
.y19f{bottom:887.333333pt;}
.y104{bottom:888.933333pt;}
.y247{bottom:889.573333pt;}
.y9d{bottom:892.133333pt;}
.y128{bottom:893.093333pt;}
.y1a{bottom:894.053333pt;}
.y1c0{bottom:895.973333pt;}
.y6b{bottom:902.853333pt;}
.y4d{bottom:906.373333pt;}
.y221{bottom:906.533333pt;}
.y1d3{bottom:908.453333pt;}
.y103{bottom:908.933333pt;}
.y2e{bottom:913.573333pt;}
.y246{bottom:917.093333pt;}
.y1bf{bottom:917.253333pt;}
.y19e{bottom:919.333333pt;}
.y9c{bottom:919.653333pt;}
.y127{bottom:920.613333pt;}
.y23e{bottom:927.973333pt;}
.yf5{bottom:929.093333pt;}
.y6a{bottom:930.373333pt;}
.y19{bottom:931.333333pt;}
.ycd{bottom:935.333333pt;}
.y1be{bottom:938.533333pt;}
.y1d2{bottom:940.293333pt;}
.y19d{bottom:940.613333pt;}
.y2d{bottom:941.253333pt;}
.y245{bottom:944.773333pt;}
.y9b{bottom:947.333333pt;}
.yfd{bottom:949.093333pt;}
.y1ed{bottom:949.253333pt;}
.y2c9{bottom:953.733333pt;}
.y4c{bottom:958.053333pt;}
.y220{bottom:959.973333pt;}
.y19c{bottom:962.853333pt;}
.y18{bottom:965.733333pt;}
.y2c{bottom:967.973333pt;}
.yfb{bottom:969.253333pt;}
.y1bd{bottom:970.533333pt;}
.y2c5{bottom:972.133333pt;}
.y1d1{bottom:972.293333pt;}
.y9a{bottom:974.853333pt;}
.y1ec{bottom:981.253333pt;}
.y4b{bottom:985.573333pt;}
.y19b{bottom:986.533333pt;}
.y2b3{bottom:990.533333pt;}
.y1bc{bottom:991.813333pt;}
.y1d0{bottom:1003.173333pt;}
.y17{bottom:1006.720000pt;}
.yfa{bottom:1008.000000pt;}
.y262{bottom:1008.960000pt;}
.y2b{bottom:1013.280000pt;}
.y2a{bottom:1040.800000pt;}
.y14{bottom:1060.320000pt;}
.h20{height:18.400000pt;}
.h21{height:18.432000pt;}
.h1d{height:18.720000pt;}
.h19{height:19.040000pt;}
.h10{height:19.200000pt;}
.h12{height:19.232000pt;}
.h1b{height:19.360000pt;}
.h1f{height:19.520000pt;}
.h13{height:20.160000pt;}
.h11{height:20.320000pt;}
.h2e{height:21.440000pt;}
.h2c{height:21.600000pt;}
.h2b{height:24.131250pt;}
.h32{height:25.600000pt;}
.h2a{height:28.320000pt;}
.he{height:29.940625pt;}
.h23{height:36.800000pt;}
.h29{height:36.832000pt;}
.h35{height:37.090625pt;}
.h1e{height:38.080000pt;}
.h25{height:38.112000pt;}
.hd{height:41.543750pt;}
.h31{height:42.240000pt;}
.h34{height:42.272000pt;}
.h8{height:44.687500pt;}
.ha{height:45.156250pt;}
.h2f{height:46.080000pt;}
.h36{height:46.240000pt;}
.h1a{height:48.530000pt;}
.h2{height:49.766250pt;}
.h28{height:51.374688pt;}
.hc{height:51.937500pt;}
.hb{height:52.750000pt;}
.hf{height:54.260625pt;}
.h39{height:54.420625pt;}
.h18{height:55.200000pt;}
.h4d{height:55.232000pt;}
.h7{height:55.468750pt;}
.h1c{height:57.440000pt;}
.h6{height:57.906250pt;}
.h38{height:58.406250pt;}
.h37{height:61.564978pt;}
.h4{height:67.750312pt;}
.h2d{height:68.160000pt;}
.h9{height:69.783438pt;}
.h49{height:73.600000pt;}
.h4f{height:73.632000pt;}
.h3a{height:74.628125pt;}
.h5{height:77.015312pt;}
.h26{height:79.680000pt;}
.h15{height:80.192000pt;}
.h3{height:86.859375pt;}
.h22{height:92.000000pt;}
.h17{height:92.032000pt;}
.h24{height:98.272000pt;}
.h16{height:99.520000pt;}
.h42{height:110.400000pt;}
.h3b{height:110.432000pt;}
.h3e{height:128.640000pt;}
.h44{height:128.800000pt;}
.h46{height:128.832000pt;}
.h30{height:130.752000pt;}
.h14{height:139.200000pt;}
.h3f{height:147.226667pt;}
.h27{height:150.586667pt;}
.h33{height:160.026667pt;}
.h45{height:165.466667pt;}
.h50{height:165.600000pt;}
.h3d{height:165.626667pt;}
.h41{height:202.426667pt;}
.h52{height:220.666667pt;}
.h3c{height:220.826667pt;}
.h40{height:239.226667pt;}
.h47{height:257.626667pt;}
.h43{height:275.906667pt;}
.h4e{height:276.026667pt;}
.h51{height:312.826667pt;}
.h48{height:331.106667pt;}
.h4c{height:331.226667pt;}
.h4b{height:386.426667pt;}
.h4a{height:552.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w16{width:84.000000pt;}
.w12{width:115.552000pt;}
.w8{width:120.032000pt;}
.w9{width:137.146667pt;}
.w13{width:137.306667pt;}
.wb{width:144.320000pt;}
.w15{width:144.640000pt;}
.wa{width:171.226667pt;}
.w14{width:171.386667pt;}
.wd{width:282.426667pt;}
.we{width:282.466667pt;}
.w4{width:284.826667pt;}
.w5{width:285.186667pt;}
.w7{width:316.186667pt;}
.w11{width:316.666667pt;}
.w17{width:480.893333pt;}
.wc{width:565.693333pt;}
.w3{width:570.653333pt;}
.w10{width:570.813333pt;}
.wf{width:574.333333pt;}
.w6{width:574.653333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:6.880000pt;}
.x3c{left:9.600000pt;}
.x39{left:16.800000pt;}
.x30{left:21.760000pt;}
.x24{left:22.720000pt;}
.x3f{left:29.306667pt;}
.x42{left:30.426667pt;}
.x22{left:31.546667pt;}
.x36{left:32.666667pt;}
.x2d{left:33.600000pt;}
.x31{left:34.880000pt;}
.x33{left:35.834667pt;}
.x34{left:36.826667pt;}
.x35{left:38.560000pt;}
.x27{left:40.160000pt;}
.x32{left:42.880000pt;}
.x37{left:46.240000pt;}
.x2f{left:49.760000pt;}
.x2e{left:52.026667pt;}
.x1d{left:54.074667pt;}
.x28{left:56.026667pt;}
.x29{left:57.760000pt;}
.x38{left:59.354667pt;}
.x25{left:83.514667pt;}
.x41{left:85.594667pt;}
.x2c{left:102.586667pt;}
.x1b{left:104.026667pt;}
.x3b{left:105.632000pt;}
.xc{left:113.471988pt;}
.x19{left:115.194667pt;}
.x20{left:126.554667pt;}
.xd{left:128.191988pt;}
.x3a{left:136.026655pt;}
.x11{left:137.466655pt;}
.x8{left:142.586655pt;}
.x7{left:149.146655pt;}
.x12{left:160.666655pt;}
.x2a{left:167.874667pt;}
.x17{left:170.434667pt;}
.xb{left:193.146655pt;}
.x46{left:198.906667pt;}
.x5{left:200.186655pt;}
.xe{left:210.746655pt;}
.xf{left:211.706655pt;}
.x3{left:245.306655pt;}
.x3e{left:247.394667pt;}
.x1f{left:249.314667pt;}
.x2b{left:253.154667pt;}
.x18{left:255.714667pt;}
.x4{left:265.666655pt;}
.xa{left:281.666655pt;}
.x26{left:285.986667pt;}
.x14{left:324.706655pt;}
.x16{left:325.986655pt;}
.x1e{left:327.586655pt;}
.x6{left:354.946655pt;}
.x45{left:358.946655pt;}
.x9{left:360.706655pt;}
.x2{left:396.866655pt;}
.x1a{left:399.586667pt;}
.x13{left:420.546655pt;}
.x21{left:430.946667pt;}
.x43{left:474.653322pt;}
.x44{left:478.013322pt;}
.x40{left:547.613333pt;}
.x23{left:551.613333pt;}
.x1{left:559.933322pt;}
.x15{left:641.893322pt;}
.x3d{left:663.333322pt;}
.x10{left:671.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; }
  