
    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_a1806ed8cb8223cc28fd8afc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.194000;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_77ce4482c2894a8e02d726de.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.205000;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_9fdc832213d62e691307b198.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.301000;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_c832e157a35e38aac657498c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.710449;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_1dc40aad8064580132605d08.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.000000;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_69b0696d38da1cb0ccc7155e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.752000;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_0764507478b7f61f2e76d380.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.764000;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_e0170374b62e88f4a5951187.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.764000;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_0e974d707ad647772e1ea68d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.902000;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_adcf1477548f12e0adc3c48b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.890625;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;}
.md{transform:matrix(0.236392,0.000000,-0.080841,0.236569,0,0);-ms-transform:matrix(0.236392,0.000000,-0.080841,0.236569,0,0);-webkit-transform:matrix(0.236392,0.000000,-0.080841,0.236569,0,0);}
.me{transform:matrix(0.236403,0.000000,-0.080799,0.236583,0,0);-ms-transform:matrix(0.236403,0.000000,-0.080799,0.236583,0,0);-webkit-transform:matrix(0.236403,0.000000,-0.080799,0.236583,0,0);}
.m14{transform:matrix(0.236431,0.000000,-0.080818,0.236576,0,0);-ms-transform:matrix(0.236431,0.000000,-0.080818,0.236576,0,0);-webkit-transform:matrix(0.236431,0.000000,-0.080818,0.236576,0,0);}
.m8{transform:matrix(0.236435,0.000000,-0.080854,0.236564,0,0);-ms-transform:matrix(0.236435,0.000000,-0.080854,0.236564,0,0);-webkit-transform:matrix(0.236435,0.000000,-0.080854,0.236564,0,0);}
.m13{transform:matrix(0.236456,0.000000,-0.080842,0.236568,0,0);-ms-transform:matrix(0.236456,0.000000,-0.080842,0.236568,0,0);-webkit-transform:matrix(0.236456,0.000000,-0.080842,0.236568,0,0);}
.m9{transform:matrix(0.236496,0.000000,-0.080856,0.236564,0,0);-ms-transform:matrix(0.236496,0.000000,-0.080856,0.236564,0,0);-webkit-transform:matrix(0.236496,0.000000,-0.080856,0.236564,0,0);}
.m6{transform:matrix(0.249756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249756,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249786,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249809,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249812,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249813,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249842,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249881,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-69.000000px;}
.v1{vertical-align:-66.000000px;}
.v3{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:9.000000px;}
.ls7{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.009000px;}
.ls9{letter-spacing:0.012000px;}
.ls2{letter-spacing:0.012010px;}
.lsc{letter-spacing:0.024000px;}
.ls0{letter-spacing:0.441617px;}
.lsb{letter-spacing:1.026000px;}
.ls6{letter-spacing:1.036800px;}
.lsd{letter-spacing:2.073627px;}
.ls5{letter-spacing:2.284896px;}
.ls1{letter-spacing:46.370400px;}
.ls4{letter-spacing:64.384800px;}
.lsa{letter-spacing:84.072000px;}
.ls3{letter-spacing:93.086400px;}
.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;}
}
.ws16{word-spacing:-46.620000px;}
.ws11{word-spacing:-18.946500px;}
.wsb{word-spacing:-18.899250px;}
.ws9{word-spacing:-18.870000px;}
.wsc{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.000000px;}
.ws15{word-spacing:-13.500000px;}
.ws13{word-spacing:-11.677913px;}
.ws12{word-spacing:-11.050500px;}
.wsa{word-spacing:-11.024250px;}
.ws8{word-spacing:-11.007000px;}
.wsd{word-spacing:-10.500000px;}
.ws1{word-spacing:-9.750000px;}
.ws14{word-spacing:-9.000000px;}
.ws2{word-spacing:-6.140742px;}
.ws3{word-spacing:-5.522250px;}
.ws4{word-spacing:-3.421068px;}
.ws5{word-spacing:-1.931274px;}
.ws6{word-spacing:-0.983436px;}
.ws7{word-spacing:0.000000px;}
.ws10{word-spacing:204.326100px;}
.wsf{word-spacing:540.396000px;}
.wse{word-spacing:667.494000px;}
._4f{margin-left:-444.363000px;}
._3f{margin-left:-404.718753px;}
._34{margin-left:-395.649720px;}
._53{margin-left:-363.744000px;}
._49{margin-left:-353.198400px;}
._43{margin-left:-348.734400px;}
._4d{margin-left:-309.182400px;}
._45{margin-left:-298.209600px;}
._48{margin-left:-287.154000px;}
._42{margin-left:-285.691800px;}
._44{margin-left:-274.875600px;}
._51{margin-left:-253.341732px;}
._47{margin-left:-249.493860px;}
._4c{margin-left:-243.138000px;}
._41{margin-left:-240.661800px;}
._4a{margin-left:-239.122200px;}
._54{margin-left:-232.081500px;}
._3e{margin-left:-228.670932px;}
._36{margin-left:-226.201500px;}
._50{margin-left:-225.138000px;}
._2f{margin-left:-222.103440px;}
._33{margin-left:-216.584568px;}
._2a{margin-left:-214.119000px;}
._5c{margin-left:-212.715114px;}
._58{margin-left:-198.236016px;}
._3b{margin-left:-195.209466px;}
._5b{margin-left:-193.102941px;}
._30{margin-left:-186.604320px;}
._39{margin-left:-184.268601px;}
._2d{margin-left:-175.224240px;}
._57{margin-left:-171.218616px;}
._5a{margin-left:-164.556016px;}
._52{margin-left:-153.078000px;}
._59{margin-left:-151.162200px;}
._3c{margin-left:-132.081966px;}
._31{margin-left:-129.047640px;}
._56{margin-left:-127.950000px;}
._46{margin-left:-117.064200px;}
._3d{margin-left:-114.071166px;}
._32{margin-left:-105.033840px;}
._4e{margin-left:-77.040000px;}
._37{margin-left:-75.806391px;}
._2b{margin-left:-72.736380px;}
._3a{margin-left:-70.200621px;}
._2e{margin-left:-67.159920px;}
._2c{margin-left:-61.754340px;}
._38{margin-left:-58.810980px;}
._4b{margin-left:-54.024000px;}
._55{margin-left:-45.963600px;}
._11{margin-left:-4.646340px;}
._3{margin-left:-3.456000px;}
._6{margin-left:-2.373300px;}
._1{margin-left:-1.286340px;}
._2{width:1.812000px;}
._5{width:2.893200px;}
._4{width:3.907020px;}
._7{width:5.150220px;}
._a{width:7.140000px;}
._8{width:8.146020px;}
._9{width:9.987720px;}
._b{width:11.170860px;}
._e{width:12.642900px;}
._62{width:16.010700px;}
._12{width:17.290800px;}
._13{width:18.999660px;}
._17{width:20.283480px;}
._16{width:21.354660px;}
._1c{width:23.372220px;}
._15{width:24.412860px;}
._1d{width:26.382120px;}
._14{width:27.465360px;}
._1b{width:30.237840px;}
._f{width:33.009240px;}
._19{width:35.632920px;}
._10{width:36.939240px;}
._1a{width:39.263640px;}
._65{width:41.246760px;}
._c{width:42.273660px;}
._18{width:44.310900px;}
._d{width:45.540300px;}
._1e{width:48.432000px;}
._1f{width:51.266400px;}
._63{width:53.315940px;}
._64{width:54.928500px;}
._0{width:57.057600px;}
._21{width:60.298560px;}
._5d{width:66.064800px;}
._6b{width:75.215700px;}
._40{width:78.074400px;}
._22{width:90.308880px;}
._25{width:93.310680px;}
._67{width:98.503560px;}
._6a{width:99.623100px;}
._23{width:101.505960px;}
._24{width:107.610240px;}
._20{width:110.612640px;}
._26{width:145.095360px;}
._60{width:153.134400px;}
._5f{width:156.136800px;}
._61{width:159.139200px;}
._66{width:167.640000px;}
._68{width:173.644800px;}
._5e{width:197.582760px;}
._35{width:198.758040px;}
._27{width:224.837880px;}
._28{width:227.840280px;}
._69{width:236.213880px;}
._29{width:239.216280px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,127,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:12.306000px;}
.fs6{font-size:19.665000px;}
.fs5{font-size:22.089000px;}
.fs9{font-size:30.000000px;}
.fse{font-size:31.440000px;}
.fs13{font-size:31.500000px;}
.fs4{font-size:31.980000px;}
.fsd{font-size:33.225746px;}
.fs12{font-size:33.286404px;}
.fs19{font-size:36.000000px;}
.fs2{font-size:39.000000px;}
.fs18{font-size:41.212885px;}
.fs14{font-size:42.000000px;}
.fsa{font-size:44.028000px;}
.fsf{font-size:44.097000px;}
.fs15{font-size:44.202000px;}
.fsc{font-size:46.528569px;}
.fs11{font-size:46.600647px;}
.fs17{font-size:46.711651px;}
.fs8{font-size:48.000000px;}
.fs1a{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fsb{font-size:75.480000px;}
.fs10{font-size:75.597000px;}
.fs16{font-size:75.786000px;}
.y0{bottom:0.000000px;}
.y18d{bottom:3.000000px;}
.y5{bottom:3.750000px;}
.y10f{bottom:112.500300px;}
.y42{bottom:116.250000px;}
.y180{bottom:120.000300px;}
.yd6{bottom:123.000000px;}
.ya6{bottom:123.750000px;}
.y10d{bottom:130.500300px;}
.y41{bottom:133.500000px;}
.y10e{bottom:135.000300px;}
.y10c{bottom:135.750300px;}
.y144{bottom:136.500000px;}
.y17e{bottom:137.250000px;}
.y17f{bottom:137.250300px;}
.yd5{bottom:140.250000px;}
.ya5{bottom:141.000000px;}
.y10b{bottom:144.000300px;}
.y40{bottom:150.750000px;}
.y143{bottom:153.750000px;}
.y17d{bottom:154.500000px;}
.ya4{bottom:156.000000px;}
.yd4{bottom:157.500000px;}
.ya3{bottom:158.250000px;}
.y10a{bottom:160.500000px;}
.y3f{bottom:168.000000px;}
.y142{bottom:171.000000px;}
.y17c{bottom:171.750000px;}
.ya2{bottom:173.250000px;}
.yd3{bottom:174.750000px;}
.ya1{bottom:175.500000px;}
.y109{bottom:177.750000px;}
.y108{bottom:182.250000px;}
.y3e{bottom:185.250000px;}
.y141{bottom:188.250000px;}
.y17b{bottom:189.000000px;}
.ya0{bottom:190.500000px;}
.yd2{bottom:192.000000px;}
.y9f{bottom:192.750000px;}
.y3d{bottom:202.500000px;}
.y140{bottom:205.500000px;}
.y17a{bottom:206.250000px;}
.y9e{bottom:207.750000px;}
.yd1{bottom:209.250000px;}
.y9d{bottom:210.000000px;}
.y107{bottom:212.250000px;}
.y1a6{bottom:215.250000px;}
.y3c{bottom:219.750000px;}
.y13f{bottom:222.750000px;}
.y179{bottom:223.500000px;}
.y9c{bottom:225.750000px;}
.yd0{bottom:226.500000px;}
.y9b{bottom:228.000000px;}
.y1a5{bottom:232.500000px;}
.y106{bottom:234.750000px;}
.y3b{bottom:237.000000px;}
.y13e{bottom:240.000000px;}
.y178{bottom:240.750000px;}
.y9a{bottom:242.250000px;}
.ycf{bottom:243.750000px;}
.y99{bottom:244.500000px;}
.y1a4{bottom:249.750000px;}
.yfe{bottom:253.500000px;}
.y13d{bottom:257.250000px;}
.y105{bottom:258.000000px;}
.y100{bottom:258.750000px;}
.yce{bottom:261.000000px;}
.y98{bottom:261.750000px;}
.y101{bottom:264.750000px;}
.y102{bottom:267.000000px;}
.y3a{bottom:270.750000px;}
.y13c{bottom:274.500000px;}
.y177{bottom:275.250000px;}
.yff{bottom:276.000000px;}
.y97{bottom:276.750000px;}
.ycd{bottom:278.250000px;}
.y96{bottom:279.000000px;}
.y104{bottom:280.500000px;}
.y103{bottom:282.750000px;}
.y39{bottom:288.000000px;}
.y176{bottom:290.250000px;}
.y13b{bottom:291.750000px;}
.y175{bottom:292.500000px;}
.y1a3{bottom:293.250000px;}
.y95{bottom:294.000000px;}
.ycc{bottom:295.500000px;}
.y94{bottom:296.250000px;}
.yf8{bottom:300.750000px;}
.y38{bottom:305.250000px;}
.yfa{bottom:306.000000px;}
.y174{bottom:307.500000px;}
.y13a{bottom:309.000000px;}
.y173{bottom:309.750000px;}
.y1a2{bottom:310.500000px;}
.yfb{bottom:312.000000px;}
.ycb{bottom:312.750000px;}
.y93{bottom:313.500000px;}
.yfc{bottom:314.250000px;}
.y37{bottom:322.500000px;}
.yf9{bottom:323.250000px;}
.y172{bottom:324.750000px;}
.y139{bottom:325.500000px;}
.y189{bottom:326.250000px;}
.y171{bottom:327.000000px;}
.yfd{bottom:327.750000px;}
.yca{bottom:330.000000px;}
.y92{bottom:330.750000px;}
.y36{bottom:339.750000px;}
.y138{bottom:341.250000px;}
.y188{bottom:342.000000px;}
.y91{bottom:345.750000px;}
.yc9{bottom:347.250000px;}
.y90{bottom:348.000000px;}
.y1a1{bottom:354.000000px;}
.y35{bottom:357.000000px;}
.y170{bottom:361.500000px;}
.y8f{bottom:363.750000px;}
.yc8{bottom:364.500000px;}
.yf7{bottom:365.250000px;}
.y8e{bottom:366.000000px;}
.y137{bottom:371.250000px;}
.y187{bottom:372.000000px;}
.y34{bottom:374.250000px;}
.y16f{bottom:378.750000px;}
.yc7{bottom:381.750000px;}
.y8d{bottom:382.500000px;}
.y1a0{bottom:388.500000px;}
.y33{bottom:391.500000px;}
.y16e{bottom:396.000000px;}
.yc6{bottom:399.000000px;}
.y8c{bottom:399.750000px;}
.y19f{bottom:405.750000px;}
.y32{bottom:408.750000px;}
.y16d{bottom:413.250000px;}
.yc5{bottom:414.750000px;}
.y8b{bottom:417.000000px;}
.y31{bottom:426.000000px;}
.yc4{bottom:430.500000px;}
.y19e{bottom:432.000000px;}
.y8a{bottom:432.750000px;}
.yf6{bottom:434.250000px;}
.y89{bottom:435.000000px;}
.y30{bottom:443.250000px;}
.y16c{bottom:447.750000px;}
.y19d{bottom:449.250000px;}
.y88{bottom:451.500000px;}
.y2f{bottom:460.500000px;}
.y16b{bottom:465.000000px;}
.y19c{bottom:466.500000px;}
.yf5{bottom:468.000000px;}
.y87{bottom:468.750000px;}
.y2e{bottom:477.750000px;}
.yf4{bottom:481.500000px;}
.y16a{bottom:482.250000px;}
.yf3{bottom:483.000000px;}
.y19b{bottom:483.750000px;}
.y86{bottom:486.000000px;}
.y2d{bottom:495.000000px;}
.yf2{bottom:495.750000px;}
.yf1{bottom:497.250000px;}
.y169{bottom:499.500000px;}
.y85{bottom:503.250000px;}
.yf0{bottom:510.000000px;}
.yef{bottom:511.500000px;}
.y2c{bottom:512.250000px;}
.y168{bottom:516.750000px;}
.y84{bottom:520.500000px;}
.y136{bottom:522.000000px;}
.yee{bottom:525.000000px;}
.yed{bottom:526.500000px;}
.y19a{bottom:527.250000px;}
.y2b{bottom:529.500000px;}
.y167{bottom:534.000000px;}
.y83{bottom:536.250000px;}
.y135{bottom:539.250000px;}
.yea{bottom:540.750000px;}
.y199{bottom:544.500000px;}
.y2a{bottom:546.750000px;}
.y186{bottom:549.750000px;}
.yec{bottom:551.250000px;}
.yeb{bottom:553.500000px;}
.ye9{bottom:555.000000px;}
.y134{bottom:556.500000px;}
.y198{bottom:561.750000px;}
.y29{bottom:564.000000px;}
.y185{bottom:566.250000px;}
.y82{bottom:567.000000px;}
.y166{bottom:568.500000px;}
.y133{bottom:573.750000px;}
.y74{bottom:575.250000px;}
.y73{bottom:576.000000px;}
.y6d{bottom:577.500000px;}
.y6c{bottom:579.000000px;}
.y28{bottom:581.250000px;}
.y7c{bottom:584.250000px;}
.y7b{bottom:585.000000px;}
.y165{bottom:585.750000px;}
.y49{bottom:586.500000px;}
.y48{bottom:588.000000px;}
.y51{bottom:589.500000px;}
.y50{bottom:590.250000px;}
.y132{bottom:591.000000px;}
.ye8{bottom:591.750000px;}
.y75{bottom:596.250000px;}
.y27{bottom:598.500000px;}
.y164{bottom:601.500000px;}
.y197{bottom:605.250000px;}
.y131{bottom:608.250000px;}
.ye7{bottom:609.000000px;}
.y184{bottom:611.250000px;}
.y26{bottom:615.750000px;}
.y59{bottom:616.500000px;}
.y163{bottom:617.250000px;}
.y61{bottom:618.000000px;}
.y60{bottom:619.500000px;}
.y81{bottom:621.000000px;}
.y72{bottom:622.500000px;}
.y71{bottom:623.250000px;}
.y130{bottom:625.500000px;}
.ye6{bottom:626.250000px;}
.y56{bottom:627.000000px;}
.y55{bottom:628.500000px;}
.y25{bottom:633.000000px;}
.y4f{bottom:635.250000px;}
.y4e{bottom:636.750000px;}
.y196{bottom:639.750000px;}
.y12f{bottom:642.750000px;}
.ye5{bottom:643.500000px;}
.y162{bottom:648.000000px;}
.y24{bottom:650.250000px;}
.y70{bottom:657.000000px;}
.y6f{bottom:657.750000px;}
.y6b{bottom:658.500000px;}
.y6a{bottom:660.000000px;}
.ye4{bottom:660.750000px;}
.y69{bottom:661.500000px;}
.y68{bottom:663.000000px;}
.y64{bottom:663.750000px;}
.y63{bottom:664.500000px;}
.y7a{bottom:665.250000px;}
.y79{bottom:666.000000px;}
.y23{bottom:667.500000px;}
.y54{bottom:669.000000px;}
.y4d{bottom:670.500000px;}
.y4c{bottom:671.250000px;}
.ye3{bottom:675.750000px;}
.y77{bottom:677.250000px;}
.y76{bottom:678.000000px;}
.y67{bottom:681.000000px;}
.y66{bottom:681.750000px;}
.y195{bottom:683.250000px;}
.y22{bottom:684.750000px;}
.ye2{bottom:693.000000px;}
.y12e{bottom:694.500000px;}
.ye1{bottom:695.250000px;}
.y58{bottom:696.750000px;}
.y7d{bottom:697.500000px;}
.y57{bottom:698.250000px;}
.y5f{bottom:699.000000px;}
.y5e{bottom:700.500000px;}
.y21{bottom:702.000000px;}
.y80{bottom:702.750000px;}
.y6e{bottom:703.500000px;}
.y65{bottom:704.250000px;}
.y5b{bottom:705.000000px;}
.y5a{bottom:705.750000px;}
.y78{bottom:706.500000px;}
.y53{bottom:708.750000px;}
.y52{bottom:709.500000px;}
.y12d{bottom:711.750000px;}
.ye0{bottom:712.500000px;}
.y4b{bottom:717.000000px;}
.y194{bottom:717.750000px;}
.y4a{bottom:718.500000px;}
.y20{bottom:719.250000px;}
.y5d{bottom:720.000000px;}
.y5c{bottom:721.500000px;}
.y62{bottom:722.250000px;}
.ydf{bottom:727.500000px;}
.y12c{bottom:729.000000px;}
.yde{bottom:729.750000px;}
.y193{bottom:735.000000px;}
.y1f{bottom:736.500000px;}
.y7f{bottom:741.000000px;}
.y7e{bottom:741.750000px;}
.ydd{bottom:744.750000px;}
.y12b{bottom:746.250000px;}
.ydc{bottom:747.000000px;}
.y47{bottom:752.250000px;}
.y1e{bottom:753.750000px;}
.ydb{bottom:762.000000px;}
.y12a{bottom:763.500000px;}
.yc3{bottom:764.250000px;}
.y46{bottom:769.500000px;}
.y1d{bottom:771.000000px;}
.y129{bottom:780.750000px;}
.yc2{bottom:781.500000px;}
.y45{bottom:786.000000px;}
.y192{bottom:786.750000px;}
.y1c{bottom:788.250000px;}
.y161{bottom:797.250000px;}
.y128{bottom:798.000000px;}
.yc1{bottom:798.750000px;}
.y191{bottom:804.000000px;}
.y44{bottom:804.750000px;}
.y1b{bottom:805.500000px;}
.yc0{bottom:813.750000px;}
.y160{bottom:814.500000px;}
.y127{bottom:815.250000px;}
.ybf{bottom:816.000000px;}
.y183{bottom:819.750000px;}
.y43{bottom:821.250000px;}
.y1a{bottom:822.750000px;}
.y15f{bottom:831.750000px;}
.y126{bottom:832.500000px;}
.ybe{bottom:833.250000px;}
.y190{bottom:838.500000px;}
.y19{bottom:840.750000px;}
.ybd{bottom:849.000000px;}
.y125{bottom:849.750000px;}
.yda{bottom:850.500000px;}
.ybc{bottom:851.250000px;}
.y18f{bottom:855.750000px;}
.y18{bottom:860.250000px;}
.y15e{bottom:866.250000px;}
.y124{bottom:867.000000px;}
.ybb{bottom:867.750000px;}
.y18e{bottom:872.250000px;}
.y17{bottom:875.250000px;}
.y15d{bottom:883.500000px;}
.y123{bottom:884.250000px;}
.yba{bottom:885.000000px;}
.y18c{bottom:888.000000px;}
.y16{bottom:891.000000px;}
.y15c{bottom:900.750000px;}
.y122{bottom:901.500000px;}
.yb9{bottom:902.250000px;}
.y18b{bottom:903.000000px;}
.y15{bottom:906.750000px;}
.y15b{bottom:918.000000px;}
.y121{bottom:918.750000px;}
.yb8{bottom:919.500000px;}
.y14{bottom:922.500000px;}
.y18a{bottom:933.000000px;}
.y15a{bottom:934.500000px;}
.y120{bottom:936.000000px;}
.yb7{bottom:936.750000px;}
.y13{bottom:939.000000px;}
.y159{bottom:948.750000px;}
.y11f{bottom:953.250000px;}
.yb6{bottom:954.000000px;}
.y12{bottom:954.750000px;}
.y158{bottom:962.250000px;}
.y157{bottom:963.750000px;}
.yb5{bottom:969.000000px;}
.y11{bottom:970.500000px;}
.yb4{bottom:971.250000px;}
.y156{bottom:976.500000px;}
.y155{bottom:978.000000px;}
.y10{bottom:986.250000px;}
.y11e{bottom:987.750000px;}
.yb3{bottom:988.500000px;}
.y154{bottom:991.500000px;}
.y153{bottom:993.000000px;}
.yf{bottom:1001.250000px;}
.yd9{bottom:1003.500000px;}
.y11d{bottom:1005.000000px;}
.yb2{bottom:1005.750000px;}
.y152{bottom:1007.250000px;}
.ye{bottom:1017.000000px;}
.y11c{bottom:1020.000000px;}
.yd8{bottom:1020.750000px;}
.y151{bottom:1021.500000px;}
.y11b{bottom:1022.250000px;}
.yb1{bottom:1023.000000px;}
.yd{bottom:1032.750000px;}
.y150{bottom:1035.000000px;}
.y14f{bottom:1036.500000px;}
.y11a{bottom:1037.250000px;}
.yb0{bottom:1038.750000px;}
.y119{bottom:1039.500000px;}
.yd7{bottom:1040.250000px;}
.yaf{bottom:1041.000000px;}
.yc{bottom:1047.750000px;}
.y14e{bottom:1049.250000px;}
.y14d{bottom:1050.750000px;}
.y118{bottom:1054.500000px;}
.yae{bottom:1055.250000px;}
.y117{bottom:1056.750000px;}
.yad{bottom:1057.500000px;}
.y14c{bottom:1064.250000px;}
.y14b{bottom:1065.750000px;}
.yb{bottom:1071.000000px;}
.y116{bottom:1071.750000px;}
.y115{bottom:1074.000000px;}
.yac{bottom:1074.750000px;}
.y14a{bottom:1078.500000px;}
.y149{bottom:1080.000000px;}
.y9{bottom:1081.500000px;}
.ya{bottom:1088.250000px;}
.y114{bottom:1091.250000px;}
.yab{bottom:1092.000000px;}
.y147{bottom:1094.250000px;}
.y8{bottom:1099.500000px;}
.y148{bottom:1104.750000px;}
.y113{bottom:1106.250000px;}
.yaa{bottom:1107.000000px;}
.y112{bottom:1108.500000px;}
.ya9{bottom:1109.250000px;}
.y7{bottom:1119.750000px;}
.y111{bottom:1122.750000px;}
.y182{bottom:1124.250000px;}
.y110{bottom:1125.000000px;}
.ya8{bottom:1126.500000px;}
.y146{bottom:1129.500000px;}
.y6{bottom:1140.000000px;}
.y181{bottom:1141.500000px;}
.ya7{bottom:1143.750000px;}
.y145{bottom:1144.500000px;}
.y2{bottom:1174.500000px;}
.y4{bottom:1192.500000px;}
.y3{bottom:1196.250000px;}
.y1{bottom:1197.000000px;}
.hc{height:9.118746px;}
.hb{height:14.571765px;}
.h29{height:15.000000px;}
.ha{height:16.367949px;}
.h3{height:16.500000px;}
.h16{height:17.709323px;}
.h1d{height:17.741653px;}
.h27{height:21.966468px;}
.h19{height:23.466924px;}
.h20{height:23.503701px;}
.h9{height:23.697180px;}
.h15{height:24.799727px;}
.h1c{height:24.838145px;}
.h25{height:24.897310px;}
.he{height:27.261000px;}
.h11{height:27.720000px;}
.h17{height:29.050560px;}
.h1e{height:29.106000px;}
.hf{height:33.552000px;}
.h7{height:36.036000px;}
.h6{height:37.440000px;}
.h28{height:37.791000px;}
.h21{height:38.376000px;}
.h22{height:38.808000px;}
.h18{height:40.230840px;}
.h1f{height:40.293201px;}
.h26{height:40.393938px;}
.h13{height:40.681872px;}
.h1a{height:40.745628px;}
.h23{height:40.842648px;}
.hd{height:41.940000px;}
.h10{height:44.352000px;}
.h12{height:46.080000px;}
.h8{height:49.896000px;}
.h1{height:55.440000px;}
.h5{height:57.600000px;}
.h2{height:66.528000px;}
.h4{height:69.120000px;}
.h14{height:69.743520px;}
.h1b{height:69.851628px;}
.h24{height:70.026264px;}
.h0{height:1263.000000px;}
.w1{width:0.750000px;}
.w2{width:236.250000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:106.500000px;}
.x69{left:114.750000px;}
.x6a{left:119.250000px;}
.x3{left:121.500000px;}
.xa7{left:126.750000px;}
.x9e{left:129.750000px;}
.x16{left:133.499983px;}
.x6c{left:138.750723px;}
.x9a{left:143.250000px;}
.x4{left:145.500000px;}
.x9b{left:148.500000px;}
.xa8{left:157.500103px;}
.xe{left:160.499314px;}
.x12{left:164.250406px;}
.xf{left:166.500000px;}
.x9c{left:170.250000px;}
.x15{left:173.250000px;}
.xa9{left:181.500097px;}
.x62{left:183.000000px;}
.x63{left:187.500000px;}
.x5e{left:195.000000px;}
.x5f{left:199.500000px;}
.x65{left:210.000000px;}
.x6d{left:211.501291px;}
.x66{left:214.500000px;}
.x64{left:217.500000px;}
.x60{left:221.250000px;}
.x9d{left:223.499809px;}
.x61{left:226.500000px;}
.x9f{left:234.750523px;}
.x67{left:251.250000px;}
.x68{left:256.500000px;}
.xa5{left:261.000000px;}
.x5c{left:266.250000px;}
.x5d{left:270.750000px;}
.xa6{left:273.000000px;}
.x6{left:289.500000px;}
.x1{left:304.500000px;}
.xa4{left:317.250000px;}
.x5{left:321.750143px;}
.x5a{left:334.500000px;}
.x5b{left:339.000000px;}
.x11{left:344.250671px;}
.x13{left:352.500520px;}
.x14{left:357.750586px;}
.x7{left:366.750000px;}
.x10{left:369.750092px;}
.x8{left:374.250000px;}
.x6b{left:425.250000px;}
.x9{left:444.000000px;}
.xa{left:451.500000px;}
.x17{left:468.000743px;}
.x19{left:469.500000px;}
.xa1{left:471.000000px;}
.x1a{left:474.750000px;}
.x82{left:476.250000px;}
.x76{left:477.750000px;}
.x7e{left:480.000000px;}
.x7d{left:483.000000px;}
.x83{left:486.750000px;}
.x30{left:489.750000px;}
.x2f{left:491.250000px;}
.x31{left:493.500000px;}
.x18{left:495.000186px;}
.xb{left:498.750000px;}
.xa2{left:500.249573px;}
.xc{left:506.250000px;}
.xa0{left:510.000000px;}
.x1b{left:512.250000px;}
.xa3{left:515.250000px;}
.x1c{left:517.500000px;}
.x1d{left:519.000000px;}
.xaa{left:520.500000px;}
.x25{left:522.000000px;}
.x44{left:525.750000px;}
.x26{left:527.250000px;}
.x45{left:531.000000px;}
.x74{left:534.750000px;}
.x3b{left:537.000000px;}
.x34{left:539.250000px;}
.x32{left:540.750000px;}
.x33{left:543.000000px;}
.x70{left:544.500000px;}
.x7c{left:546.750000px;}
.x2d{left:548.250000px;}
.x75{left:549.750000px;}
.x2e{left:552.750000px;}
.x84{left:555.000068px;}
.x3e{left:556.500000px;}
.x4e{left:558.000000px;}
.x8c{left:559.499870px;}
.x3f{left:561.750000px;}
.x4f{left:563.250000px;}
.x20{left:566.250000px;}
.x21{left:570.750000px;}
.x85{left:574.500000px;}
.x98{left:576.000000px;}
.x8d{left:579.750000px;}
.x97{left:581.250000px;}
.x40{left:582.750000px;}
.x50{left:586.500000px;}
.x27{left:588.000000px;}
.x51{left:591.000000px;}
.x28{left:593.250000px;}
.xd{left:594.750000px;}
.x39{left:596.250000px;}
.x43{left:598.500000px;}
.x54{left:600.000000px;}
.x87{left:603.750000px;}
.x88{left:605.250000px;}
.x99{left:606.750000px;}
.x8f{left:609.000000px;}
.x90{left:610.500000px;}
.x7f{left:612.000000px;}
.x4c{left:613.500000px;}
.x8b{left:615.749914px;}
.x72{left:618.750000px;}
.x80{left:621.750000px;}
.x4d{left:624.000000px;}
.x91{left:626.250000px;}
.x1e{left:628.500000px;}
.x6e{left:632.250000px;}
.x1f{left:634.500000px;}
.x6f{left:636.750000px;}
.x86{left:638.250000px;}
.x52{left:640.500000px;}
.x8e{left:642.000000px;}
.x53{left:645.000000px;}
.x8a{left:649.500000px;}
.x89{left:651.000000px;}
.x35{left:655.500000px;}
.x92{left:657.000000px;}
.x36{left:659.250000px;}
.x77{left:662.250000px;}
.x29{left:671.250000px;}
.x78{left:672.750000px;}
.x41{left:675.000000px;}
.x2a{left:676.500000px;}
.x95{left:679.500000px;}
.x93{left:684.750000px;}
.x81{left:687.000000px;}
.x79{left:690.750000px;}
.x46{left:693.000000px;}
.x7a{left:696.000000px;}
.x47{left:698.250000px;}
.x57{left:700.500000px;}
.x58{left:705.000000px;}
.x96{left:706.500000px;}
.x2b{left:708.000000px;}
.x73{left:711.000000px;}
.x2c{left:714.000000px;}
.x42{left:719.250000px;}
.x94{left:721.500000px;}
.x3a{left:730.500000px;}
.x48{left:734.250000px;}
.x7b{left:736.500000px;}
.x49{left:738.750000px;}
.x24{left:741.000000px;}
.x55{left:743.250000px;}
.x22{left:745.500000px;}
.x56{left:748.500000px;}
.x23{left:752.250000px;}
.x71{left:767.250000px;}
.x3d{left:768.750000px;}
.x59{left:771.750000px;}
.x37{left:774.000000px;}
.x38{left:777.000000px;}
.x4a{left:781.500000px;}
.x3c{left:785.250000px;}
.x4b{left:786.750000px;}
@media print{
.v2{vertical-align:-61.333333pt;}
.v1{vertical-align:-58.666667pt;}
.v3{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.000000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.008000pt;}
.ls9{letter-spacing:0.010667pt;}
.ls2{letter-spacing:0.010675pt;}
.lsc{letter-spacing:0.021333pt;}
.ls0{letter-spacing:0.392549pt;}
.lsb{letter-spacing:0.912000pt;}
.ls6{letter-spacing:0.921600pt;}
.lsd{letter-spacing:1.843224pt;}
.ls5{letter-spacing:2.031019pt;}
.ls1{letter-spacing:41.218133pt;}
.ls4{letter-spacing:57.230933pt;}
.lsa{letter-spacing:74.730667pt;}
.ls3{letter-spacing:82.743467pt;}
.ws16{word-spacing:-41.440000pt;}
.ws11{word-spacing:-16.841333pt;}
.wsb{word-spacing:-16.799333pt;}
.ws9{word-spacing:-16.773333pt;}
.wsc{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws15{word-spacing:-12.000000pt;}
.ws13{word-spacing:-10.380367pt;}
.ws12{word-spacing:-9.822667pt;}
.wsa{word-spacing:-9.799333pt;}
.ws8{word-spacing:-9.784000pt;}
.wsd{word-spacing:-9.333333pt;}
.ws1{word-spacing:-8.666667pt;}
.ws14{word-spacing:-8.000000pt;}
.ws2{word-spacing:-5.458437pt;}
.ws3{word-spacing:-4.908667pt;}
.ws4{word-spacing:-3.040949pt;}
.ws5{word-spacing:-1.716688pt;}
.ws6{word-spacing:-0.874165pt;}
.ws7{word-spacing:0.000000pt;}
.ws10{word-spacing:181.623200pt;}
.wsf{word-spacing:480.352000pt;}
.wse{word-spacing:593.328000pt;}
._4f{margin-left:-394.989333pt;}
._3f{margin-left:-359.750003pt;}
._34{margin-left:-351.688640pt;}
._53{margin-left:-323.328000pt;}
._49{margin-left:-313.954133pt;}
._43{margin-left:-309.986133pt;}
._4d{margin-left:-274.828800pt;}
._45{margin-left:-265.075200pt;}
._48{margin-left:-255.248000pt;}
._42{margin-left:-253.948267pt;}
._44{margin-left:-244.333867pt;}
._51{margin-left:-225.192651pt;}
._47{margin-left:-221.772320pt;}
._4c{margin-left:-216.122667pt;}
._41{margin-left:-213.921600pt;}
._4a{margin-left:-212.553067pt;}
._54{margin-left:-206.294667pt;}
._3e{margin-left:-203.263051pt;}
._36{margin-left:-201.068000pt;}
._50{margin-left:-200.122667pt;}
._2f{margin-left:-197.425280pt;}
._33{margin-left:-192.519616pt;}
._2a{margin-left:-190.328000pt;}
._5c{margin-left:-189.080101pt;}
._58{margin-left:-176.209792pt;}
._3b{margin-left:-173.519525pt;}
._5b{margin-left:-171.647058pt;}
._30{margin-left:-165.870507pt;}
._39{margin-left:-163.794312pt;}
._2d{margin-left:-155.754880pt;}
._57{margin-left:-152.194325pt;}
._5a{margin-left:-146.272014pt;}
._52{margin-left:-136.069333pt;}
._59{margin-left:-134.366400pt;}
._3c{margin-left:-117.406192pt;}
._31{margin-left:-114.709013pt;}
._56{margin-left:-113.733333pt;}
._46{margin-left:-104.057067pt;}
._3d{margin-left:-101.396592pt;}
._32{margin-left:-93.363413pt;}
._4e{margin-left:-68.480000pt;}
._37{margin-left:-67.383459pt;}
._2b{margin-left:-64.654560pt;}
._3a{margin-left:-62.400552pt;}
._2e{margin-left:-59.697707pt;}
._2c{margin-left:-54.892747pt;}
._38{margin-left:-52.276427pt;}
._4b{margin-left:-48.021333pt;}
._55{margin-left:-40.856533pt;}
._11{margin-left:-4.130080pt;}
._3{margin-left:-3.072000pt;}
._6{margin-left:-2.109600pt;}
._1{margin-left:-1.143413pt;}
._2{width:1.610667pt;}
._5{width:2.571733pt;}
._4{width:3.472907pt;}
._7{width:4.577973pt;}
._a{width:6.346667pt;}
._8{width:7.240907pt;}
._9{width:8.877973pt;}
._b{width:9.929653pt;}
._e{width:11.238133pt;}
._62{width:14.231733pt;}
._12{width:15.369600pt;}
._13{width:16.888587pt;}
._17{width:18.029760pt;}
._16{width:18.981920pt;}
._1c{width:20.775307pt;}
._15{width:21.700320pt;}
._1d{width:23.450773pt;}
._14{width:24.413653pt;}
._1b{width:26.878080pt;}
._f{width:29.341547pt;}
._19{width:31.673707pt;}
._10{width:32.834880pt;}
._1a{width:34.901013pt;}
._65{width:36.663787pt;}
._c{width:37.576587pt;}
._18{width:39.387467pt;}
._d{width:40.480267pt;}
._1e{width:43.050667pt;}
._1f{width:45.570133pt;}
._63{width:47.391947pt;}
._64{width:48.825333pt;}
._0{width:50.717867pt;}
._21{width:53.598720pt;}
._5d{width:58.724267pt;}
._6b{width:66.858400pt;}
._40{width:69.399467pt;}
._22{width:80.274560pt;}
._25{width:82.942827pt;}
._67{width:87.558720pt;}
._6a{width:88.553867pt;}
._23{width:90.227520pt;}
._24{width:95.653547pt;}
._20{width:98.322347pt;}
._26{width:128.973653pt;}
._60{width:136.119467pt;}
._5f{width:138.788267pt;}
._61{width:141.457067pt;}
._66{width:149.013333pt;}
._68{width:154.350933pt;}
._5e{width:175.629120pt;}
._35{width:176.673813pt;}
._27{width:199.855893pt;}
._28{width:202.524693pt;}
._69{width:209.967893pt;}
._29{width:212.636693pt;}
.fs7{font-size:10.938667pt;}
.fs6{font-size:17.480000pt;}
.fs5{font-size:19.634667pt;}
.fs9{font-size:26.666667pt;}
.fse{font-size:27.946667pt;}
.fs13{font-size:28.000000pt;}
.fs4{font-size:28.426667pt;}
.fsd{font-size:29.533996pt;}
.fs12{font-size:29.587915pt;}
.fs19{font-size:32.000000pt;}
.fs2{font-size:34.666667pt;}
.fs18{font-size:36.633676pt;}
.fs14{font-size:37.333333pt;}
.fsa{font-size:39.136000pt;}
.fsf{font-size:39.197333pt;}
.fs15{font-size:39.290667pt;}
.fsc{font-size:41.358728pt;}
.fs11{font-size:41.422797pt;}
.fs17{font-size:41.521468pt;}
.fs8{font-size:42.666667pt;}
.fs1a{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fsb{font-size:67.093333pt;}
.fs10{font-size:67.197333pt;}
.fs16{font-size:67.365333pt;}
.y0{bottom:0.000000pt;}
.y18d{bottom:2.666667pt;}
.y5{bottom:3.333333pt;}
.y10f{bottom:100.000267pt;}
.y42{bottom:103.333333pt;}
.y180{bottom:106.666933pt;}
.yd6{bottom:109.333333pt;}
.ya6{bottom:110.000000pt;}
.y10d{bottom:116.000267pt;}
.y41{bottom:118.666667pt;}
.y10e{bottom:120.000267pt;}
.y10c{bottom:120.666933pt;}
.y144{bottom:121.333333pt;}
.y17e{bottom:122.000000pt;}
.y17f{bottom:122.000267pt;}
.yd5{bottom:124.666667pt;}
.ya5{bottom:125.333333pt;}
.y10b{bottom:128.000267pt;}
.y40{bottom:134.000000pt;}
.y143{bottom:136.666667pt;}
.y17d{bottom:137.333333pt;}
.ya4{bottom:138.666667pt;}
.yd4{bottom:140.000000pt;}
.ya3{bottom:140.666667pt;}
.y10a{bottom:142.666667pt;}
.y3f{bottom:149.333333pt;}
.y142{bottom:152.000000pt;}
.y17c{bottom:152.666667pt;}
.ya2{bottom:154.000000pt;}
.yd3{bottom:155.333333pt;}
.ya1{bottom:156.000000pt;}
.y109{bottom:158.000000pt;}
.y108{bottom:162.000000pt;}
.y3e{bottom:164.666667pt;}
.y141{bottom:167.333333pt;}
.y17b{bottom:168.000000pt;}
.ya0{bottom:169.333333pt;}
.yd2{bottom:170.666667pt;}
.y9f{bottom:171.333333pt;}
.y3d{bottom:180.000000pt;}
.y140{bottom:182.666667pt;}
.y17a{bottom:183.333333pt;}
.y9e{bottom:184.666667pt;}
.yd1{bottom:186.000000pt;}
.y9d{bottom:186.666667pt;}
.y107{bottom:188.666667pt;}
.y1a6{bottom:191.333333pt;}
.y3c{bottom:195.333333pt;}
.y13f{bottom:198.000000pt;}
.y179{bottom:198.666667pt;}
.y9c{bottom:200.666667pt;}
.yd0{bottom:201.333333pt;}
.y9b{bottom:202.666667pt;}
.y1a5{bottom:206.666667pt;}
.y106{bottom:208.666667pt;}
.y3b{bottom:210.666667pt;}
.y13e{bottom:213.333333pt;}
.y178{bottom:214.000000pt;}
.y9a{bottom:215.333333pt;}
.ycf{bottom:216.666667pt;}
.y99{bottom:217.333333pt;}
.y1a4{bottom:222.000000pt;}
.yfe{bottom:225.333333pt;}
.y13d{bottom:228.666667pt;}
.y105{bottom:229.333333pt;}
.y100{bottom:230.000000pt;}
.yce{bottom:232.000000pt;}
.y98{bottom:232.666667pt;}
.y101{bottom:235.333333pt;}
.y102{bottom:237.333333pt;}
.y3a{bottom:240.666667pt;}
.y13c{bottom:244.000000pt;}
.y177{bottom:244.666667pt;}
.yff{bottom:245.333333pt;}
.y97{bottom:246.000000pt;}
.ycd{bottom:247.333333pt;}
.y96{bottom:248.000000pt;}
.y104{bottom:249.333333pt;}
.y103{bottom:251.333333pt;}
.y39{bottom:256.000000pt;}
.y176{bottom:258.000000pt;}
.y13b{bottom:259.333333pt;}
.y175{bottom:260.000000pt;}
.y1a3{bottom:260.666667pt;}
.y95{bottom:261.333333pt;}
.ycc{bottom:262.666667pt;}
.y94{bottom:263.333333pt;}
.yf8{bottom:267.333333pt;}
.y38{bottom:271.333333pt;}
.yfa{bottom:272.000000pt;}
.y174{bottom:273.333333pt;}
.y13a{bottom:274.666667pt;}
.y173{bottom:275.333333pt;}
.y1a2{bottom:276.000000pt;}
.yfb{bottom:277.333333pt;}
.ycb{bottom:278.000000pt;}
.y93{bottom:278.666667pt;}
.yfc{bottom:279.333333pt;}
.y37{bottom:286.666667pt;}
.yf9{bottom:287.333333pt;}
.y172{bottom:288.666667pt;}
.y139{bottom:289.333333pt;}
.y189{bottom:290.000000pt;}
.y171{bottom:290.666667pt;}
.yfd{bottom:291.333333pt;}
.yca{bottom:293.333333pt;}
.y92{bottom:294.000000pt;}
.y36{bottom:302.000000pt;}
.y138{bottom:303.333333pt;}
.y188{bottom:304.000000pt;}
.y91{bottom:307.333333pt;}
.yc9{bottom:308.666667pt;}
.y90{bottom:309.333333pt;}
.y1a1{bottom:314.666667pt;}
.y35{bottom:317.333333pt;}
.y170{bottom:321.333333pt;}
.y8f{bottom:323.333333pt;}
.yc8{bottom:324.000000pt;}
.yf7{bottom:324.666667pt;}
.y8e{bottom:325.333333pt;}
.y137{bottom:330.000000pt;}
.y187{bottom:330.666667pt;}
.y34{bottom:332.666667pt;}
.y16f{bottom:336.666667pt;}
.yc7{bottom:339.333333pt;}
.y8d{bottom:340.000000pt;}
.y1a0{bottom:345.333333pt;}
.y33{bottom:348.000000pt;}
.y16e{bottom:352.000000pt;}
.yc6{bottom:354.666667pt;}
.y8c{bottom:355.333333pt;}
.y19f{bottom:360.666667pt;}
.y32{bottom:363.333333pt;}
.y16d{bottom:367.333333pt;}
.yc5{bottom:368.666667pt;}
.y8b{bottom:370.666667pt;}
.y31{bottom:378.666667pt;}
.yc4{bottom:382.666667pt;}
.y19e{bottom:384.000000pt;}
.y8a{bottom:384.666667pt;}
.yf6{bottom:386.000000pt;}
.y89{bottom:386.666667pt;}
.y30{bottom:394.000000pt;}
.y16c{bottom:398.000000pt;}
.y19d{bottom:399.333333pt;}
.y88{bottom:401.333333pt;}
.y2f{bottom:409.333333pt;}
.y16b{bottom:413.333333pt;}
.y19c{bottom:414.666667pt;}
.yf5{bottom:416.000000pt;}
.y87{bottom:416.666667pt;}
.y2e{bottom:424.666667pt;}
.yf4{bottom:428.000000pt;}
.y16a{bottom:428.666667pt;}
.yf3{bottom:429.333333pt;}
.y19b{bottom:430.000000pt;}
.y86{bottom:432.000000pt;}
.y2d{bottom:440.000000pt;}
.yf2{bottom:440.666667pt;}
.yf1{bottom:442.000000pt;}
.y169{bottom:444.000000pt;}
.y85{bottom:447.333333pt;}
.yf0{bottom:453.333333pt;}
.yef{bottom:454.666667pt;}
.y2c{bottom:455.333333pt;}
.y168{bottom:459.333333pt;}
.y84{bottom:462.666667pt;}
.y136{bottom:464.000000pt;}
.yee{bottom:466.666667pt;}
.yed{bottom:468.000000pt;}
.y19a{bottom:468.666667pt;}
.y2b{bottom:470.666667pt;}
.y167{bottom:474.666667pt;}
.y83{bottom:476.666667pt;}
.y135{bottom:479.333333pt;}
.yea{bottom:480.666667pt;}
.y199{bottom:484.000000pt;}
.y2a{bottom:486.000000pt;}
.y186{bottom:488.666667pt;}
.yec{bottom:490.000000pt;}
.yeb{bottom:492.000000pt;}
.ye9{bottom:493.333333pt;}
.y134{bottom:494.666667pt;}
.y198{bottom:499.333333pt;}
.y29{bottom:501.333333pt;}
.y185{bottom:503.333333pt;}
.y82{bottom:504.000000pt;}
.y166{bottom:505.333333pt;}
.y133{bottom:510.000000pt;}
.y74{bottom:511.333333pt;}
.y73{bottom:512.000000pt;}
.y6d{bottom:513.333333pt;}
.y6c{bottom:514.666667pt;}
.y28{bottom:516.666667pt;}
.y7c{bottom:519.333333pt;}
.y7b{bottom:520.000000pt;}
.y165{bottom:520.666667pt;}
.y49{bottom:521.333333pt;}
.y48{bottom:522.666667pt;}
.y51{bottom:524.000000pt;}
.y50{bottom:524.666667pt;}
.y132{bottom:525.333333pt;}
.ye8{bottom:526.000000pt;}
.y75{bottom:530.000000pt;}
.y27{bottom:532.000000pt;}
.y164{bottom:534.666667pt;}
.y197{bottom:538.000000pt;}
.y131{bottom:540.666667pt;}
.ye7{bottom:541.333333pt;}
.y184{bottom:543.333333pt;}
.y26{bottom:547.333333pt;}
.y59{bottom:548.000000pt;}
.y163{bottom:548.666667pt;}
.y61{bottom:549.333333pt;}
.y60{bottom:550.666667pt;}
.y81{bottom:552.000000pt;}
.y72{bottom:553.333333pt;}
.y71{bottom:554.000000pt;}
.y130{bottom:556.000000pt;}
.ye6{bottom:556.666667pt;}
.y56{bottom:557.333333pt;}
.y55{bottom:558.666667pt;}
.y25{bottom:562.666667pt;}
.y4f{bottom:564.666667pt;}
.y4e{bottom:566.000000pt;}
.y196{bottom:568.666667pt;}
.y12f{bottom:571.333333pt;}
.ye5{bottom:572.000000pt;}
.y162{bottom:576.000000pt;}
.y24{bottom:578.000000pt;}
.y70{bottom:584.000000pt;}
.y6f{bottom:584.666667pt;}
.y6b{bottom:585.333333pt;}
.y6a{bottom:586.666667pt;}
.ye4{bottom:587.333333pt;}
.y69{bottom:588.000000pt;}
.y68{bottom:589.333333pt;}
.y64{bottom:590.000000pt;}
.y63{bottom:590.666667pt;}
.y7a{bottom:591.333333pt;}
.y79{bottom:592.000000pt;}
.y23{bottom:593.333333pt;}
.y54{bottom:594.666667pt;}
.y4d{bottom:596.000000pt;}
.y4c{bottom:596.666667pt;}
.ye3{bottom:600.666667pt;}
.y77{bottom:602.000000pt;}
.y76{bottom:602.666667pt;}
.y67{bottom:605.333333pt;}
.y66{bottom:606.000000pt;}
.y195{bottom:607.333333pt;}
.y22{bottom:608.666667pt;}
.ye2{bottom:616.000000pt;}
.y12e{bottom:617.333333pt;}
.ye1{bottom:618.000000pt;}
.y58{bottom:619.333333pt;}
.y7d{bottom:620.000000pt;}
.y57{bottom:620.666667pt;}
.y5f{bottom:621.333333pt;}
.y5e{bottom:622.666667pt;}
.y21{bottom:624.000000pt;}
.y80{bottom:624.666667pt;}
.y6e{bottom:625.333333pt;}
.y65{bottom:626.000000pt;}
.y5b{bottom:626.666667pt;}
.y5a{bottom:627.333333pt;}
.y78{bottom:628.000000pt;}
.y53{bottom:630.000000pt;}
.y52{bottom:630.666667pt;}
.y12d{bottom:632.666667pt;}
.ye0{bottom:633.333333pt;}
.y4b{bottom:637.333333pt;}
.y194{bottom:638.000000pt;}
.y4a{bottom:638.666667pt;}
.y20{bottom:639.333333pt;}
.y5d{bottom:640.000000pt;}
.y5c{bottom:641.333333pt;}
.y62{bottom:642.000000pt;}
.ydf{bottom:646.666667pt;}
.y12c{bottom:648.000000pt;}
.yde{bottom:648.666667pt;}
.y193{bottom:653.333333pt;}
.y1f{bottom:654.666667pt;}
.y7f{bottom:658.666667pt;}
.y7e{bottom:659.333333pt;}
.ydd{bottom:662.000000pt;}
.y12b{bottom:663.333333pt;}
.ydc{bottom:664.000000pt;}
.y47{bottom:668.666667pt;}
.y1e{bottom:670.000000pt;}
.ydb{bottom:677.333333pt;}
.y12a{bottom:678.666667pt;}
.yc3{bottom:679.333333pt;}
.y46{bottom:684.000000pt;}
.y1d{bottom:685.333333pt;}
.y129{bottom:694.000000pt;}
.yc2{bottom:694.666667pt;}
.y45{bottom:698.666667pt;}
.y192{bottom:699.333333pt;}
.y1c{bottom:700.666667pt;}
.y161{bottom:708.666667pt;}
.y128{bottom:709.333333pt;}
.yc1{bottom:710.000000pt;}
.y191{bottom:714.666667pt;}
.y44{bottom:715.333333pt;}
.y1b{bottom:716.000000pt;}
.yc0{bottom:723.333333pt;}
.y160{bottom:724.000000pt;}
.y127{bottom:724.666667pt;}
.ybf{bottom:725.333333pt;}
.y183{bottom:728.666667pt;}
.y43{bottom:730.000000pt;}
.y1a{bottom:731.333333pt;}
.y15f{bottom:739.333333pt;}
.y126{bottom:740.000000pt;}
.ybe{bottom:740.666667pt;}
.y190{bottom:745.333333pt;}
.y19{bottom:747.333333pt;}
.ybd{bottom:754.666667pt;}
.y125{bottom:755.333333pt;}
.yda{bottom:756.000000pt;}
.ybc{bottom:756.666667pt;}
.y18f{bottom:760.666667pt;}
.y18{bottom:764.666667pt;}
.y15e{bottom:770.000000pt;}
.y124{bottom:770.666667pt;}
.ybb{bottom:771.333333pt;}
.y18e{bottom:775.333333pt;}
.y17{bottom:778.000000pt;}
.y15d{bottom:785.333333pt;}
.y123{bottom:786.000000pt;}
.yba{bottom:786.666667pt;}
.y18c{bottom:789.333333pt;}
.y16{bottom:792.000000pt;}
.y15c{bottom:800.666667pt;}
.y122{bottom:801.333333pt;}
.yb9{bottom:802.000000pt;}
.y18b{bottom:802.666667pt;}
.y15{bottom:806.000000pt;}
.y15b{bottom:816.000000pt;}
.y121{bottom:816.666667pt;}
.yb8{bottom:817.333333pt;}
.y14{bottom:820.000000pt;}
.y18a{bottom:829.333333pt;}
.y15a{bottom:830.666667pt;}
.y120{bottom:832.000000pt;}
.yb7{bottom:832.666667pt;}
.y13{bottom:834.666667pt;}
.y159{bottom:843.333333pt;}
.y11f{bottom:847.333333pt;}
.yb6{bottom:848.000000pt;}
.y12{bottom:848.666667pt;}
.y158{bottom:855.333333pt;}
.y157{bottom:856.666667pt;}
.yb5{bottom:861.333333pt;}
.y11{bottom:862.666667pt;}
.yb4{bottom:863.333333pt;}
.y156{bottom:868.000000pt;}
.y155{bottom:869.333333pt;}
.y10{bottom:876.666667pt;}
.y11e{bottom:878.000000pt;}
.yb3{bottom:878.666667pt;}
.y154{bottom:881.333333pt;}
.y153{bottom:882.666667pt;}
.yf{bottom:890.000000pt;}
.yd9{bottom:892.000000pt;}
.y11d{bottom:893.333333pt;}
.yb2{bottom:894.000000pt;}
.y152{bottom:895.333333pt;}
.ye{bottom:904.000000pt;}
.y11c{bottom:906.666667pt;}
.yd8{bottom:907.333333pt;}
.y151{bottom:908.000000pt;}
.y11b{bottom:908.666667pt;}
.yb1{bottom:909.333333pt;}
.yd{bottom:918.000000pt;}
.y150{bottom:920.000000pt;}
.y14f{bottom:921.333333pt;}
.y11a{bottom:922.000000pt;}
.yb0{bottom:923.333333pt;}
.y119{bottom:924.000000pt;}
.yd7{bottom:924.666667pt;}
.yaf{bottom:925.333333pt;}
.yc{bottom:931.333333pt;}
.y14e{bottom:932.666667pt;}
.y14d{bottom:934.000000pt;}
.y118{bottom:937.333333pt;}
.yae{bottom:938.000000pt;}
.y117{bottom:939.333333pt;}
.yad{bottom:940.000000pt;}
.y14c{bottom:946.000000pt;}
.y14b{bottom:947.333333pt;}
.yb{bottom:952.000000pt;}
.y116{bottom:952.666667pt;}
.y115{bottom:954.666667pt;}
.yac{bottom:955.333333pt;}
.y14a{bottom:958.666667pt;}
.y149{bottom:960.000000pt;}
.y9{bottom:961.333333pt;}
.ya{bottom:967.333333pt;}
.y114{bottom:970.000000pt;}
.yab{bottom:970.666667pt;}
.y147{bottom:972.666667pt;}
.y8{bottom:977.333333pt;}
.y148{bottom:982.000000pt;}
.y113{bottom:983.333333pt;}
.yaa{bottom:984.000000pt;}
.y112{bottom:985.333333pt;}
.ya9{bottom:986.000000pt;}
.y7{bottom:995.333333pt;}
.y111{bottom:998.000000pt;}
.y182{bottom:999.333333pt;}
.y110{bottom:1000.000000pt;}
.ya8{bottom:1001.333333pt;}
.y146{bottom:1004.000000pt;}
.y6{bottom:1013.333333pt;}
.y181{bottom:1014.666667pt;}
.ya7{bottom:1016.666667pt;}
.y145{bottom:1017.333333pt;}
.y2{bottom:1044.000000pt;}
.y4{bottom:1060.000000pt;}
.y3{bottom:1063.333333pt;}
.y1{bottom:1064.000000pt;}
.hc{height:8.105552pt;}
.hb{height:12.952680pt;}
.h29{height:13.333333pt;}
.ha{height:14.549288pt;}
.h3{height:14.666667pt;}
.h16{height:15.741620pt;}
.h1d{height:15.770359pt;}
.h27{height:19.525749pt;}
.h19{height:20.859488pt;}
.h20{height:20.892179pt;}
.h9{height:21.064160pt;}
.h15{height:22.044202pt;}
.h1c{height:22.078351pt;}
.h25{height:22.130942pt;}
.he{height:24.232000pt;}
.h11{height:24.640000pt;}
.h17{height:25.822720pt;}
.h1e{height:25.872000pt;}
.hf{height:29.824000pt;}
.h7{height:32.032000pt;}
.h6{height:33.280000pt;}
.h28{height:33.592000pt;}
.h21{height:34.112000pt;}
.h22{height:34.496000pt;}
.h18{height:35.760747pt;}
.h1f{height:35.816179pt;}
.h26{height:35.905723pt;}
.h13{height:36.161664pt;}
.h1a{height:36.218336pt;}
.h23{height:36.304576pt;}
.hd{height:37.280000pt;}
.h10{height:39.424000pt;}
.h12{height:40.960000pt;}
.h8{height:44.352000pt;}
.h1{height:49.280000pt;}
.h5{height:51.200000pt;}
.h2{height:59.136000pt;}
.h4{height:61.440000pt;}
.h14{height:61.994240pt;}
.h1b{height:62.090336pt;}
.h24{height:62.245568pt;}
.h0{height:1122.666667pt;}
.w1{width:0.666667pt;}
.w2{width:210.000000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:94.666667pt;}
.x69{left:102.000000pt;}
.x6a{left:106.000000pt;}
.x3{left:108.000000pt;}
.xa7{left:112.666667pt;}
.x9e{left:115.333333pt;}
.x16{left:118.666651pt;}
.x6c{left:123.333976pt;}
.x9a{left:127.333333pt;}
.x4{left:129.333333pt;}
.x9b{left:132.000000pt;}
.xa8{left:140.000091pt;}
.xe{left:142.666056pt;}
.x12{left:146.000361pt;}
.xf{left:148.000000pt;}
.x9c{left:151.333333pt;}
.x15{left:154.000000pt;}
.xa9{left:161.333420pt;}
.x62{left:162.666667pt;}
.x63{left:166.666667pt;}
.x5e{left:173.333333pt;}
.x5f{left:177.333333pt;}
.x65{left:186.666667pt;}
.x6d{left:188.001147pt;}
.x66{left:190.666667pt;}
.x64{left:193.333333pt;}
.x60{left:196.666667pt;}
.x9d{left:198.666497pt;}
.x61{left:201.333333pt;}
.x9f{left:208.667131pt;}
.x67{left:223.333333pt;}
.x68{left:228.000000pt;}
.xa5{left:232.000000pt;}
.x5c{left:236.666667pt;}
.x5d{left:240.666667pt;}
.xa6{left:242.666667pt;}
.x6{left:257.333333pt;}
.x1{left:270.666667pt;}
.xa4{left:282.000000pt;}
.x5{left:286.000127pt;}
.x5a{left:297.333333pt;}
.x5b{left:301.333333pt;}
.x11{left:306.000597pt;}
.x13{left:313.333795pt;}
.x14{left:318.000521pt;}
.x7{left:326.000000pt;}
.x10{left:328.666748pt;}
.x8{left:332.666667pt;}
.x6b{left:378.000000pt;}
.x9{left:394.666667pt;}
.xa{left:401.333333pt;}
.x17{left:416.000660pt;}
.x19{left:417.333333pt;}
.xa1{left:418.666667pt;}
.x1a{left:422.000000pt;}
.x82{left:423.333333pt;}
.x76{left:424.666667pt;}
.x7e{left:426.666667pt;}
.x7d{left:429.333333pt;}
.x83{left:432.666667pt;}
.x30{left:435.333333pt;}
.x2f{left:436.666667pt;}
.x31{left:438.666667pt;}
.x18{left:440.000165pt;}
.xb{left:443.333333pt;}
.xa2{left:444.666287pt;}
.xc{left:450.000000pt;}
.xa0{left:453.333333pt;}
.x1b{left:455.333333pt;}
.xa3{left:458.000000pt;}
.x1c{left:460.000000pt;}
.x1d{left:461.333333pt;}
.xaa{left:462.666667pt;}
.x25{left:464.000000pt;}
.x44{left:467.333333pt;}
.x26{left:468.666667pt;}
.x45{left:472.000000pt;}
.x74{left:475.333333pt;}
.x3b{left:477.333333pt;}
.x34{left:479.333333pt;}
.x32{left:480.666667pt;}
.x33{left:482.666667pt;}
.x70{left:484.000000pt;}
.x7c{left:486.000000pt;}
.x2d{left:487.333333pt;}
.x75{left:488.666667pt;}
.x2e{left:491.333333pt;}
.x84{left:493.333394pt;}
.x3e{left:494.666667pt;}
.x4e{left:496.000000pt;}
.x8c{left:497.333218pt;}
.x3f{left:499.333333pt;}
.x4f{left:500.666667pt;}
.x20{left:503.333333pt;}
.x21{left:507.333333pt;}
.x85{left:510.666667pt;}
.x98{left:512.000000pt;}
.x8d{left:515.333333pt;}
.x97{left:516.666667pt;}
.x40{left:518.000000pt;}
.x50{left:521.333333pt;}
.x27{left:522.666667pt;}
.x51{left:525.333333pt;}
.x28{left:527.333333pt;}
.xd{left:528.666667pt;}
.x39{left:530.000000pt;}
.x43{left:532.000000pt;}
.x54{left:533.333333pt;}
.x87{left:536.666667pt;}
.x88{left:538.000000pt;}
.x99{left:539.333333pt;}
.x8f{left:541.333333pt;}
.x90{left:542.666667pt;}
.x7f{left:544.000000pt;}
.x4c{left:545.333333pt;}
.x8b{left:547.333257pt;}
.x72{left:550.000000pt;}
.x80{left:552.666667pt;}
.x4d{left:554.666667pt;}
.x91{left:556.666667pt;}
.x1e{left:558.666667pt;}
.x6e{left:562.000000pt;}
.x1f{left:564.000000pt;}
.x6f{left:566.000000pt;}
.x86{left:567.333333pt;}
.x52{left:569.333333pt;}
.x8e{left:570.666667pt;}
.x53{left:573.333333pt;}
.x8a{left:577.333333pt;}
.x89{left:578.666667pt;}
.x35{left:582.666667pt;}
.x92{left:584.000000pt;}
.x36{left:586.000000pt;}
.x77{left:588.666667pt;}
.x29{left:596.666667pt;}
.x78{left:598.000000pt;}
.x41{left:600.000000pt;}
.x2a{left:601.333333pt;}
.x95{left:604.000000pt;}
.x93{left:608.666667pt;}
.x81{left:610.666667pt;}
.x79{left:614.000000pt;}
.x46{left:616.000000pt;}
.x7a{left:618.666667pt;}
.x47{left:620.666667pt;}
.x57{left:622.666667pt;}
.x58{left:626.666667pt;}
.x96{left:628.000000pt;}
.x2b{left:629.333333pt;}
.x73{left:632.000000pt;}
.x2c{left:634.666667pt;}
.x42{left:639.333333pt;}
.x94{left:641.333333pt;}
.x3a{left:649.333333pt;}
.x48{left:652.666667pt;}
.x7b{left:654.666667pt;}
.x49{left:656.666667pt;}
.x24{left:658.666667pt;}
.x55{left:660.666667pt;}
.x22{left:662.666667pt;}
.x56{left:665.333333pt;}
.x23{left:668.666667pt;}
.x71{left:682.000000pt;}
.x3d{left:683.333333pt;}
.x59{left:686.000000pt;}
.x37{left:688.000000pt;}
.x38{left:690.666667pt;}
.x4a{left:694.666667pt;}
.x3c{left:698.000000pt;}
.x4b{left:699.333333pt;}
}




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