
    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_d37cdc1d1d9d5b6edb498cf5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_84fd2410239a9014f4f20bcd.woff')format("woff");}.ff2{font-family:ff2;line-height:1.004395;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_d505364d3e6c17f3f76fa561.woff')format("woff");}.ff3{font-family:ff3;line-height:1.206055;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_012767cd487036d247edd169.woff')format("woff");}.ff4{font-family:ff4;line-height:1.150391;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_886c92e54dbca65012ab50ca.woff')format("woff");}.ff5{font-family:ff5;line-height:1.101074;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_e87f910aece95430810ec9e9.woff')format("woff");}.ff6{font-family:ff6;line-height:0.829590;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_355472b6351130fd4f310081.woff')format("woff");}.ff7{font-family:ff7;line-height:1.004395;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_dbac529725da4c1aa647d28b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.193359;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_db10dc8b3a96accd0c3e3175.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_23b829f10e4f4c53d57c7b7c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_355472b6351130fd4f310081.woff')format("woff");}.ffb{font-family:ffb;line-height:1.004395;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e2474825ac76e48b386ea32b.woff')format("woff");}.ffc{font-family:ffc;line-height:1.004395;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d03ddb1cec38fd738dc8b1b0.woff')format("woff");}.ffd{font-family:ffd;line-height:1.004395;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9d3612a412c407b5edb6df20.woff')format("woff");}.ffe{font-family:ffe;line-height:1.193359;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_51f2f9c784b8442770eb34f1.woff')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_332f4ebf39e32c047a9e55f0.woff')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-8.232000px;}
