
    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_39e672d95a289867d9931182.woff')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_37f5641a1f4f7028d8c8bc8c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.100586;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_af53f64a44d156d4d111a522.woff')format("woff");}.ff3{font-family:ff3;line-height:1.102051;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_08df154c93eb73eb4394f298.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m7{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.760000px;}
.ls1b{letter-spacing:-1.566000px;}
.ls11{letter-spacing:-1.211040px;}
.ls19{letter-spacing:-0.927360px;}
.ls5a{letter-spacing:-0.836640px;}
.ls21{letter-spacing:-0.794880px;}
.ls31{letter-spacing:-0.594000px;}
.ls1a{letter-spacing:-0.540000px;}
.ls5e{letter-spacing:-0.530640px;}
.ls14{letter-spacing:-0.432000px;}
.ls58{letter-spacing:-0.418320px;}
.ls56{letter-spacing:-0.385920px;}
.ls32{letter-spacing:-0.378000px;}
.ls10{letter-spacing:-0.334080px;}
.ls30{letter-spacing:-0.331200px;}
.ls13{letter-spacing:-0.324000px;}
.ls54{letter-spacing:-0.289440px;}
.ls1c{letter-spacing:-0.264960px;}
.lsf{letter-spacing:-0.250560px;}
.ls5d{letter-spacing:-0.241200px;}
.ls5b{letter-spacing:-0.239040px;}
.ls12{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.198720px;}
.ls23{letter-spacing:-0.162000px;}
.ls52{letter-spacing:-0.119520px;}
.ls15{letter-spacing:-0.066240px;}
.ls5c{letter-spacing:-0.059760px;}
.ls20{letter-spacing:-0.054000px;}
.lse{letter-spacing:0.000000px;}
.ls4e{letter-spacing:0.048240px;}
.ls2d{letter-spacing:0.051840px;}
.ls4c{letter-spacing:0.059760px;}
.lsd{letter-spacing:0.066240px;}
.lsb{letter-spacing:0.086160px;}
.ls22{letter-spacing:0.108000px;}
.ls2c{letter-spacing:0.112200px;}
.ls4d{letter-spacing:0.126720px;}
.lsa{letter-spacing:0.132816px;}
.ls51{letter-spacing:0.147600px;}
.ls1f{letter-spacing:0.162000px;}
.ls57{letter-spacing:0.179280px;}
.ls49{letter-spacing:0.184080px;}
.ls4f{letter-spacing:0.211680px;}
.ls4a{letter-spacing:0.212400px;}
.ls4b{letter-spacing:0.239040px;}
.ls59{letter-spacing:0.241200px;}
.ls17{letter-spacing:0.264960px;}
.ls53{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.302400px;}
.ls2e{letter-spacing:0.310920px;}
.ls1d{letter-spacing:0.331200px;}
.ls55{letter-spacing:0.358560px;}
.ls1e{letter-spacing:0.463680px;}
.ls50{letter-spacing:0.717120px;}
.ls2f{letter-spacing:0.728640px;}
.ls18{letter-spacing:0.927360px;}
.ls24{letter-spacing:27.357120px;}
.ls3a{letter-spacing:31.132200px;}
.ls3f{letter-spacing:47.013240px;}
.ls5{letter-spacing:48.951360px;}
.ls3e{letter-spacing:62.982600px;}
.ls3b{letter-spacing:63.756600px;}
.ls40{letter-spacing:86.062800px;}
.ls46{letter-spacing:99.006600px;}
.ls9{letter-spacing:136.785600px;}
.ls39{letter-spacing:198.720000px;}
.ls41{letter-spacing:212.249760px;}
.ls42{letter-spacing:216.399600px;}
.ls2{letter-spacing:217.532160px;}
.ls38{letter-spacing:228.196800px;}
.ls0{letter-spacing:232.740000px;}
.ls3c{letter-spacing:298.943400px;}
.ls3d{letter-spacing:310.463400px;}
.ls43{letter-spacing:342.066240px;}
.ls33{letter-spacing:422.876160px;}
.ls37{letter-spacing:443.543040px;}
.ls1{letter-spacing:444.205440px;}
.ls28{letter-spacing:474.477120px;}
.ls3{letter-spacing:477.259200px;}
.ls47{letter-spacing:492.362640px;}
.ls27{letter-spacing:579.467520px;}
.ls2a{letter-spacing:606.758400px;}
.ls25{letter-spacing:628.352640px;}
.ls36{letter-spacing:642.263040px;}
.ls34{letter-spacing:684.789120px;}
.ls48{letter-spacing:847.408320px;}
.ls35{letter-spacing:853.767360px;}
.ls2b{letter-spacing:861.914880px;}
.ls45{letter-spacing:931.837680px;}
.ls44{letter-spacing:951.678000px;}
.ls26{letter-spacing:976.775040px;}
.ls8{letter-spacing:1452.179520px;}
.ls4{letter-spacing:1528.620480px;}
.ls7{letter-spacing:1636.790400px;}
.ls6{letter-spacing:1808.087040px;}
.ls29{letter-spacing:1838.822400px;}
.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:-17.023680px;}
.ws4{word-spacing:-16.824960px;}
.ws6{word-spacing:-16.626240px;}
.ws2{word-spacing:-16.560000px;}
.ws32{word-spacing:-16.493760px;}
.ws3{word-spacing:-16.361280px;}
.ws5{word-spacing:-16.295040px;}
.ws44{word-spacing:-15.298560px;}
.ws46{word-spacing:-15.119280px;}
.ws47{word-spacing:-14.940000px;}
.ws4d{word-spacing:-14.820480px;}
.ws49{word-spacing:-14.700960px;}
.ws31{word-spacing:-13.500000px;}
.ws1{word-spacing:-13.446000px;}
.ws30{word-spacing:-13.122000px;}
.ws2f{word-spacing:-13.068000px;}
.ws48{word-spacing:-12.301200px;}
.ws4a{word-spacing:-12.108240px;}
.ws4b{word-spacing:-11.818800px;}
.ws43{word-spacing:-11.770560px;}
.ws45{word-spacing:-11.674080px;}
.ws4c{word-spacing:-11.529360px;}
.ws16{word-spacing:-3.643200px;}
.ws3a{word-spacing:-3.510720px;}
.ws51{word-spacing:-2.748960px;}
.ws53{word-spacing:-2.569680px;}
.ws52{word-spacing:-2.450160px;}
.ws18{word-spacing:-2.252160px;}
.ws10{word-spacing:-2.119680px;}
.ws5a{word-spacing:-1.972080px;}
.ws50{word-spacing:-1.852560px;}
.ws36{word-spacing:-1.523520px;}
.ws3b{word-spacing:-1.391040px;}
.ws14{word-spacing:-1.258560px;}
.ws59{word-spacing:-1.135440px;}
.ws55{word-spacing:-0.836640px;}
.wsb{word-spacing:-0.794880px;}
.ws15{word-spacing:-0.662400px;}
.wsa{word-spacing:-0.596160px;}
.ws1a{word-spacing:-0.529920px;}
.ws54{word-spacing:-0.418320px;}
.ws5d{word-spacing:-0.298800px;}
.ws21{word-spacing:-0.270000px;}
.ws29{word-spacing:-0.264960px;}
.ws57{word-spacing:-0.239040px;}
.ws61{word-spacing:-0.119520px;}
.ws26{word-spacing:-0.108000px;}
.ws28{word-spacing:-0.066240px;}
.ws4f{word-spacing:-0.059760px;}
.ws7{word-spacing:0.000000px;}
.ws2a{word-spacing:0.066240px;}
.ws5c{word-spacing:0.119520px;}
.ws2d{word-spacing:0.198720px;}
.ws5b{word-spacing:0.239040px;}
.ws27{word-spacing:0.264960px;}
.ws56{word-spacing:0.298800px;}
.ws37{word-spacing:0.331200px;}
.ws58{word-spacing:0.418320px;}
.ws17{word-spacing:0.662400px;}
.ws2c{word-spacing:0.728640px;}
.wsc{word-spacing:0.794880px;}
.ws11{word-spacing:0.927360px;}
.ws22{word-spacing:0.993600px;}
.ws9{word-spacing:1.188000px;}
.ws8{word-spacing:1.296000px;}
.ws12{word-spacing:1.391040px;}
.ws3f{word-spacing:1.523520px;}
.ws41{word-spacing:1.589760px;}
.ws40{word-spacing:1.656000px;}
.ws23{word-spacing:1.987200px;}
.ws1b{word-spacing:2.119680px;}
.ws1f{word-spacing:2.252160px;}
.ws3d{word-spacing:2.384640px;}
.wsd{word-spacing:2.848320px;}
.ws38{word-spacing:2.980800px;}
.ws20{word-spacing:3.113280px;}
.ws24{word-spacing:3.510720px;}
.ws35{word-spacing:3.643200px;}
.ws25{word-spacing:3.775680px;}
.wsf{word-spacing:4.239360px;}
.ws5f{word-spacing:4.302720px;}
.ws60{word-spacing:4.422240px;}
.ws5e{word-spacing:4.482000px;}
.ws42{word-spacing:4.504320px;}
.ws2e{word-spacing:4.968000px;}
.ws19{word-spacing:5.232960px;}
.ws2b{word-spacing:5.365440px;}
.ws4e{word-spacing:5.696640px;}
.ws3c{word-spacing:5.829120px;}
.ws13{word-spacing:6.160320px;}
.ws1d{word-spacing:6.425280px;}
.ws1e{word-spacing:6.557760px;}
.ws1c{word-spacing:7.286400px;}
.wse{word-spacing:8.015040px;}
.ws34{word-spacing:8.346240px;}
.ws3e{word-spacing:10.002240px;}
.ws39{word-spacing:11.724480px;}
.ws33{word-spacing:12.188160px;}
._78{margin-left:-7.156584px;}
._79{margin-left:-4.457304px;}
._31{margin-left:-2.261376px;}
._2{margin-left:-1.127520px;}
._6{width:1.344600px;}
._5{width:2.614176px;}
._56{width:4.837680px;}
._30{width:6.592704px;}
._2d{width:26.608608px;}
._4b{width:28.814400px;}
._5d{width:39.565152px;}
._26{width:41.724576px;}
._47{width:47.215872px;}
._1c{width:49.938336px;}
._d{width:51.084288px;}
._2e{width:56.125152px;}
._b{width:57.562560px;}
._4f{width:59.092704px;}
._25{width:60.444000px;}
._68{width:62.795520px;}
._29{width:66.206880px;}
._19{width:68.167584px;}
._2b{width:72.691776px;}
._40{width:81.408960px;}
._f{width:89.251776px;}
._22{width:90.689184px;}
._3d{width:97.134336px;}
._6c{width:114.475968px;}
._3b{width:115.893504px;}
._5b{width:120.212352px;}
._12{width:124.537824px;}
._52{width:127.419264px;}
._28{width:128.843424px;}
._49{width:136.056960px;}
._61{width:138.223008px;}
._43{width:143.296992px;}
._6f{width:146.125440px;}
._9{width:156.213792px;}
._74{width:158.102784px;}
._48{width:160.618752px;}
._45{width:163.314720px;}
._10{width:167.017536px;}
._1b{width:170.369280px;}
._41{width:178.576416px;}
._72{width:185.710464px;}
._3c{width:190.791072px;}
._36{width:195.831936px;}
._13{width:197.209728px;}
._c{width:208.066464px;}
._46{width:215.564832px;}
._6e{width:219.015936px;}
._37{width:220.248000px;}
._39{width:225.348480px;}
._66{width:226.408320px;}
._65{width:234.284256px;}
._4a{width:239.762304px;}
._3a{width:244.028160px;}
._6a{width:245.220480px;}
._60{width:249.102144px;}
._58{width:254.103264px;}
._71{width:256.249440px;}
._70{width:261.296928px;}
._2c{width:265.642272px;}
._6d{width:266.993568px;}
._e{width:269.225856px;}
._5a{width:284.169600px;}
._17{width:285.183072px;}
._2a{width:290.124576px;}
._73{width:293.376960px;}
._23{width:296.616096px;}
._38{width:301.670208px;}
._67{width:304.068096px;}
._62{width:310.314528px;}
._27{width:312.447456px;}
._5f{width:328.325184px;}
._64{width:329.716224px;}
._15{width:334.710720px;}
._8{width:338.353920px;}
._11{width:345.574080px;}
._57{width:349.879680px;}
._51{width:357.894720px;}
._44{width:373.924800px;}
._a{width:377.349408px;}
._69{width:386.152704px;}
._16{width:388.033920px;}
._20{width:404.726400px;}
._2f{width:427.645440px;}
._14{width:444.185568px;}
._34{width:459.241920px;}
._32{width:470.171520px;}
._5e{width:493.176672px;}
._35{width:498.919680px;}
._4c{width:552.931776px;}
._53{width:595.431360px;}
._59{width:619.211520px;}
._5c{width:636.579648px;}
._76{width:643.674960px;}
._33{width:650.013120px;}
._1a{width:675.840096px;}
._63{width:705.674592px;}
._21{width:717.909120px;}
._1e{width:723.738240px;}
._4e{width:790.508160px;}
._54{width:799.185600px;}
._4d{width:836.611200px;}
._3{width:913.750560px;}
._6b{width:968.958720px;}
._42{width:978.431040px;}
._4{width:995.516640px;}
._77{width:1012.394160px;}
._1f{width:1068.451200px;}
._3f{width:1080.705600px;}
._75{width:1092.412800px;}
._0{width:1141.551360px;}
._1{width:1193.876640px;}
._7{width:1241.271360px;}
._18{width:1302.874560px;}
._50{width:1450.457280px;}
._24{width:1456.750080px;}
._1d{width:1459.995840px;}
._3e{width:1478.609280px;}
._55{width:1727.936640px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(23,54,93);}
.fc0{color:transparent;}
.fs5{font-size:38.880000px;}
.fs0{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y41{bottom:65.692080px;}
.y5{bottom:65.700000px;}
.y7b{bottom:65.704320px;}
.y40{bottom:98.464320px;}
.y28{bottom:98.470080px;}
.y7a{bottom:99.917280px;}
.y64{bottom:99.926640px;}
.y3f{bottom:118.800000px;}
.y27{bottom:118.838880px;}
.y79{bottom:120.435120px;}
.y26{bottom:139.174560px;}
.y9b{bottom:140.768490px;}
.y78{bottom:140.770800px;}
.y63{bottom:140.780160px;}
.y9a{bottom:159.315690px;}
.y25{bottom:159.510240px;}
.y77{bottom:161.106480px;}
.y62{bottom:161.115840px;}
.y24{bottom:179.845920px;}
.y76{bottom:181.624320px;}
.y61{bottom:181.633680px;}
.y99{bottom:193.147770px;}
.y23{bottom:200.181600px;}
.y75{bottom:201.960000px;}
.y60{bottom:201.969360px;}
.y3e{bottom:220.517280px;}
.y74{bottom:222.308640px;}
.y5f{bottom:222.321600px;}
.y98{bottom:226.979850px;}
.y22{bottom:240.852960px;}
.y73{bottom:242.826480px;}
.y5e{bottom:242.839440px;}
.y97{bottom:260.460900px;}
.y21{bottom:261.188640px;}
.y72{bottom:263.344320px;}
.y5d{bottom:263.357280px;}
.y96{bottom:277.920000px;}
.yb4{bottom:279.368820px;}
.y3d{bottom:281.524320px;}
.y71{bottom:297.010800px;}
.y5c{bottom:297.023760px;}
.y20{bottom:301.860000px;}
.y3c{bottom:301.866480px;}
.y95{bottom:307.254780px;}
.yb3{bottom:307.261800px;}
.y70{bottom:317.528640px;}
.y5b{bottom:317.541600px;}
.y1f{bottom:322.020000px;}
.y1e{bottom:322.021440px;}
.y3b{bottom:322.024320px;}
.y94{bottom:326.153880px;}
.yb2{bottom:326.160900px;}
.y6f{bottom:337.864320px;}
.y5a{bottom:337.877280px;}
.y1d{bottom:342.357120px;}
.y3a{bottom:342.360000px;}
.y39{bottom:342.364320px;}
.y93{bottom:345.052980px;}
.yb1{bottom:345.067920px;}
.y6e{bottom:358.200000px;}
.y6d{bottom:358.206480px;}
.y59{bottom:358.212960px;}
.y38{bottom:362.700000px;}
.y37{bottom:362.704320px;}
.y1c{bottom:362.709360px;}
.y92{bottom:372.960900px;}
.y6c{bottom:378.724320px;}
.y58{bottom:378.730800px;}
.y91{bottom:391.852980px;}
.yb0{bottom:391.867920px;}
.y36{bottom:395.824320px;}
.y1b{bottom:395.829360px;}
.y6b{bottom:399.060000px;}
.y57{bottom:399.066480px;}
.y35{bottom:416.160000px;}
.y34{bottom:416.164320px;}
.y1a{bottom:416.165040px;}
.y56{bottom:419.402160px;}
.y90{bottom:419.760900px;}
.y33{bottom:436.500000px;}
.y19{bottom:436.517280px;}
.y8f{bottom:438.660000px;}
.y55{bottom:439.920000px;}
.y54{bottom:439.928640px;}
.y18{bottom:456.852960px;}
.y53{bottom:460.264320px;}
.y8e{bottom:467.100000px;}
.y17{bottom:477.188640px;}
.y52{bottom:480.600000px;}
.y51{bottom:480.645360px;}
.y16{bottom:497.524320px;}
.y50{bottom:501.163200px;}
.yaf{bottom:514.264320px;}
.y8d{bottom:514.277280px;}
.y15{bottom:517.860000px;}
.y14{bottom:517.870800px;}
.y4f{bottom:521.498880px;}
.yae{bottom:534.600000px;}
.yad{bottom:534.606480px;}
.y8c{bottom:534.612960px;}
.y13{bottom:538.024320px;}
.y6a{bottom:541.834560px;}
.yac{bottom:555.124320px;}
.y8b{bottom:555.130800px;}
.y12{bottom:558.360000px;}
.y32{bottom:558.394590px;}
.y11{bottom:558.403200px;}
.y4e{bottom:562.352400px;}
.yab{bottom:575.460000px;}
.y8a{bottom:575.466480px;}
.y31{bottom:578.730270px;}
.y10{bottom:578.738880px;}
.y4d{bottom:582.688080px;}
.y89{bottom:595.802160px;}
.y30{bottom:599.065950px;}
.y4c{bottom:603.023760px;}
.y88{bottom:616.320000px;}
.yaa{bottom:616.324320px;}
.y2f{bottom:619.401630px;}
.yf{bottom:619.410240px;}
.y4b{bottom:623.541600px;}
.ya9{bottom:636.660000px;}
.ya8{bottom:636.664320px;}
.y87{bottom:636.666480px;}
.y2e{bottom:639.737310px;}
.y4a{bottom:643.877280px;}
.ya7{bottom:657.000000px;}
.y86{bottom:657.002160px;}
.y2d{bottom:660.072990px;}
.ye{bottom:660.081600px;}
.y49{bottom:664.212960px;}
.y85{bottom:677.520000px;}
.y84{bottom:677.542320px;}
.ya6{bottom:677.550240px;}
.y2c{bottom:680.408670px;}
.yd{bottom:680.417280px;}
.y48{bottom:684.730800px;}
.y83{bottom:697.878000px;}
.ya5{bottom:697.885920px;}
.y2b{bottom:700.744350px;}
.yc{bottom:700.752960px;}
.y47{bottom:705.066480px;}
.y82{bottom:718.213680px;}
.ya4{bottom:718.221600px;}
.y2a{bottom:721.084320px;}
.yb{bottom:721.088640px;}
.y46{bottom:725.402160px;}
.y81{bottom:738.731520px;}
.ya3{bottom:738.739440px;}
.y29{bottom:741.420000px;}
.ya{bottom:741.424320px;}
.y45{bottom:745.920000px;}
.y69{bottom:745.922160px;}
.ya2{bottom:759.075120px;}
.y9{bottom:761.760000px;}
.y44{bottom:766.440000px;}
.y80{bottom:779.402880px;}
.ya1{bottom:779.410800px;}
.y8{bottom:799.380000px;}
.y7f{bottom:799.920720px;}
.ya0{bottom:799.928640px;}
.y68{bottom:800.285010px;}
.y43{bottom:800.285040px;}
.y7e{bottom:820.256400px;}
.y9f{bottom:820.264320px;}
.y67{bottom:820.620690px;}
.y42{bottom:820.620720px;}
.y7{bottom:828.900000px;}
.y9e{bottom:840.600000px;}
.y7d{bottom:840.608640px;}
.y9d{bottom:840.610650px;}
.y66{bottom:840.953520px;}
.y6{bottom:858.060000px;}
.y7c{bottom:861.126480px;}
.y9c{bottom:861.128490px;}
.y65{bottom:861.289200px;}
.y4{bottom:907.920000px;}
.y3{bottom:927.540000px;}
.y2{bottom:943.740000px;}
.y1{bottom:958.319850px;}
.h3{height:34.969922px;}
.h2{height:34.990313px;}
.h5{height:45.219727px;}
.h4{height:45.246094px;}
.hc{height:50.043164px;}
.hd{height:50.071244px;}
.h11{height:50.503939px;}
.h10{height:50.539219px;}
.h6{height:55.469531px;}
.hb{height:55.480931px;}
.ha{height:55.501875px;}
.he{height:55.803164px;}
.h9{height:55.886895px;}
.h8{height:56.019375px;}
.hf{height:65.010937px;}
.h7{height:75.410156px;}
.h0{height:1020.600030px;}
.h1{height:1020.750000px;}
.w0{width:722.880015px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:89.280000px;}
.x4a{left:98.466522px;}
.x2b{left:103.680000px;}
.x30{left:109.440000px;}
.x4d{left:112.319760px;}
.x62{left:114.850800px;}
.x1c{left:115.907760px;}
.x29{left:119.165700px;}
.x22{left:122.971440px;}
.xa{left:124.382700px;}
.x15{left:128.168268px;}
.xf{left:131.935920px;}
.x5d{left:136.620000px;}
.x10{left:138.245280px;}
.x3e{left:142.013550px;}
.xb{left:150.475500px;}
.x52{left:151.731690px;}
.x1{left:154.977000px;}
.x50{left:156.061950px;}
.x55{left:158.051160px;}
.xd{left:160.021680px;}
.x24{left:165.054300px;}
.x32{left:167.217840px;}
.x5a{left:168.294300px;}
.x6{left:170.280000px;}
.x37{left:171.739392px;}
.x44{left:174.060000px;}
.x49{left:175.876590px;}
.x18{left:177.295680px;}
.x27{left:179.280000px;}
.x59{left:180.360000px;}
.x2a{left:182.160000px;}
.x3a{left:183.418140px;}
.x51{left:185.765010px;}
.x2e{left:191.890110px;}
.x3d{left:194.927340px;}
.x47{left:200.915310px;}
.x21{left:220.890720px;}
.x2c{left:226.260000px;}
.x4b{left:240.643200px;}
.x53{left:243.911340px;}
.x13{left:247.309440px;}
.x39{left:253.450380px;}
.x41{left:257.940000px;}
.x26{left:261.000000px;}
.x16{left:264.600000px;}
.x20{left:266.265120px;}
.x3c{left:272.693100px;}
.x4f{left:288.004800px;}
.x36{left:295.938720px;}
.x12{left:304.126800px;}
.x5b{left:305.640000px;}
.x45{left:309.420000px;}
.x31{left:314.999280px;}
.x4c{left:320.942640px;}
.x5e{left:325.260000px;}
.x2d{left:349.733460px;}
.x7{left:351.180000px;}
.x1a{left:361.062000px;}
.x5c{left:367.020000px;}
.x4{left:371.516850px;}
.x8{left:372.957150px;}
.x38{left:376.571136px;}
.x56{left:380.157330px;}
.x35{left:383.922000px;}
.x1b{left:391.151520px;}
.x28{left:395.460000px;}
.x54{left:396.911880px;}
.x34{left:410.964480px;}
.x4e{left:414.109200px;}
.x60{left:418.140000px;}
.x48{left:419.937870px;}
.x14{left:424.435200px;}
.x25{left:428.760000px;}
.x57{left:440.820000px;}
.x46{left:446.748510px;}
.x17{left:449.475840px;}
.xe{left:451.626720px;}
.x2f{left:453.598650px;}
.x58{left:466.740000px;}
.x5f{left:489.962100px;}
.x61{left:495.537900px;}
.x3{left:503.287500px;}
.xc{left:508.311600px;}
.x23{left:512.820000px;}
.x42{left:513.900000px;}
.x19{left:530.802000px;}
.x1f{left:534.967680px;}
.x40{left:537.840000px;}
.x33{left:541.622880px;}
.x1d{left:554.740650px;}
.x11{left:557.047680px;}
.x43{left:558.904350px;}
.x3b{left:596.109900px;}
.x1e{left:606.341280px;}
.x9{left:610.254450px;}
.x3f{left:622.440000px;}
.x2{left:633.600000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.120000pt;}
.ls1b{letter-spacing:-1.392000pt;}
.ls11{letter-spacing:-1.076480pt;}
.ls19{letter-spacing:-0.824320pt;}
.ls5a{letter-spacing:-0.743680pt;}
.ls21{letter-spacing:-0.706560pt;}
.ls31{letter-spacing:-0.528000pt;}
.ls1a{letter-spacing:-0.480000pt;}
.ls5e{letter-spacing:-0.471680pt;}
.ls14{letter-spacing:-0.384000pt;}
.ls58{letter-spacing:-0.371840pt;}
.ls56{letter-spacing:-0.343040pt;}
.ls32{letter-spacing:-0.336000pt;}
.ls10{letter-spacing:-0.296960pt;}
.ls30{letter-spacing:-0.294400pt;}
.ls13{letter-spacing:-0.288000pt;}
.ls54{letter-spacing:-0.257280pt;}
.ls1c{letter-spacing:-0.235520pt;}
.lsf{letter-spacing:-0.222720pt;}
.ls5d{letter-spacing:-0.214400pt;}
.ls5b{letter-spacing:-0.212480pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.176640pt;}
.ls23{letter-spacing:-0.144000pt;}
.ls52{letter-spacing:-0.106240pt;}
.ls15{letter-spacing:-0.058880pt;}
.ls5c{letter-spacing:-0.053120pt;}
.ls20{letter-spacing:-0.048000pt;}
.lse{letter-spacing:0.000000pt;}
.ls4e{letter-spacing:0.042880pt;}
.ls2d{letter-spacing:0.046080pt;}
.ls4c{letter-spacing:0.053120pt;}
.lsd{letter-spacing:0.058880pt;}
.lsb{letter-spacing:0.076587pt;}
.ls22{letter-spacing:0.096000pt;}
.ls2c{letter-spacing:0.099733pt;}
.ls4d{letter-spacing:0.112640pt;}
.lsa{letter-spacing:0.118059pt;}
.ls51{letter-spacing:0.131200pt;}
.ls1f{letter-spacing:0.144000pt;}
.ls57{letter-spacing:0.159360pt;}
.ls49{letter-spacing:0.163627pt;}
.ls4f{letter-spacing:0.188160pt;}
.ls4a{letter-spacing:0.188800pt;}
.ls4b{letter-spacing:0.212480pt;}
.ls59{letter-spacing:0.214400pt;}
.ls17{letter-spacing:0.235520pt;}
.ls53{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.268800pt;}
.ls2e{letter-spacing:0.276373pt;}
.ls1d{letter-spacing:0.294400pt;}
.ls55{letter-spacing:0.318720pt;}
.ls1e{letter-spacing:0.412160pt;}
.ls50{letter-spacing:0.637440pt;}
.ls2f{letter-spacing:0.647680pt;}
.ls18{letter-spacing:0.824320pt;}
.ls24{letter-spacing:24.317440pt;}
.ls3a{letter-spacing:27.673067pt;}
.ls3f{letter-spacing:41.789547pt;}
.ls5{letter-spacing:43.512320pt;}
.ls3e{letter-spacing:55.984533pt;}
.ls3b{letter-spacing:56.672533pt;}
.ls40{letter-spacing:76.500267pt;}
.ls46{letter-spacing:88.005867pt;}
.ls9{letter-spacing:121.587200pt;}
.ls39{letter-spacing:176.640000pt;}
.ls41{letter-spacing:188.666453pt;}
.ls42{letter-spacing:192.355200pt;}
.ls2{letter-spacing:193.361920pt;}
.ls38{letter-spacing:202.841600pt;}
.ls0{letter-spacing:206.880000pt;}
.ls3c{letter-spacing:265.727467pt;}
.ls3d{letter-spacing:275.967467pt;}
.ls43{letter-spacing:304.058880pt;}
.ls33{letter-spacing:375.889920pt;}
.ls37{letter-spacing:394.260480pt;}
.ls1{letter-spacing:394.849280pt;}
.ls28{letter-spacing:421.757440pt;}
.ls3{letter-spacing:424.230400pt;}
.ls47{letter-spacing:437.655680pt;}
.ls27{letter-spacing:515.082240pt;}
.ls2a{letter-spacing:539.340800pt;}
.ls25{letter-spacing:558.535680pt;}
.ls36{letter-spacing:570.900480pt;}
.ls34{letter-spacing:608.701440pt;}
.ls48{letter-spacing:753.251840pt;}
.ls35{letter-spacing:758.904320pt;}
.ls2b{letter-spacing:766.146560pt;}
.ls45{letter-spacing:828.300160pt;}
.ls44{letter-spacing:845.936000pt;}
.ls26{letter-spacing:868.244480pt;}
.ls8{letter-spacing:1290.826240pt;}
.ls4{letter-spacing:1358.773760pt;}
.ls7{letter-spacing:1454.924800pt;}
.ls6{letter-spacing:1607.188480pt;}
.ls29{letter-spacing:1634.508800pt;}
.ws0{word-spacing:-15.132160pt;}
.ws4{word-spacing:-14.955520pt;}
.ws6{word-spacing:-14.778880pt;}
.ws2{word-spacing:-14.720000pt;}
.ws32{word-spacing:-14.661120pt;}
.ws3{word-spacing:-14.543360pt;}
.ws5{word-spacing:-14.484480pt;}
.ws44{word-spacing:-13.598720pt;}
.ws46{word-spacing:-13.439360pt;}
.ws47{word-spacing:-13.280000pt;}
.ws4d{word-spacing:-13.173760pt;}
.ws49{word-spacing:-13.067520pt;}
.ws31{word-spacing:-12.000000pt;}
.ws1{word-spacing:-11.952000pt;}
.ws30{word-spacing:-11.664000pt;}
.ws2f{word-spacing:-11.616000pt;}
.ws48{word-spacing:-10.934400pt;}
.ws4a{word-spacing:-10.762880pt;}
.ws4b{word-spacing:-10.505600pt;}
.ws43{word-spacing:-10.462720pt;}
.ws45{word-spacing:-10.376960pt;}
.ws4c{word-spacing:-10.248320pt;}
.ws16{word-spacing:-3.238400pt;}
.ws3a{word-spacing:-3.120640pt;}
.ws51{word-spacing:-2.443520pt;}
.ws53{word-spacing:-2.284160pt;}
.ws52{word-spacing:-2.177920pt;}
.ws18{word-spacing:-2.001920pt;}
.ws10{word-spacing:-1.884160pt;}
.ws5a{word-spacing:-1.752960pt;}
.ws50{word-spacing:-1.646720pt;}
.ws36{word-spacing:-1.354240pt;}
.ws3b{word-spacing:-1.236480pt;}
.ws14{word-spacing:-1.118720pt;}
.ws59{word-spacing:-1.009280pt;}
.ws55{word-spacing:-0.743680pt;}
.wsb{word-spacing:-0.706560pt;}
.ws15{word-spacing:-0.588800pt;}
.wsa{word-spacing:-0.529920pt;}
.ws1a{word-spacing:-0.471040pt;}
.ws54{word-spacing:-0.371840pt;}
.ws5d{word-spacing:-0.265600pt;}
.ws21{word-spacing:-0.240000pt;}
.ws29{word-spacing:-0.235520pt;}
.ws57{word-spacing:-0.212480pt;}
.ws61{word-spacing:-0.106240pt;}
.ws26{word-spacing:-0.096000pt;}
.ws28{word-spacing:-0.058880pt;}
.ws4f{word-spacing:-0.053120pt;}
.ws7{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.058880pt;}
.ws5c{word-spacing:0.106240pt;}
.ws2d{word-spacing:0.176640pt;}
.ws5b{word-spacing:0.212480pt;}
.ws27{word-spacing:0.235520pt;}
.ws56{word-spacing:0.265600pt;}
.ws37{word-spacing:0.294400pt;}
.ws58{word-spacing:0.371840pt;}
.ws17{word-spacing:0.588800pt;}
.ws2c{word-spacing:0.647680pt;}
.wsc{word-spacing:0.706560pt;}
.ws11{word-spacing:0.824320pt;}
.ws22{word-spacing:0.883200pt;}
.ws9{word-spacing:1.056000pt;}
.ws8{word-spacing:1.152000pt;}
.ws12{word-spacing:1.236480pt;}
.ws3f{word-spacing:1.354240pt;}
.ws41{word-spacing:1.413120pt;}
.ws40{word-spacing:1.472000pt;}
.ws23{word-spacing:1.766400pt;}
.ws1b{word-spacing:1.884160pt;}
.ws1f{word-spacing:2.001920pt;}
.ws3d{word-spacing:2.119680pt;}
.wsd{word-spacing:2.531840pt;}
.ws38{word-spacing:2.649600pt;}
.ws20{word-spacing:2.767360pt;}
.ws24{word-spacing:3.120640pt;}
.ws35{word-spacing:3.238400pt;}
.ws25{word-spacing:3.356160pt;}
.wsf{word-spacing:3.768320pt;}
.ws5f{word-spacing:3.824640pt;}
.ws60{word-spacing:3.930880pt;}
.ws5e{word-spacing:3.984000pt;}
.ws42{word-spacing:4.003840pt;}
.ws2e{word-spacing:4.416000pt;}
.ws19{word-spacing:4.651520pt;}
.ws2b{word-spacing:4.769280pt;}
.ws4e{word-spacing:5.063680pt;}
.ws3c{word-spacing:5.181440pt;}
.ws13{word-spacing:5.475840pt;}
.ws1d{word-spacing:5.711360pt;}
.ws1e{word-spacing:5.829120pt;}
.ws1c{word-spacing:6.476800pt;}
.wse{word-spacing:7.124480pt;}
.ws34{word-spacing:7.418880pt;}
.ws3e{word-spacing:8.890880pt;}
.ws39{word-spacing:10.421760pt;}
.ws33{word-spacing:10.833920pt;}
._78{margin-left:-6.361408pt;}
._79{margin-left:-3.962048pt;}
._31{margin-left:-2.010112pt;}
._2{margin-left:-1.002240pt;}
._6{width:1.195200pt;}
._5{width:2.323712pt;}
._56{width:4.300160pt;}
._30{width:5.860181pt;}
._2d{width:23.652096pt;}
._4b{width:25.612800pt;}
._5d{width:35.169024pt;}
._26{width:37.088512pt;}
._47{width:41.969664pt;}
._1c{width:44.389632pt;}
._d{width:45.408256pt;}
._2e{width:49.889024pt;}
._b{width:51.166720pt;}
._4f{width:52.526848pt;}
._25{width:53.728000pt;}
._68{width:55.818240pt;}
._29{width:58.850560pt;}
._19{width:60.593408pt;}
._2b{width:64.614912pt;}
._40{width:72.363520pt;}
._f{width:79.334912pt;}
._22{width:80.612608pt;}
._3d{width:86.341632pt;}
._6c{width:101.756416pt;}
._3b{width:103.016448pt;}
._5b{width:106.855424pt;}
._12{width:110.700288pt;}
._52{width:113.261568pt;}
._28{width:114.527488pt;}
._49{width:120.939520pt;}
._61{width:122.864896pt;}
._43{width:127.375104pt;}
._6f{width:129.889280pt;}
._9{width:138.856704pt;}
._74{width:140.535808pt;}
._48{width:142.772224pt;}
._45{width:145.168640pt;}
._10{width:148.460032pt;}
._1b{width:151.439360pt;}
._41{width:158.734592pt;}
._72{width:165.075968pt;}
._3c{width:169.592064pt;}
._36{width:174.072832pt;}
._13{width:175.297536pt;}
._c{width:184.947968pt;}
._46{width:191.613184pt;}
._6e{width:194.680832pt;}
._37{width:195.776000pt;}
._39{width:200.309760pt;}
._66{width:201.251840pt;}
._65{width:208.252672pt;}
._4a{width:213.122048pt;}
._3a{width:216.913920pt;}
._6a{width:217.973760pt;}
._60{width:221.424128pt;}
._58{width:225.869568pt;}
._71{width:227.777280pt;}
._70{width:232.263936pt;}
._2c{width:236.126464pt;}
._6d{width:237.327616pt;}
._e{width:239.311872pt;}
._5a{width:252.595200pt;}
._17{width:253.496064pt;}
._2a{width:257.888512pt;}
._73{width:260.779520pt;}
._23{width:263.658752pt;}
._38{width:268.151296pt;}
._67{width:270.282752pt;}
._62{width:275.835136pt;}
._27{width:277.731072pt;}
._5f{width:291.844608pt;}
._64{width:293.081088pt;}
._15{width:297.520640pt;}
._8{width:300.759040pt;}
._11{width:307.176960pt;}
._57{width:311.004160pt;}
._51{width:318.128640pt;}
._44{width:332.377600pt;}
._a{width:335.421696pt;}
._69{width:343.246848pt;}
._16{width:344.919040pt;}
._20{width:359.756800pt;}
._2f{width:380.129280pt;}
._14{width:394.831616pt;}
._34{width:408.215040pt;}
._32{width:417.930240pt;}
._5e{width:438.379264pt;}
._35{width:443.484160pt;}
._4c{width:491.494912pt;}
._53{width:529.272320pt;}
._59{width:550.410240pt;}
._5c{width:565.848576pt;}
._76{width:572.155520pt;}
._33{width:577.789440pt;}
._1a{width:600.746752pt;}
._63{width:627.266304pt;}
._21{width:638.141440pt;}
._1e{width:643.322880pt;}
._4e{width:702.673920pt;}
._54{width:710.387200pt;}
._4d{width:743.654400pt;}
._3{width:812.222720pt;}
._6b{width:861.296640pt;}
._42{width:869.716480pt;}
._4{width:884.903680pt;}
._77{width:899.905920pt;}
._1f{width:949.734400pt;}
._3f{width:960.627200pt;}
._75{width:971.033600pt;}
._0{width:1014.712320pt;}
._1{width:1061.223680pt;}
._7{width:1103.352320pt;}
._18{width:1158.110720pt;}
._50{width:1289.295360pt;}
._24{width:1294.888960pt;}
._1d{width:1297.774080pt;}
._3e{width:1314.319360pt;}
._55{width:1535.943680pt;}
.fs5{font-size:34.560000pt;}
.fs0{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:58.392960pt;}
.y5{bottom:58.400000pt;}
.y7b{bottom:58.403840pt;}
.y40{bottom:87.523840pt;}
.y28{bottom:87.528960pt;}
.y7a{bottom:88.815360pt;}
.y64{bottom:88.823680pt;}
.y3f{bottom:105.600000pt;}
.y27{bottom:105.634560pt;}
.y79{bottom:107.053440pt;}
.y26{bottom:123.710720pt;}
.y9b{bottom:125.127547pt;}
.y78{bottom:125.129600pt;}
.y63{bottom:125.137920pt;}
.y9a{bottom:141.613947pt;}
.y25{bottom:141.786880pt;}
.y77{bottom:143.205760pt;}
.y62{bottom:143.214080pt;}
.y24{bottom:159.863040pt;}
.y76{bottom:161.443840pt;}
.y61{bottom:161.452160pt;}
.y99{bottom:171.686907pt;}
.y23{bottom:177.939200pt;}
.y75{bottom:179.520000pt;}
.y60{bottom:179.528320pt;}
.y3e{bottom:196.015360pt;}
.y74{bottom:197.607680pt;}
.y5f{bottom:197.619200pt;}
.y98{bottom:201.759867pt;}
.y22{bottom:214.091520pt;}
.y73{bottom:215.845760pt;}
.y5e{bottom:215.857280pt;}
.y97{bottom:231.520800pt;}
.y21{bottom:232.167680pt;}
.y72{bottom:234.083840pt;}
.y5d{bottom:234.095360pt;}
.y96{bottom:247.040000pt;}
.yb4{bottom:248.327840pt;}
.y3d{bottom:250.243840pt;}
.y71{bottom:264.009600pt;}
.y5c{bottom:264.021120pt;}
.y20{bottom:268.320000pt;}
.y3c{bottom:268.325760pt;}
.y95{bottom:273.115360pt;}
.yb3{bottom:273.121600pt;}
.y70{bottom:282.247680pt;}
.y5b{bottom:282.259200pt;}
.y1f{bottom:286.240000pt;}
.y1e{bottom:286.241280pt;}
.y3b{bottom:286.243840pt;}
.y94{bottom:289.914560pt;}
.yb2{bottom:289.920800pt;}
.y6f{bottom:300.323840pt;}
.y5a{bottom:300.335360pt;}
.y1d{bottom:304.317440pt;}
.y3a{bottom:304.320000pt;}
.y39{bottom:304.323840pt;}
.y93{bottom:306.713760pt;}
.yb1{bottom:306.727040pt;}
.y6e{bottom:318.400000pt;}
.y6d{bottom:318.405760pt;}
.y59{bottom:318.411520pt;}
.y38{bottom:322.400000pt;}
.y37{bottom:322.403840pt;}
.y1c{bottom:322.408320pt;}
.y92{bottom:331.520800pt;}
.y6c{bottom:336.643840pt;}
.y58{bottom:336.649600pt;}
.y91{bottom:348.313760pt;}
.yb0{bottom:348.327040pt;}
.y36{bottom:351.843840pt;}
.y1b{bottom:351.848320pt;}
.y6b{bottom:354.720000pt;}
.y57{bottom:354.725760pt;}
.y35{bottom:369.920000pt;}
.y34{bottom:369.923840pt;}
.y1a{bottom:369.924480pt;}
.y56{bottom:372.801920pt;}
.y90{bottom:373.120800pt;}
.y33{bottom:388.000000pt;}
.y19{bottom:388.015360pt;}
.y8f{bottom:389.920000pt;}
.y55{bottom:391.040000pt;}
.y54{bottom:391.047680pt;}
.y18{bottom:406.091520pt;}
.y53{bottom:409.123840pt;}
.y8e{bottom:415.200000pt;}
.y17{bottom:424.167680pt;}
.y52{bottom:427.200000pt;}
.y51{bottom:427.240320pt;}
.y16{bottom:442.243840pt;}
.y50{bottom:445.478400pt;}
.yaf{bottom:457.123840pt;}
.y8d{bottom:457.135360pt;}
.y15{bottom:460.320000pt;}
.y14{bottom:460.329600pt;}
.y4f{bottom:463.554560pt;}
.yae{bottom:475.200000pt;}
.yad{bottom:475.205760pt;}
.y8c{bottom:475.211520pt;}
.y13{bottom:478.243840pt;}
.y6a{bottom:481.630720pt;}
.yac{bottom:493.443840pt;}
.y8b{bottom:493.449600pt;}
.y12{bottom:496.320000pt;}
.y32{bottom:496.350747pt;}
.y11{bottom:496.358400pt;}
.y4e{bottom:499.868800pt;}
.yab{bottom:511.520000pt;}
.y8a{bottom:511.525760pt;}
.y31{bottom:514.426907pt;}
.y10{bottom:514.434560pt;}
.y4d{bottom:517.944960pt;}
.y89{bottom:529.601920pt;}
.y30{bottom:532.503067pt;}
.y4c{bottom:536.021120pt;}
.y88{bottom:547.840000pt;}
.yaa{bottom:547.843840pt;}
.y2f{bottom:550.579227pt;}
.yf{bottom:550.586880pt;}
.y4b{bottom:554.259200pt;}
.ya9{bottom:565.920000pt;}
.ya8{bottom:565.923840pt;}
.y87{bottom:565.925760pt;}
.y2e{bottom:568.655387pt;}
.y4a{bottom:572.335360pt;}
.ya7{bottom:584.000000pt;}
.y86{bottom:584.001920pt;}
.y2d{bottom:586.731547pt;}
.ye{bottom:586.739200pt;}
.y49{bottom:590.411520pt;}
.y85{bottom:602.240000pt;}
.y84{bottom:602.259840pt;}
.ya6{bottom:602.266880pt;}
.y2c{bottom:604.807707pt;}
.yd{bottom:604.815360pt;}
.y48{bottom:608.649600pt;}
.y83{bottom:620.336000pt;}
.ya5{bottom:620.343040pt;}
.y2b{bottom:622.883867pt;}
.yc{bottom:622.891520pt;}
.y47{bottom:626.725760pt;}
.y82{bottom:638.412160pt;}
.ya4{bottom:638.419200pt;}
.y2a{bottom:640.963840pt;}
.yb{bottom:640.967680pt;}
.y46{bottom:644.801920pt;}
.y81{bottom:656.650240pt;}
.ya3{bottom:656.657280pt;}
.y29{bottom:659.040000pt;}
.ya{bottom:659.043840pt;}
.y45{bottom:663.040000pt;}
.y69{bottom:663.041920pt;}
.ya2{bottom:674.733440pt;}
.y9{bottom:677.120000pt;}
.y44{bottom:681.280000pt;}
.y80{bottom:692.802560pt;}
.ya1{bottom:692.809600pt;}
.y8{bottom:710.560000pt;}
.y7f{bottom:711.040640pt;}
.ya0{bottom:711.047680pt;}
.y68{bottom:711.364453pt;}
.y43{bottom:711.364480pt;}
.y7e{bottom:729.116800pt;}
.y9f{bottom:729.123840pt;}
.y67{bottom:729.440613pt;}
.y42{bottom:729.440640pt;}
.y7{bottom:736.800000pt;}
.y9e{bottom:747.200000pt;}
.y7d{bottom:747.207680pt;}
.y9d{bottom:747.209467pt;}
.y66{bottom:747.514240pt;}
.y6{bottom:762.720000pt;}
.y7c{bottom:765.445760pt;}
.y9c{bottom:765.447547pt;}
.y65{bottom:765.590400pt;}
.y4{bottom:807.040000pt;}
.y3{bottom:824.480000pt;}
.y2{bottom:838.880000pt;}
.y1{bottom:851.839867pt;}
.h3{height:31.084375pt;}
.h2{height:31.102500pt;}
.h5{height:40.195312pt;}
.h4{height:40.218750pt;}
.hc{height:44.482813pt;}
.hd{height:44.507773pt;}
.h11{height:44.892390pt;}
.h10{height:44.923750pt;}
.h6{height:49.306250pt;}
.hb{height:49.316383pt;}
.ha{height:49.335000pt;}
.he{height:49.602812pt;}
.h9{height:49.677240pt;}
.h8{height:49.795000pt;}
.hf{height:57.787500pt;}
.h7{height:67.031250pt;}
.h0{height:907.200027pt;}
.h1{height:907.333333pt;}
.w0{width:642.560013pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:79.360000pt;}
.x4a{left:87.525797pt;}
.x2b{left:92.160000pt;}
.x30{left:97.280000pt;}
.x4d{left:99.839787pt;}
.x62{left:102.089600pt;}
.x1c{left:103.029120pt;}
.x29{left:105.925067pt;}
.x22{left:109.307947pt;}
.xa{left:110.562400pt;}
.x15{left:113.927349pt;}
.xf{left:117.276373pt;}
.x5d{left:121.440000pt;}
.x10{left:122.884693pt;}
.x3e{left:126.234267pt;}
.xb{left:133.756000pt;}
.x52{left:134.872613pt;}
.x1{left:137.757333pt;}
.x50{left:138.721733pt;}
.x55{left:140.489920pt;}
.xd{left:142.241493pt;}
.x24{left:146.714933pt;}
.x32{left:148.638080pt;}
.x5a{left:149.594933pt;}
.x6{left:151.360000pt;}
.x37{left:152.657237pt;}
.x44{left:154.720000pt;}
.x49{left:156.334747pt;}
.x18{left:157.596160pt;}
.x27{left:159.360000pt;}
.x59{left:160.320000pt;}
.x2a{left:161.920000pt;}
.x3a{left:163.038347pt;}
.x51{left:165.124453pt;}
.x2e{left:170.568987pt;}
.x3d{left:173.268747pt;}
.x47{left:178.591387pt;}
.x21{left:196.347307pt;}
.x2c{left:201.120000pt;}
.x4b{left:213.905067pt;}
.x53{left:216.810080pt;}
.x13{left:219.830613pt;}
.x39{left:225.289227pt;}
.x41{left:229.280000pt;}
.x26{left:232.000000pt;}
.x16{left:235.200000pt;}
.x20{left:236.680107pt;}
.x3c{left:242.393867pt;}
.x4f{left:256.004267pt;}
.x36{left:263.056640pt;}
.x12{left:270.334933pt;}
.x5b{left:271.680000pt;}
.x45{left:275.040000pt;}
.x31{left:279.999360pt;}
.x4c{left:285.282347pt;}
.x5e{left:289.120000pt;}
.x2d{left:310.874187pt;}
.x7{left:312.160000pt;}
.x1a{left:320.944000pt;}
.x5c{left:326.240000pt;}
.x4{left:330.237200pt;}
.x8{left:331.517467pt;}
.x38{left:334.729899pt;}
.x56{left:337.917627pt;}
.x35{left:341.264000pt;}
.x1b{left:347.690240pt;}
.x28{left:351.520000pt;}
.x54{left:352.810560pt;}
.x34{left:365.301760pt;}
.x4e{left:368.097067pt;}
.x60{left:371.680000pt;}
.x48{left:373.278107pt;}
.x14{left:377.275733pt;}
.x25{left:381.120000pt;}
.x57{left:391.840000pt;}
.x46{left:397.109787pt;}
.x17{left:399.534080pt;}
.xe{left:401.445973pt;}
.x2f{left:403.198800pt;}
.x58{left:414.880000pt;}
.x5f{left:435.521867pt;}
.x61{left:440.478133pt;}
.x3{left:447.366667pt;}
.xc{left:451.832533pt;}
.x23{left:455.840000pt;}
.x42{left:456.800000pt;}
.x19{left:471.824000pt;}
.x1f{left:475.526827pt;}
.x40{left:478.080000pt;}
.x33{left:481.442560pt;}
.x1d{left:493.102800pt;}
.x11{left:495.153493pt;}
.x43{left:496.803867pt;}
.x3b{left:529.875467pt;}
.x1e{left:538.970027pt;}
.x9{left:542.448400pt;}
.x3f{left:553.280000pt;}
.x2{left:563.200000pt;}
}