.v4{vertical-align:-6.468000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.977400px;}
.v2{vertical-align:23.976000px;}
.ls3{letter-spacing:-14.472000px;}
.ls0{letter-spacing:-12.816000px;}
.ls4{letter-spacing:-11.448000px;}
.ls1{letter-spacing:-1.620000px;}
.ls7{letter-spacing:-1.553112px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.378000px;}
.ls6{letter-spacing:1.188000px;}
.lsa{letter-spacing:3.240000px;}
.ls9{letter-spacing:5.544000px;}
.ls10{letter-spacing:5.608800px;}
.ls11{letter-spacing:8.431200px;}
.lsf{letter-spacing:9.043200px;}
.lse{letter-spacing:9.828000px;}
.lsc{letter-spacing:13.320000px;}
.lsb{letter-spacing:13.334400px;}
.ls5{letter-spacing:55.960200px;}
.ls8{letter-spacing:55.960800px;}
.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;}
}
.ws2{word-spacing:-21.000000px;}
.wsf{word-spacing:-18.000000px;}
.wsd{word-spacing:-16.500000px;}
.ws7{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.494000px;}
.wsb{word-spacing:-9.619500px;}
.wsa{word-spacing:-8.940888px;}
.ws6{word-spacing:-6.552000px;}
.ws0{word-spacing:-5.184000px;}
.ws11{word-spacing:-5.112000px;}
.ws10{word-spacing:-0.720000px;}
.ws1{word-spacing:0.000000px;}
.wsc{word-spacing:1.782000px;}
.ws5{word-spacing:3.294000px;}
.wse{word-spacing:5.670000px;}
.ws9{word-spacing:6.426000px;}
.ws8{word-spacing:9.396000px;}
.ws4{word-spacing:14.472000px;}
._16{margin-left:-10.315800px;}
._22{margin-left:-9.063000px;}
._14{margin-left:-7.603200px;}
._2{margin-left:-5.868000px;}
._3{margin-left:-4.723200px;}
._15{margin-left:-3.443400px;}
._1d{margin-left:-2.332800px;}
._1{margin-left:-1.141800px;}
._a{width:1.533000px;}
._0{width:2.671200px;}
._11{width:4.653000px;}
._c{width:6.131400px;}
._f{width:7.260000px;}
._10{width:8.533800px;}
._b{width:9.847200px;}
._9{width:11.761200px;}
._1e{width:13.126200px;}
._8{width:14.183400px;}
._1c{width:15.404400px;}
._20{width:16.927200px;}
._7{width:18.513000px;}
._1a{width:20.334600px;}
._17{width:21.443400px;}
._6{width:23.245200px;}
._1b{width:24.367200px;}
._21{width:29.436000px;}
._13{width:34.254000px;}
._4{width:35.897400px;}
._e{width:37.811400px;}
._19{width:43.527000px;}
._12{width:44.873400px;}
._18{width:49.684800px;}
._5{width:57.591600px;}
._1f{width:85.960800px;}
._d{width:158.492400px;}
._23{width:177.480000px;}
.fc9{color:rgb(0,0,255);}
.fc6{color:rgb(192,0,0);}
.fc4{color:rgb(100,99,99);}
.fc7{color:rgb(255,51,204);}
.fc5{color:rgb(255,0,0);}
.fc3{color:rgb(96,124,180);}
.fc2{color:rgb(74,74,73);}
.fc1{color:rgb(1,2,2);}
.fc8{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.478000px;}
.fs6{font-size:41.976000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs8{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y73{bottom:46.489950px;}
.y4c{bottom:56.625900px;}
.y1{bottom:59.803050px;}
.y4a{bottom:60.865950px;}
.y72{bottom:62.689950px;}
.y4b{bottom:72.825900px;}
.y3{bottom:106.299150px;}
.y93{bottom:106.299450px;}
.yba{bottom:106.303650px;}
.yfe{bottom:106.303800px;}
.y11c{bottom:106.308450px;}
.y173{bottom:106.312800px;}
.y71{bottom:106.312950px;}
.ydc{bottom:106.317300px;}
.y1b3{bottom:111.888600px;}
.y2b{bottom:117.562050px;}
.y189{bottom:119.379150px;}
.yb9{bottom:124.299150px;}
.yfd{bottom:124.299300px;}
.y11b{bottom:124.303950px;}
.y172{bottom:124.308300px;}
.y70{bottom:124.308450px;}
.ydb{bottom:124.312800px;}
.y92{bottom:132.803550px;}
.y1b2{bottom:138.888600px;}
.y11a{bottom:142.299450px;}
.y171{bottom:142.303800px;}
.y6f{bottom:142.303950px;}
.yda{bottom:142.308300px;}
.y2a{bottom:145.859550px;}
.y188{bottom:146.379150px;}
.yb8{bottom:150.807600px;}
.y13a{bottom:150.807900px;}
.y157{bottom:150.812400px;}
.yfc{bottom:150.821400px;}
.y91{bottom:159.333600px;}
.y170{bottom:160.299300px;}
.y6e{bottom:160.299450px;}
.yd9{bottom:160.303800px;}
.yb7{bottom:168.803100px;}
.y139{bottom:168.803400px;}
.y156{bottom:168.807900px;}
.y119{bottom:168.808050px;}
.yfb{bottom:168.816900px;}
.y1b1{bottom:170.136600px;}
.y187{bottom:173.379150px;}
.y49{bottom:176.978550px;}
.yd8{bottom:178.299300px;}
.y90{bottom:185.834100px;}
.y155{bottom:186.803400px;}
.y6d{bottom:186.803550px;}
.yfa{bottom:186.812400px;}
.y29{bottom:191.168550px;}
.yb6{bottom:195.311550px;}
.y1b0{bottom:197.136600px;}
.y8f{bottom:203.829600px;}
.y16f{bottom:204.043800px;}
.y194{bottom:204.631050px;}
.yf9{bottom:204.807900px;}
.yd7{bottom:204.825900px;}
.y48{bottom:205.276050px;}
.y28{bottom:210.968550px;}
.yb5{bottom:213.307050px;}
.y6c{bottom:213.312000px;}
.y118{bottom:213.316500px;}
.y8e{bottom:221.825100px;}
.yf8{bottom:222.803400px;}
.yd6{bottom:222.821400px;}
.y186{bottom:223.689750px;}
.y1af{bottom:228.384600px;}
.y27{bottom:230.768550px;}
.y16e{bottom:231.043800px;}
.y6b{bottom:231.307500px;}
.y117{bottom:231.312000px;}
.y138{bottom:232.795050px;}
.y8d{bottom:239.820600px;}
.yb4{bottom:239.824500px;}
.yd5{bottom:240.816900px;}
.y116{bottom:249.307500px;}
.y26{bottom:250.568550px;}
.y47{bottom:250.585050px;}
.y1ae{bottom:255.384600px;}
.y154{bottom:257.811600px;}
.y8c{bottom:257.816100px;}
.yb3{bottom:257.820000px;}
.y16d{bottom:258.043800px;}
.yd4{bottom:258.812400px;}
.y137{bottom:259.795050px;}
.y25{bottom:270.368550px;}
.y46{bottom:270.385050px;}
.y8b{bottom:275.811600px;}
.yb2{bottom:275.815500px;}
.yd3{bottom:276.807900px;}
.y115{bottom:280.856700px;}
.y1ad{bottom:282.384600px;}
.y153{bottom:284.324700px;}
.y136{bottom:286.795050px;}
.y24{bottom:290.168550px;}
.y45{bottom:290.185050px;}
.y193{bottom:290.880600px;}
.y16c{bottom:293.539800px;}
.yb1{bottom:293.811000px;}
.yd2{bottom:294.803400px;}
.yf7{bottom:302.244750px;}
.y152{bottom:302.320200px;}
.y6a{bottom:307.155000px;}
.y114{bottom:307.856700px;}
.y185{bottom:307.872600px;}
.y23{bottom:309.968550px;}
.y44{bottom:309.985050px;}
.y1ac{bottom:313.632600px;}
.y135{bottom:313.795050px;}
.y192{bottom:317.880600px;}
.y151{bottom:320.315700px;}
.yb0{bottom:320.323950px;}
.y16b{bottom:320.539800px;}
.y22{bottom:329.768550px;}
.y43{bottom:329.785050px;}
.y69{bottom:334.155000px;}
.y113{bottom:334.856700px;}
.y184{bottom:334.872600px;}
.yaf{bottom:338.319450px;}
.y1ab{bottom:340.632600px;}
.y191{bottom:344.880600px;}
.y16a{bottom:347.539800px;}
.y134{bottom:349.291050px;}
.y21{bottom:349.568550px;}
.y42{bottom:349.585050px;}
.yae{bottom:356.314950px;}
.y68{bottom:361.155000px;}
.y112{bottom:361.856700px;}
.y183{bottom:361.872600px;}
.y20{bottom:369.368550px;}
.y41{bottom:369.385050px;}
.y150{bottom:369.651000px;}
.y190{bottom:371.880600px;}
.y169{bottom:374.539800px;}
.y133{bottom:376.291050px;}
.yf6{bottom:381.459000px;}
.yad{bottom:382.827900px;}
.y67{bottom:388.155000px;}
.y111{bottom:388.856700px;}
.y182{bottom:388.872600px;}
.y1f{bottom:389.168550px;}
.y40{bottom:389.185050px;}
.y14f{bottom:396.651000px;}
.y1aa{bottom:398.880600px;}
.yac{bottom:400.823400px;}
.y168{bottom:401.539800px;}
.y132{bottom:403.291050px;}
.yd1{bottom:405.308100px;}
.y18f{bottom:407.376600px;}
.yf5{bottom:408.459000px;}
.y1e{bottom:408.968550px;}
.y3f{bottom:408.985050px;}
.y8a{bottom:412.133100px;}
.y66{bottom:415.155000px;}
.y110{bottom:415.856700px;}
.yab{bottom:418.818900px;}
.y14e{bottom:423.651000px;}
.y181{bottom:424.368600px;}
.y167{bottom:428.539800px;}
.y1d{bottom:428.768550px;}
.y3e{bottom:428.785050px;}
.y1a9{bottom:430.128600px;}
.y131{bottom:430.291050px;}
.yd0{bottom:432.308100px;}
.y18e{bottom:434.376600px;}
.yf4{bottom:435.459000px;}
.y89{bottom:439.133100px;}
.y65{bottom:442.155000px;}
.y1c{bottom:448.568550px;}
.y3d{bottom:448.585050px;}
.y14d{bottom:450.658950px;}
.y10f{bottom:451.352700px;}
.y180{bottom:451.368600px;}
.y166{bottom:455.539800px;}
.y1a8{bottom:457.128600px;}
.y130{bottom:457.291050px;}
.ycf{bottom:459.308100px;}
.yaa{bottom:461.352750px;}
.y18d{bottom:461.376600px;}
.yf3{bottom:462.459000px;}
.y88{bottom:466.133100px;}
.y1b{bottom:468.368550px;}
.y3c{bottom:468.385050px;}
.y64{bottom:469.155000px;}
.y14c{bottom:477.658950px;}
.y10e{bottom:478.352700px;}
.y17f{bottom:478.368600px;}
.y165{bottom:482.539800px;}
.y1a7{bottom:484.128600px;}
.y12f{bottom:484.291050px;}
.yce{bottom:486.308100px;}
.y1a{bottom:488.168550px;}
.y3b{bottom:488.185050px;}
.ya9{bottom:488.352750px;}
.y18c{bottom:488.376600px;}
.yf2{bottom:489.459000px;}
.y87{bottom:493.133100px;}
.y63{bottom:496.155000px;}
.y14b{bottom:504.658950px;}
.y10d{bottom:505.360650px;}
.y17e{bottom:505.368600px;}
.y19{bottom:507.968550px;}
.y3a{bottom:507.985050px;}
.y164{bottom:509.539800px;}
.y12e{bottom:511.291050px;}
.ycd{bottom:513.308100px;}
.y1a6{bottom:515.376600px;}
.yf1{bottom:516.459000px;}
.y86{bottom:520.133100px;}
.ya8{bottom:523.848750px;}
.y18b{bottom:523.872600px;}
.y18{bottom:527.768550px;}
.y39{bottom:527.785050px;}
.y62{bottom:531.651000px;}
.y14a{bottom:531.658950px;}
.y10c{bottom:532.360650px;}
.y17d{bottom:532.368600px;}
.y163{bottom:536.539800px;}
.y12d{bottom:538.291050px;}
.y1a5{bottom:542.376600px;}
.yf0{bottom:543.459000px;}
.y85{bottom:547.133100px;}
.y17{bottom:547.568550px;}
.y38{bottom:547.585050px;}
.ya7{bottom:550.848750px;}
.y18a{bottom:550.872600px;}
.y61{bottom:558.651000px;}
.y149{bottom:558.658950px;}
.y10b{bottom:559.360650px;}
.y17c{bottom:559.368600px;}
.y16{bottom:567.368550px;}
.y37{bottom:567.385050px;}
.y1a4{bottom:569.376600px;}
.y12c{bottom:573.787050px;}
.y84{bottom:574.133100px;}
.ya6{bottom:577.848750px;}
.yef{bottom:578.955000px;}
.y60{bottom:585.651000px;}
.y10a{bottom:586.360650px;}
.y17b{bottom:586.368600px;}
.y15{bottom:587.168550px;}
.y36{bottom:587.185050px;}
.y148{bottom:594.154950px;}
.ycc{bottom:599.794950px;}
.y1a3{bottom:600.624600px;}
.y12b{bottom:600.787050px;}
.y83{bottom:601.149000px;}
.ya5{bottom:604.856850px;}
.yee{bottom:605.955000px;}
.y14{bottom:606.968550px;}
.y35{bottom:606.985050px;}
.y5f{bottom:612.651000px;}
.y109{bottom:613.360650px;}
.y17a{bottom:613.368600px;}
.ycb{bottom:619.594950px;}
.y147{bottom:621.154950px;}
.y13{bottom:626.768550px;}
.y34{bottom:626.785050px;}
.y1a2{bottom:627.624600px;}
.y12a{bottom:627.787050px;}
.y162{bottom:628.800900px;}
.ya4{bottom:631.856850px;}
.yed{bottom:632.955000px;}
.y82{bottom:636.645000px;}
.yca{bottom:639.394950px;}
.y5e{bottom:639.651000px;}
.y179{bottom:640.368600px;}
.y12{bottom:646.568550px;}
.y33{bottom:646.585050px;}
.y146{bottom:648.154950px;}
.y161{bottom:648.600900px;}
.y108{bottom:648.856650px;}
.y1a1{bottom:654.624600px;}
.y129{bottom:654.787050px;}
.ya3{bottom:658.856850px;}
.yc9{bottom:659.194950px;}
.yec{bottom:659.955000px;}
.y81{bottom:663.645000px;}
.y11{bottom:666.368550px;}
.y32{bottom:666.385050px;}
.y5d{bottom:666.658950px;}
.y178{bottom:667.368600px;}
.y160{bottom:668.400900px;}
.y145{bottom:675.154950px;}
.y107{bottom:675.856650px;}
.yc8{bottom:678.994950px;}
.y1a0{bottom:681.624600px;}
.y128{bottom:681.787050px;}
.ya2{bottom:685.856850px;}
.y10{bottom:686.168550px;}
.y31{bottom:686.185050px;}
.yeb{bottom:686.955000px;}
.y15f{bottom:688.200900px;}
.y80{bottom:690.645000px;}
.y5c{bottom:693.658950px;}
.y177{bottom:694.368600px;}
.yc7{bottom:698.794950px;}
.y144{bottom:702.154950px;}
.y106{bottom:702.856650px;}
.yf{bottom:705.968550px;}
.y30{bottom:705.985050px;}
.y15e{bottom:708.000900px;}
.y127{bottom:708.787050px;}
.y1bd{bottom:712.856700px;}
.y19f{bottom:712.872600px;}
.yea{bottom:713.955000px;}
.y7f{bottom:717.645000px;}
.y5b{bottom:720.658950px;}
.ya1{bottom:721.352850px;}
.y176{bottom:721.368600px;}
.ye{bottom:725.768550px;}
.y2f{bottom:725.785050px;}
.y143{bottom:729.154950px;}
.y105{bottom:729.856650px;}
.y126{bottom:735.787050px;}
.y1bc{bottom:739.856700px;}
.y19e{bottom:739.872600px;}
.ye9{bottom:740.955000px;}
.y7e{bottom:744.645000px;}
.yd{bottom:745.568550px;}
.y2e{bottom:745.585050px;}
.y5a{bottom:747.658950px;}
.ya0{bottom:748.352850px;}
.y175{bottom:748.368600px;}
.y142{bottom:756.154950px;}
.y104{bottom:756.864600px;}
.y125{bottom:762.787050px;}
.yc{bottom:765.368550px;}
.y2d{bottom:765.385050px;}
.y1bb{bottom:766.856700px;}
.y15d{bottom:770.321400px;}
.y19d{bottom:771.120600px;}
.y7d{bottom:771.645000px;}
.y59{bottom:774.658950px;}
.y9f{bottom:775.360650px;}
.y174{bottom:775.368600px;}
.ye8{bottom:776.458950px;}
.y141{bottom:783.154950px;}
.yc6{bottom:783.864600px;}
.y124{bottom:789.795000px;}
.y1ba{bottom:793.856700px;}
.yb{bottom:797.923050px;}
.y2c{bottom:797.939550px;}
.y19c{bottom:798.120600px;}
.y58{bottom:801.658950px;}
.y9e{bottom:802.360650px;}
.ye7{bottom:803.458950px;}
.y7c{bottom:807.141000px;}
.y140{bottom:810.154950px;}
.yc5{bottom:810.864600px;}
.y15c{bottom:815.633100px;}
.y123{bottom:816.795000px;}
.y1b9{bottom:825.104700px;}
.y57{bottom:828.658950px;}
.y9d{bottom:829.360650px;}
.y19b{bottom:829.368600px;}
.ye6{bottom:830.458950px;}
.y7b{bottom:834.141000px;}
.y13f{bottom:837.154950px;}
.yc4{bottom:837.864600px;}
.y1b8{bottom:852.104700px;}
.y122{bottom:852.291000px;}
.y5{bottom:852.539100px;}
.y56{bottom:855.658950px;}
.y19a{bottom:856.368600px;}
.ye5{bottom:857.458950px;}
.y7a{bottom:861.141000px;}
.y13e{bottom:864.154950px;}
.y9c{bottom:864.856650px;}
.yc3{bottom:864.864600px;}
.y15b{bottom:868.144950px;}
.y103{bottom:873.360600px;}
.y121{bottom:879.291000px;}
.y4{bottom:880.836600px;}
.y55{bottom:882.658950px;}
.y1b7{bottom:883.352700px;}
.ye4{bottom:884.458950px;}
.y199{bottom:887.616600px;}
.y15a{bottom:887.944950px;}
.y79{bottom:888.141000px;}
.y13d{bottom:891.154950px;}
.y9b{bottom:891.856650px;}
.yc2{bottom:891.864600px;}
.y102{bottom:900.360600px;}
.y120{bottom:906.291000px;}
.y159{bottom:907.744950px;}
.y54{bottom:909.658950px;}
.y1b6{bottom:910.352700px;}
.y198{bottom:914.616600px;}
.y78{bottom:915.141000px;}
.y13c{bottom:918.154950px;}
.y9a{bottom:918.856650px;}
.yc1{bottom:918.864600px;}
.ye3{bottom:919.954950px;}
.ya{bottom:922.748850px;}
.y101{bottom:927.360600px;}
.y158{bottom:927.544950px;}
.y11f{bottom:933.291000px;}
.y1b5{bottom:941.616600px;}
.y77{bottom:942.141000px;}
.y9{bottom:944.348850px;}
.y53{bottom:945.154950px;}
.y99{bottom:945.856650px;}
.yc0{bottom:945.864600px;}
.ye2{bottom:946.954950px;}
.y100{bottom:954.360600px;}
.y11e{bottom:960.291000px;}
.y1b4{bottom:968.616600px;}
.y52{bottom:972.154950px;}
.y98{bottom:972.856650px;}
.ybf{bottom:972.864600px;}
.ye1{bottom:973.954950px;}
.y8{bottom:978.704700px;}
.yff{bottom:981.360600px;}
.y51{bottom:999.154950px;}
.y97{bottom:999.864600px;}
.ye0{bottom:1000.954950px;}
.y7{bottom:1005.704700px;}
.ybe{bottom:1008.360600px;}
.y11d{bottom:1010.162100px;}
.y50{bottom:1026.154950px;}
.y96{bottom:1026.864600px;}
.ydf{bottom:1027.954950px;}
.y197{bottom:1031.112600px;}
.y76{bottom:1032.201600px;}
.y6{bottom:1032.704700px;}
.ybd{bottom:1035.360600px;}
.y4f{bottom:1053.154950px;}
.y95{bottom:1053.864600px;}
.y196{bottom:1058.112600px;}
.ybc{bottom:1062.360600px;}
.yde{bottom:1074.206850px;}
.y94{bottom:1080.864600px;}
.y195{bottom:1085.112600px;}
.ybb{bottom:1089.360600px;}
.y13b{bottom:1099.407000px;}
.ydd{bottom:1115.957550px;}
.y75{bottom:1116.360600px;}
.y4e{bottom:1143.215550px;}
.y74{bottom:1143.360600px;}
.y2{bottom:1187.898450px;}
.y4d{bottom:1204.375350px;}
.hc{height:37.520508px;}
.h3{height:39.049805px;}
.hd{height:43.388672px;}
.he{height:43.989258px;}
.h8{height:46.664062px;}
.hf{height:49.939453px;}
.h2{height:50.027344px;}
.h9{height:54.755859px;}
.h4{height:55.488281px;}
.ha{height:59.390625px;}
.h5{height:61.037109px;}
.h7{height:64.300781px;}
.hb{height:66.585938px;}
.h10{height:66.972656px;}
.h6{height:83.715820px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:73.338150px;}
.x7{left:86.527500px;}
.x2{left:106.299150px;}
.xb{left:127.559100px;}
.x10{left:131.805150px;}
.xf{left:140.314950px;}
.xe{left:148.818900px;}
.x6{left:455.455650px;}
.x8{left:492.632700px;}
.x4{left:579.550500px;}
.x5{left:620.932500px;}
.xd{left:671.858250px;}
.x9{left:706.047450px;}
.x1{left:793.488150px;}
.x3{left:832.882950px;}
.xc{left:838.695600px;}
@media print{
.v1{vertical-align:-7.317333pt;}
.v4{vertical-align:-5.749333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.535467pt;}
.v2{vertical-align:21.312000pt;}
.ls3{letter-spacing:-12.864000pt;}
.ls0{letter-spacing:-11.392000pt;}
.ls4{letter-spacing:-10.176000pt;}
.ls1{letter-spacing:-1.440000pt;}
.ls7{letter-spacing:-1.380544pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.336000pt;}
.ls6{letter-spacing:1.056000pt;}
.lsa{letter-spacing:2.880000pt;}
.ls9{letter-spacing:4.928000pt;}
.ls10{letter-spacing:4.985600pt;}
.ls11{letter-spacing:7.494400pt;}
.lsf{letter-spacing:8.038400pt;}
.lse{letter-spacing:8.736000pt;}
.lsc{letter-spacing:11.840000pt;}
.lsb{letter-spacing:11.852800pt;}
.ls5{letter-spacing:49.742400pt;}
.ls8{letter-spacing:49.742933pt;}
.ws2{word-spacing:-18.666667pt;}
.wsf{word-spacing:-16.000000pt;}
.wsd{word-spacing:-14.666667pt;}
.ws7{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.328000pt;}
.wsb{word-spacing:-8.550667pt;}
.wsa{word-spacing:-7.947456pt;}
.ws6{word-spacing:-5.824000pt;}
.ws0{word-spacing:-4.608000pt;}
.ws11{word-spacing:-4.544000pt;}
.ws10{word-spacing:-0.640000pt;}
.ws1{word-spacing:0.000000pt;}
.wsc{word-spacing:1.584000pt;}
.ws5{word-spacing:2.928000pt;}
.wse{word-spacing:5.040000pt;}
.ws9{word-spacing:5.712000pt;}
.ws8{word-spacing:8.352000pt;}
.ws4{word-spacing:12.864000pt;}
._16{margin-left:-9.169600pt;}
._22{margin-left:-8.056000pt;}
._14{margin-left:-6.758400pt;}
._2{margin-left:-5.216000pt;}
._3{margin-left:-4.198400pt;}
._15{margin-left:-3.060800pt;}
._1d{margin-left:-2.073600pt;}
._1{margin-left:-1.014933pt;}
._a{width:1.362667pt;}
._0{width:2.374400pt;}
._11{width:4.136000pt;}
._c{width:5.450133pt;}
._f{width:6.453333pt;}
._10{width:7.585600pt;}
._b{width:8.753067pt;}
._9{width:10.454400pt;}
._1e{width:11.667733pt;}
._8{width:12.607467pt;}
._1c{width:13.692800pt;}
._20{width:15.046400pt;}
._7{width:16.456000pt;}
._1a{width:18.075200pt;}
._17{width:19.060800pt;}
._6{width:20.662400pt;}
._1b{width:21.659733pt;}
._21{width:26.165333pt;}
._13{width:30.448000pt;}
._4{width:31.908800pt;}
._e{width:33.610133pt;}
._19{width:38.690667pt;}
._12{width:39.887467pt;}
._18{width:44.164267pt;}
._5{width:51.192533pt;}
._1f{width:76.409600pt;}
._d{width:140.882133pt;}
._23{width:157.760000pt;}
.fs7{font-size:34.202667pt;}
.fs6{font-size:37.312000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs8{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:41.324400pt;}
.y4c{bottom:50.334133pt;}
.y1{bottom:53.158267pt;}
.y4a{bottom:54.103067pt;}
.y72{bottom:55.724400pt;}
.y4b{bottom:64.734133pt;}
.y3{bottom:94.488133pt;}
.y93{bottom:94.488400pt;}
.yba{bottom:94.492133pt;}
.yfe{bottom:94.492267pt;}
.y11c{bottom:94.496400pt;}
.y173{bottom:94.500267pt;}
.y71{bottom:94.500400pt;}
.ydc{bottom:94.504267pt;}
.y1b3{bottom:99.456533pt;}
.y2b{bottom:104.499600pt;}
.y189{bottom:106.114800pt;}
.yb9{bottom:110.488133pt;}
.yfd{bottom:110.488267pt;}
.y11b{bottom:110.492400pt;}
.y172{bottom:110.496267pt;}
.y70{bottom:110.496400pt;}
.ydb{bottom:110.500267pt;}
.y92{bottom:118.047600pt;}
.y1b2{bottom:123.456533pt;}
.y11a{bottom:126.488400pt;}
.y171{bottom:126.492267pt;}
.y6f{bottom:126.492400pt;}
.yda{bottom:126.496267pt;}
.y2a{bottom:129.652933pt;}
.y188{bottom:130.114800pt;}
.yb8{bottom:134.051200pt;}
.y13a{bottom:134.051467pt;}
.y157{bottom:134.055467pt;}
.yfc{bottom:134.063467pt;}
.y91{bottom:141.629867pt;}
.y170{bottom:142.488267pt;}
.y6e{bottom:142.488400pt;}
.yd9{bottom:142.492267pt;}
.yb7{bottom:150.047200pt;}
.y139{bottom:150.047467pt;}
.y156{bottom:150.051467pt;}
.y119{bottom:150.051600pt;}
.yfb{bottom:150.059467pt;}
.y1b1{bottom:151.232533pt;}
.y187{bottom:154.114800pt;}
.y49{bottom:157.314267pt;}
.yd8{bottom:158.488267pt;}
.y90{bottom:165.185867pt;}
.y155{bottom:166.047467pt;}
.y6d{bottom:166.047600pt;}
.yfa{bottom:166.055467pt;}
.y29{bottom:169.927600pt;}
.yb6{bottom:173.610267pt;}
.y1b0{bottom:175.232533pt;}
.y8f{bottom:181.181867pt;}
.y16f{bottom:181.372267pt;}
.y194{bottom:181.894267pt;}
.yf9{bottom:182.051467pt;}
.yd7{bottom:182.067467pt;}
.y48{bottom:182.467600pt;}
.y28{bottom:187.527600pt;}
.yb5{bottom:189.606267pt;}
.y6c{bottom:189.610667pt;}
.y118{bottom:189.614667pt;}
.y8e{bottom:197.177867pt;}
.yf8{bottom:198.047467pt;}
.yd6{bottom:198.063467pt;}
.y186{bottom:198.835333pt;}
.y1af{bottom:203.008533pt;}
.y27{bottom:205.127600pt;}
.y16e{bottom:205.372267pt;}
.y6b{bottom:205.606667pt;}
.y117{bottom:205.610667pt;}
.y138{bottom:206.928933pt;}
.y8d{bottom:213.173867pt;}
.yb4{bottom:213.177333pt;}
.yd5{bottom:214.059467pt;}
.y116{bottom:221.606667pt;}
.y26{bottom:222.727600pt;}
.y47{bottom:222.742267pt;}
.y1ae{bottom:227.008533pt;}
.y154{bottom:229.165867pt;}
.y8c{bottom:229.169867pt;}
.yb3{bottom:229.173333pt;}
.y16d{bottom:229.372267pt;}
.yd4{bottom:230.055467pt;}
.y137{bottom:230.928933pt;}
.y25{bottom:240.327600pt;}
.y46{bottom:240.342267pt;}
.y8b{bottom:245.165867pt;}
.yb2{bottom:245.169333pt;}
.yd3{bottom:246.051467pt;}
.y115{bottom:249.650400pt;}
.y1ad{bottom:251.008533pt;}
.y153{bottom:252.733067pt;}
.y136{bottom:254.928933pt;}
.y24{bottom:257.927600pt;}
.y45{bottom:257.942267pt;}
.y193{bottom:258.560533pt;}
.y16c{bottom:260.924267pt;}
.yb1{bottom:261.165333pt;}
.yd2{bottom:262.047467pt;}
.yf7{bottom:268.662000pt;}
.y152{bottom:268.729067pt;}
.y6a{bottom:273.026667pt;}
.y114{bottom:273.650400pt;}
.y185{bottom:273.664533pt;}
.y23{bottom:275.527600pt;}
.y44{bottom:275.542267pt;}
.y1ac{bottom:278.784533pt;}
.y135{bottom:278.928933pt;}
.y192{bottom:282.560533pt;}
.y151{bottom:284.725067pt;}
.yb0{bottom:284.732400pt;}
.y16b{bottom:284.924267pt;}
.y22{bottom:293.127600pt;}
.y43{bottom:293.142267pt;}
.y69{bottom:297.026667pt;}
.y113{bottom:297.650400pt;}
.y184{bottom:297.664533pt;}
.yaf{bottom:300.728400pt;}
.y1ab{bottom:302.784533pt;}
.y191{bottom:306.560533pt;}
.y16a{bottom:308.924267pt;}
.y134{bottom:310.480933pt;}
.y21{bottom:310.727600pt;}
.y42{bottom:310.742267pt;}
.yae{bottom:316.724400pt;}
.y68{bottom:321.026667pt;}
.y112{bottom:321.650400pt;}
.y183{bottom:321.664533pt;}
.y20{bottom:328.327600pt;}
.y41{bottom:328.342267pt;}
.y150{bottom:328.578667pt;}
.y190{bottom:330.560533pt;}
.y169{bottom:332.924267pt;}
.y133{bottom:334.480933pt;}
.yf6{bottom:339.074667pt;}
.yad{bottom:340.291467pt;}
.y67{bottom:345.026667pt;}
.y111{bottom:345.650400pt;}
.y182{bottom:345.664533pt;}
.y1f{bottom:345.927600pt;}
.y40{bottom:345.942267pt;}
.y14f{bottom:352.578667pt;}
.y1aa{bottom:354.560533pt;}
.yac{bottom:356.287467pt;}
.y168{bottom:356.924267pt;}
.y132{bottom:358.480933pt;}
.yd1{bottom:360.273867pt;}
.y18f{bottom:362.112533pt;}
.yf5{bottom:363.074667pt;}
.y1e{bottom:363.527600pt;}
.y3f{bottom:363.542267pt;}
.y8a{bottom:366.340533pt;}
.y66{bottom:369.026667pt;}
.y110{bottom:369.650400pt;}
.yab{bottom:372.283467pt;}
.y14e{bottom:376.578667pt;}
.y181{bottom:377.216533pt;}
.y167{bottom:380.924267pt;}
.y1d{bottom:381.127600pt;}
.y3e{bottom:381.142267pt;}
.y1a9{bottom:382.336533pt;}
.y131{bottom:382.480933pt;}
.yd0{bottom:384.273867pt;}
.y18e{bottom:386.112533pt;}
.yf4{bottom:387.074667pt;}
.y89{bottom:390.340533pt;}
.y65{bottom:393.026667pt;}
.y1c{bottom:398.727600pt;}
.y3d{bottom:398.742267pt;}
.y14d{bottom:400.585733pt;}
.y10f{bottom:401.202400pt;}
.y180{bottom:401.216533pt;}
.y166{bottom:404.924267pt;}
.y1a8{bottom:406.336533pt;}
.y130{bottom:406.480933pt;}
.ycf{bottom:408.273867pt;}
.yaa{bottom:410.091333pt;}
.y18d{bottom:410.112533pt;}
.yf3{bottom:411.074667pt;}
.y88{bottom:414.340533pt;}
.y1b{bottom:416.327600pt;}
.y3c{bottom:416.342267pt;}
.y64{bottom:417.026667pt;}
.y14c{bottom:424.585733pt;}
.y10e{bottom:425.202400pt;}
.y17f{bottom:425.216533pt;}
.y165{bottom:428.924267pt;}
.y1a7{bottom:430.336533pt;}
.y12f{bottom:430.480933pt;}
.yce{bottom:432.273867pt;}
.y1a{bottom:433.927600pt;}
.y3b{bottom:433.942267pt;}
.ya9{bottom:434.091333pt;}
.y18c{bottom:434.112533pt;}
.yf2{bottom:435.074667pt;}
.y87{bottom:438.340533pt;}
.y63{bottom:441.026667pt;}
.y14b{bottom:448.585733pt;}
.y10d{bottom:449.209467pt;}
.y17e{bottom:449.216533pt;}
.y19{bottom:451.527600pt;}
.y3a{bottom:451.542267pt;}
.y164{bottom:452.924267pt;}
.y12e{bottom:454.480933pt;}
.ycd{bottom:456.273867pt;}
.y1a6{bottom:458.112533pt;}
.yf1{bottom:459.074667pt;}
.y86{bottom:462.340533pt;}
.ya8{bottom:465.643333pt;}
.y18b{bottom:465.664533pt;}
.y18{bottom:469.127600pt;}
.y39{bottom:469.142267pt;}
.y62{bottom:472.578667pt;}
.y14a{bottom:472.585733pt;}
.y10c{bottom:473.209467pt;}
.y17d{bottom:473.216533pt;}
.y163{bottom:476.924267pt;}
.y12d{bottom:478.480933pt;}
.y1a5{bottom:482.112533pt;}
.yf0{bottom:483.074667pt;}
.y85{bottom:486.340533pt;}
.y17{bottom:486.727600pt;}
.y38{bottom:486.742267pt;}
.ya7{bottom:489.643333pt;}
.y18a{bottom:489.664533pt;}
.y61{bottom:496.578667pt;}
.y149{bottom:496.585733pt;}
.y10b{bottom:497.209467pt;}
.y17c{bottom:497.216533pt;}
.y16{bottom:504.327600pt;}
.y37{bottom:504.342267pt;}
.y1a4{bottom:506.112533pt;}
.y12c{bottom:510.032933pt;}
.y84{bottom:510.340533pt;}
.ya6{bottom:513.643333pt;}
.yef{bottom:514.626667pt;}
.y60{bottom:520.578667pt;}
.y10a{bottom:521.209467pt;}
.y17b{bottom:521.216533pt;}
.y15{bottom:521.927600pt;}
.y36{bottom:521.942267pt;}
.y148{bottom:528.137733pt;}
.ycc{bottom:533.151067pt;}
.y1a3{bottom:533.888533pt;}
.y12b{bottom:534.032933pt;}
.y83{bottom:534.354667pt;}
.ya5{bottom:537.650533pt;}
.yee{bottom:538.626667pt;}
.y14{bottom:539.527600pt;}
.y35{bottom:539.542267pt;}
.y5f{bottom:544.578667pt;}
.y109{bottom:545.209467pt;}
.y17a{bottom:545.216533pt;}
.ycb{bottom:550.751067pt;}
.y147{bottom:552.137733pt;}
.y13{bottom:557.127600pt;}
.y34{bottom:557.142267pt;}
.y1a2{bottom:557.888533pt;}
.y12a{bottom:558.032933pt;}
.y162{bottom:558.934133pt;}
.ya4{bottom:561.650533pt;}
.yed{bottom:562.626667pt;}
.y82{bottom:565.906667pt;}
.yca{bottom:568.351067pt;}
.y5e{bottom:568.578667pt;}
.y179{bottom:569.216533pt;}
.y12{bottom:574.727600pt;}
.y33{bottom:574.742267pt;}
.y146{bottom:576.137733pt;}
.y161{bottom:576.534133pt;}
.y108{bottom:576.761467pt;}
.y1a1{bottom:581.888533pt;}
.y129{bottom:582.032933pt;}
.ya3{bottom:585.650533pt;}
.yc9{bottom:585.951067pt;}
.yec{bottom:586.626667pt;}
.y81{bottom:589.906667pt;}
.y11{bottom:592.327600pt;}
.y32{bottom:592.342267pt;}
.y5d{bottom:592.585733pt;}
.y178{bottom:593.216533pt;}
.y160{bottom:594.134133pt;}
.y145{bottom:600.137733pt;}
.y107{bottom:600.761467pt;}
.yc8{bottom:603.551067pt;}
.y1a0{bottom:605.888533pt;}
.y128{bottom:606.032933pt;}
.ya2{bottom:609.650533pt;}
.y10{bottom:609.927600pt;}
.y31{bottom:609.942267pt;}
.yeb{bottom:610.626667pt;}
.y15f{bottom:611.734133pt;}
.y80{bottom:613.906667pt;}
.y5c{bottom:616.585733pt;}
.y177{bottom:617.216533pt;}
.yc7{bottom:621.151067pt;}
.y144{bottom:624.137733pt;}
.y106{bottom:624.761467pt;}
.yf{bottom:627.527600pt;}
.y30{bottom:627.542267pt;}
.y15e{bottom:629.334133pt;}
.y127{bottom:630.032933pt;}
.y1bd{bottom:633.650400pt;}
.y19f{bottom:633.664533pt;}
.yea{bottom:634.626667pt;}
.y7f{bottom:637.906667pt;}
.y5b{bottom:640.585733pt;}
.ya1{bottom:641.202533pt;}
.y176{bottom:641.216533pt;}
.ye{bottom:645.127600pt;}
.y2f{bottom:645.142267pt;}
.y143{bottom:648.137733pt;}
.y105{bottom:648.761467pt;}
.y126{bottom:654.032933pt;}
.y1bc{bottom:657.650400pt;}
.y19e{bottom:657.664533pt;}
.ye9{bottom:658.626667pt;}
.y7e{bottom:661.906667pt;}
.yd{bottom:662.727600pt;}
.y2e{bottom:662.742267pt;}
.y5a{bottom:664.585733pt;}
.ya0{bottom:665.202533pt;}
.y175{bottom:665.216533pt;}
.y142{bottom:672.137733pt;}
.y104{bottom:672.768533pt;}
.y125{bottom:678.032933pt;}
.yc{bottom:680.327600pt;}
.y2d{bottom:680.342267pt;}
.y1bb{bottom:681.650400pt;}
.y15d{bottom:684.730133pt;}
.y19d{bottom:685.440533pt;}
.y7d{bottom:685.906667pt;}
.y59{bottom:688.585733pt;}
.y9f{bottom:689.209467pt;}
.y174{bottom:689.216533pt;}
.ye8{bottom:690.185733pt;}
.y141{bottom:696.137733pt;}
.yc6{bottom:696.768533pt;}
.y124{bottom:702.040000pt;}
.y1ba{bottom:705.650400pt;}
.yb{bottom:709.264933pt;}
.y2c{bottom:709.279600pt;}
.y19c{bottom:709.440533pt;}
.y58{bottom:712.585733pt;}
.y9e{bottom:713.209467pt;}
.ye7{bottom:714.185733pt;}
.y7c{bottom:717.458667pt;}
.y140{bottom:720.137733pt;}
.yc5{bottom:720.768533pt;}
.y15c{bottom:725.007200pt;}
.y123{bottom:726.040000pt;}
.y1b9{bottom:733.426400pt;}
.y57{bottom:736.585733pt;}
.y9d{bottom:737.209467pt;}
.y19b{bottom:737.216533pt;}
.ye6{bottom:738.185733pt;}
.y7b{bottom:741.458667pt;}
.y13f{bottom:744.137733pt;}
.yc4{bottom:744.768533pt;}
.y1b8{bottom:757.426400pt;}
.y122{bottom:757.592000pt;}
.y5{bottom:757.812533pt;}
.y56{bottom:760.585733pt;}
.y19a{bottom:761.216533pt;}
.ye5{bottom:762.185733pt;}
.y7a{bottom:765.458667pt;}
.y13e{bottom:768.137733pt;}
.y9c{bottom:768.761467pt;}
.yc3{bottom:768.768533pt;}
.y15b{bottom:771.684400pt;}
.y103{bottom:776.320533pt;}
.y121{bottom:781.592000pt;}
.y4{bottom:782.965867pt;}
.y55{bottom:784.585733pt;}
.y1b7{bottom:785.202400pt;}
.ye4{bottom:786.185733pt;}
.y199{bottom:788.992533pt;}
.y15a{bottom:789.284400pt;}
.y79{bottom:789.458667pt;}
.y13d{bottom:792.137733pt;}
.y9b{bottom:792.761467pt;}
.yc2{bottom:792.768533pt;}
.y102{bottom:800.320533pt;}
.y120{bottom:805.592000pt;}
.y159{bottom:806.884400pt;}
.y54{bottom:808.585733pt;}
.y1b6{bottom:809.202400pt;}
.y198{bottom:812.992533pt;}
.y78{bottom:813.458667pt;}
.y13c{bottom:816.137733pt;}
.y9a{bottom:816.761467pt;}
.yc1{bottom:816.768533pt;}
.ye3{bottom:817.737733pt;}
.ya{bottom:820.221200pt;}
.y101{bottom:824.320533pt;}
.y158{bottom:824.484400pt;}
.y11f{bottom:829.592000pt;}
.y1b5{bottom:836.992533pt;}
.y77{bottom:837.458667pt;}
.y9{bottom:839.421200pt;}
.y53{bottom:840.137733pt;}
.y99{bottom:840.761467pt;}
.yc0{bottom:840.768533pt;}
.ye2{bottom:841.737733pt;}
.y100{bottom:848.320533pt;}
.y11e{bottom:853.592000pt;}
.y1b4{bottom:860.992533pt;}
.y52{bottom:864.137733pt;}
.y98{bottom:864.761467pt;}
.ybf{bottom:864.768533pt;}
.ye1{bottom:865.737733pt;}
.y8{bottom:869.959733pt;}
.yff{bottom:872.320533pt;}
.y51{bottom:888.137733pt;}
.y97{bottom:888.768533pt;}
.ye0{bottom:889.737733pt;}
.y7{bottom:893.959733pt;}
.ybe{bottom:896.320533pt;}
.y11d{bottom:897.921867pt;}
.y50{bottom:912.137733pt;}
.y96{bottom:912.768533pt;}
.ydf{bottom:913.737733pt;}
.y197{bottom:916.544533pt;}
.y76{bottom:917.512533pt;}
.y6{bottom:917.959733pt;}
.ybd{bottom:920.320533pt;}
.y4f{bottom:936.137733pt;}
.y95{bottom:936.768533pt;}
.y196{bottom:940.544533pt;}
.ybc{bottom:944.320533pt;}
.yde{bottom:954.850533pt;}
.y94{bottom:960.768533pt;}
.y195{bottom:964.544533pt;}
.ybb{bottom:968.320533pt;}
.y13b{bottom:977.250667pt;}
.ydd{bottom:991.962267pt;}
.y75{bottom:992.320533pt;}
.y4e{bottom:1016.191600pt;}
.y74{bottom:1016.320533pt;}
.y2{bottom:1055.909733pt;}
.y4d{bottom:1070.555867pt;}
.hc{height:33.351562pt;}
.h3{height:34.710938pt;}
.hd{height:38.567708pt;}
.he{height:39.101562pt;}
.h8{height:41.479167pt;}
.hf{height:44.390625pt;}
.h2{height:44.468750pt;}
.h9{height:48.671875pt;}
.h4{height:49.322917pt;}
.ha{height:52.791667pt;}
.h5{height:54.255208pt;}
.h7{height:57.156250pt;}
.hb{height:59.187500pt;}
.h10{height:59.531250pt;}
.h6{height:74.414062pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:65.189467pt;}
.x7{left:76.913333pt;}
.x2{left:94.488133pt;}
.xb{left:113.385867pt;}
.x10{left:117.160133pt;}
.xf{left:124.724400pt;}
.xe{left:132.283467pt;}
.x6{left:404.849467pt;}
.x8{left:437.895733pt;}
.x4{left:515.156000pt;}
.x5{left:551.940000pt;}
.xd{left:597.207333pt;}
.x9{left:627.597733pt;}
.x1{left:705.322800pt;}
.x3{left:740.340400pt;}
.xc{left:745.507200pt;}
}

