
/* 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
  }
  #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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
    -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(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3goQDSYgDiGofgAAAslJREFUOMvtlM9LFGEYx7/vvOPM6ywuuyPFihWFBUsdNnA6KLIh+QPx4KWExULdHQ/9A9EfUodYmATDYg/iRewQzklFWxcEBcGgEplDkDtI6sw4PzrIbrOuedBb9MALD7zv+3m+z4/3Bf7bZS2bzQIAcrmcMDExcTeXy10DAFVVAQDksgFUVZ1ljD3yfd+0LOuFpmnvVVW9GHhkZAQcxwkNDQ2FSCQyRMgJxnVdy7KstKZpn7nwha6urqqfTqfPBAJAuVymlNLXoigOhfd5nmeiKL5TVTV+lmIKwAOA7u5u6Lped2BsbOwjY6yf4zgQQkAIAcedaPR9H67r3uYBQFEUFItFtLe332lpaVkUBOHK3t5eRtf1DwAwODiIubk5DA8PM8bYW1EU+wEgCIJqsCAIQAiB7/u253k2BQDDMJBKpa4mEon5eDx+UxAESJL0uK2t7XosFlvSdf0QAEmlUnlRFJ9Waho2Qghc1/U9z3uWz+eX+Wr+lL6SZfleEAQIggA8z6OpqSknimIvYyybSCReMsZ6TislhCAIAti2Dc/zejVNWwCAavN8339j27YbTg0AGGM3WltbP4WhlRWq6Q/btrs1TVsYHx+vNgqKoqBUKn2NRqPFxsbGJzzP05puUlpt0ukyOI6z7zjOwNTU1OLo6CgmJyf/gA3DgKIoWF1d/cIY24/FYgOU0pp0z/Ityzo8Pj5OTk9PbwHA+vp6zWghDC+VSiuRSOQgGo32UErJ38CO42wdHR09LBQK3zKZDDY2NupmFmF4R0cHVlZWlmRZ/iVJUn9FeWWcCCE4ODjYtG27Z2Zm5juAOmgdGAB2d3cBADs7O8uSJN2SZfl+WKlpmpumaT6Yn58vn/fs6XmbhmHMNjc3tzDGFI7jYJrm5vb29sDa2trPC/9aiqJUy5pOp4f6+vqeJ5PJBAB0dnZe/t8NBajx/z37Df5OGX8d13xzAAAAAElFTkSuQmCC);
  }
}
/* Fancy CSS END */



.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url("fonts/font_0000_62d748a62bf4.woff")format("woff");}.ff1{font-family:ff1;line-height:0.950000;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("fonts/font_0001_307f2df80bbc.woff")format("woff");}.ff2{font-family:ff2;line-height:0.962000;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("fonts/font_0002_27dbac12e646.woff")format("woff");}.ff3{font-family:ff3;line-height:1.049805;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("fonts/font_0003_c43fdf150231.woff")format("woff");}.ff4{font-family:ff4;line-height:0.893555;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("fonts/font_0004_eb894bd1529c.woff")format("woff");}.ff5{font-family:ff5;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:ff6;src:url("fonts/font_0005_9d1535495a75.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_1306654ab833.woff")format("woff");}.ff7{font-family:ff7;line-height:0.881836;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("fonts/font_0007_8b3cc808e886.woff")format("woff");}.ff8{font-family:ff8;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:ff9;src:url("fonts/font_0008_6b1389ed55fe.woff")format("woff");}.ff9{font-family:ff9;line-height:0.882324;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("fonts/font_0009_fb420495167a.woff")format("woff");}.ffa{font-family:ffa;line-height:0.746094;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.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-38.880000px;}
.v2{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:8.640000px;}
.v3{vertical-align:30.240000px;}
.v1{vertical-align:33.120000px;}
.ls3{letter-spacing:-0.014400px;}
.ls0{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.000540px;}
.ls9{letter-spacing:0.000600px;}
.ls27{letter-spacing:0.000840px;}
.ls48{letter-spacing:0.010980px;}
.ls26{letter-spacing:0.011400px;}
.ls2d{letter-spacing:0.012000px;}
.ls47{letter-spacing:0.013500px;}
.ls1{letter-spacing:0.014400px;}
.lsd{letter-spacing:0.036000px;}
.ls3c{letter-spacing:0.058464px;}
.ls10{letter-spacing:0.093312px;}
.ls3b{letter-spacing:0.100224px;}
.ls12{letter-spacing:0.108864px;}
.ls14{letter-spacing:0.116640px;}
.ls22{letter-spacing:0.116928px;}
.lsa{letter-spacing:0.119400px;}
.lsb{letter-spacing:0.120000px;}
.ls42{letter-spacing:0.121104px;}
.lsf{letter-spacing:0.145440px;}
.ls15{letter-spacing:0.147744px;}
.ls24{letter-spacing:0.150336px;}
.ls25{letter-spacing:0.158688px;}
.ls17{letter-spacing:0.160440px;}
.ls45{letter-spacing:0.161040px;}
.ls39{letter-spacing:0.179568px;}
.ls11{letter-spacing:0.186480px;}
.ls7{letter-spacing:0.200448px;}
.ls1c{letter-spacing:0.240000px;}
.ls6{letter-spacing:0.242208px;}
.lsc{letter-spacing:0.275616px;}
.ls1d{letter-spacing:0.283968px;}
.ls30{letter-spacing:0.298080px;}
.ls33{letter-spacing:0.299400px;}
.ls28{letter-spacing:0.300000px;}
.ls16{letter-spacing:0.317376px;}
.ls2e{letter-spacing:0.318384px;}
.ls8{letter-spacing:0.359136px;}
.ls21{letter-spacing:0.360360px;}
.ls23{letter-spacing:0.360960px;}
.ls34{letter-spacing:0.399600px;}
.ls3d{letter-spacing:0.400140px;}
.ls31{letter-spacing:0.400200px;}
.ls38{letter-spacing:0.401760px;}
.ls49{letter-spacing:0.427680px;}
.ls1e{letter-spacing:0.442656px;}
.ls19{letter-spacing:0.479400px;}
.ls41{letter-spacing:0.479520px;}
.ls20{letter-spacing:0.480000px;}
.ls44{letter-spacing:0.524880px;}
.ls2f{letter-spacing:0.599400px;}
.ls2a{letter-spacing:0.600000px;}
.ls3f{letter-spacing:0.600600px;}
.ls29{letter-spacing:0.602640px;}
.ls2b{letter-spacing:0.673920px;}
.ls36{letter-spacing:0.680400px;}
.ls2{letter-spacing:0.712800px;}
.ls37{letter-spacing:0.725760px;}
.ls40{letter-spacing:0.797040px;}
.ls32{letter-spacing:0.800400px;}
.ls35{letter-spacing:0.874800px;}
.ls1b{letter-spacing:0.893376px;}
.ls3a{letter-spacing:0.997920px;}
.ls3e{letter-spacing:1.000200px;}
.ls43{letter-spacing:1.121040px;}
.ls5{letter-spacing:3.717600px;}
.ls1f{letter-spacing:6.216600px;}
.ls4a{letter-spacing:10.693200px;}
.ls13{letter-spacing:21.434400px;}
.lse{letter-spacing:38.382420px;}
.ls4{letter-spacing:44.581740px;}
.ls46{letter-spacing:47.262600px;}
.ls18{letter-spacing:54.866760px;}
.ls1a{letter-spacing:55.179480px;}
.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;}
}
.ws11{word-spacing:-24.653376px;}
.ws7{word-spacing:-24.472800px;}
.ws25{word-spacing:-24.187680px;}
.ws13{word-spacing:-21.322656px;}
.ws24{word-spacing:-21.239136px;}
.ws23{word-spacing:-21.197376px;}
.ws12{word-spacing:-21.163968px;}
.wsb{word-spacing:-21.155616px;}
.ws9{word-spacing:-21.122208px;}
.wsa{word-spacing:-21.080448px;}
.ws14{word-spacing:-21.038688px;}
.ws22{word-spacing:-20.880000px;}
.wse{word-spacing:-19.587744px;}
.wsd{word-spacing:-19.556640px;}
.wsf{word-spacing:-19.533312px;}
.wsc{word-spacing:-18.036000px;}
.ws6{word-spacing:-18.014400px;}
.ws5{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.985600px;}
.ws1f{word-spacing:-16.997040px;}
.ws19{word-spacing:-16.925760px;}
.ws16{word-spacing:-16.802640px;}
.ws20{word-spacing:-16.679520px;}
.ws1b{word-spacing:-16.601760px;}
.ws18{word-spacing:-16.498080px;}
.ws1a{word-spacing:-16.200000px;}
.ws3{word-spacing:-15.786786px;}
.ws17{word-spacing:-12.198384px;}
.ws15{word-spacing:-12.155616px;}
.ws1c{word-spacing:-10.619568px;}
.ws21{word-spacing:-10.561104px;}
.ws1d{word-spacing:-10.540224px;}
.ws1e{word-spacing:-10.498464px;}
.ws10{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:0.170361px;}
.ws2{word-spacing:15.729999px;}
.ws1{word-spacing:31.459998px;}
._75{margin-left:-3059.133399px;}
._3a{margin-left:-3056.175900px;}
._3b{margin-left:-3055.037538px;}
._46{margin-left:-3053.849400px;}
._d2{margin-left:-3043.944000px;}
._c6{margin-left:-3038.052750px;}
._3e{margin-left:-3036.968700px;}
._4d{margin-left:-3031.704300px;}
._21{margin-left:-3020.398800px;}
._1a{margin-left:-3019.371729px;}
._e3{margin-left:-3009.960000px;}
._2b{margin-left:-3002.077500px;}
._30{margin-left:-3000.991800px;}
._5b{margin-left:-2993.424300px;}
._8b{margin-left:-2965.464300px;}
._7c{margin-left:-2960.153316px;}
._b0{margin-left:-2933.928300px;}
._99{margin-left:-2907.432300px;}
._b6{margin-left:-2898.000000px;}
._b1{margin-left:-2861.784000px;}
._47{margin-left:-2859.768300px;}
._f{margin-left:-2823.696300px;}
._da{margin-left:-2821.896000px;}
._5f{margin-left:-2815.048800px;}
._d7{margin-left:-2795.976000px;}
._7d{margin-left:-2789.496300px;}
._cb{margin-left:-2766.024000px;}
._41{margin-left:-2761.416300px;}
._c2{margin-left:-2749.968000px;}
._c3{margin-left:-2676.384000px;}
._78{margin-left:-2672.849400px;}
._1e{margin-left:-2665.828200px;}
._c9{margin-left:-2621.880000px;}
._7e{margin-left:-2616.899400px;}
._d1{margin-left:-2614.104000px;}
._b3{margin-left:-2609.455920px;}
._b8{margin-left:-2606.040000px;}
._90{margin-left:-2551.392300px;}
._49{margin-left:-2537.640300px;}
._ba{margin-left:-2504.016000px;}
._8c{margin-left:-2499.729555px;}
._80{margin-left:-2491.733100px;}
._b7{margin-left:-2446.056000px;}
._67{margin-left:-2433.600300px;}
._6d{margin-left:-2395.440300px;}
._53{margin-left:-2371.752240px;}
._7a{margin-left:-2359.656300px;}
._33{margin-left:-2355.768300px;}
._d9{margin-left:-2330.064000px;}
._60{margin-left:-2303.424300px;}
._88{margin-left:-2301.480300px;}
._85{margin-left:-2299.392300px;}
._55{margin-left:-2275.635060px;}
._e5{margin-left:-2267.496000px;}
._62{margin-left:-2257.416300px;}
._69{margin-left:-2253.744300px;}
._c8{margin-left:-2247.912000px;}
._84{margin-left:-2232.996540px;}
._af{margin-left:-2219.904000px;}
._61{margin-left:-2199.744300px;}
._c5{margin-left:-2190.024000px;}
._40{margin-left:-2185.192032px;}
._a7{margin-left:-2166.048000px;}
._ae{margin-left:-2162.088000px;}
._d8{margin-left:-2160.000000px;}
._79{margin-left:-2157.754500px;}
._c0{margin-left:-2146.104000px;}
._3f{margin-left:-2141.784300px;}
._94{margin-left:-2137.680300px;}
._a3{margin-left:-2136.104520px;}
._83{margin-left:-2131.632300px;}
._d5{margin-left:-2126.016000px;}
._10{margin-left:-2109.816300px;}
._a8{margin-left:-2088.072000px;}
._d3{margin-left:-2066.112000px;}
._59{margin-left:-2063.520300px;}
._52{margin-left:-2045.592300px;}
._ca{margin-left:-2038.104000px;}
._dc{margin-left:-2009.952000px;}
._4e{margin-left:-1968.217536px;}
._2c{margin-left:-1957.852200px;}
._dd{margin-left:-1950.120000px;}
._a5{margin-left:-1939.151760px;}
._12{margin-left:-1933.920300px;}
._89{margin-left:-1932.021360px;}
._8a{margin-left:-1919.491500px;}
._74{margin-left:-1917.720300px;}
._37{margin-left:-1904.517876px;}
._86{margin-left:-1893.816300px;}
._9a{margin-left:-1891.512300px;}
._71{margin-left:-1889.568300px;}
._b4{margin-left:-1886.112000px;}
._32{margin-left:-1876.441392px;}
._58{margin-left:-1875.332496px;}
._73{margin-left:-1865.639700px;}
._57{margin-left:-1861.488240px;}
._b9{margin-left:-1842.048000px;}
._d0{margin-left:-1814.616000px;}
._d4{margin-left:-1802.016000px;}
._1f{margin-left:-1794.252900px;}
._c7{margin-left:-1754.136000px;}
._a6{margin-left:-1746.432000px;}
._36{margin-left:-1721.880300px;}
._b2{margin-left:-1718.136000px;}
._64{margin-left:-1714.116480px;}
._bc{margin-left:-1706.112000px;}
._a2{margin-left:-1703.808300px;}
._72{margin-left:-1701.744300px;}
._a9{margin-left:-1656.144000px;}
._e2{margin-left:-1646.064000px;}
._38{margin-left:-1641.816300px;}
._be{margin-left:-1622.088000px;}
._81{margin-left:-1620.120996px;}
._54{margin-left:-1617.840240px;}
._ac{margin-left:-1614.096000px;}
._68{margin-left:-1611.720300px;}
._c1{margin-left:-1599.912000px;}
._16{margin-left:-1558.339500px;}
._df{margin-left:-1533.614400px;}
._87{margin-left:-1487.592300px;}
._9e{margin-left:-1455.696300px;}
._76{margin-left:-1433.238408px;}
._7f{margin-left:-1405.872840px;}
._82{margin-left:-1361.099700px;}
._66{margin-left:-1339.992300px;}
._65{margin-left:-1317.773100px;}
._11{margin-left:-1315.973100px;}
._cc{margin-left:-1313.856000px;}
._9b{margin-left:-1309.968300px;}
._8e{margin-left:-1285.920300px;}
._6b{margin-left:-1275.912300px;}
._44{margin-left:-1231.559088px;}
._4f{margin-left:-1223.856300px;}
._17{margin-left:-1191.744300px;}
._3d{margin-left:-1183.824300px;}
._6c{margin-left:-1145.159328px;}
._9d{margin-left:-1133.856300px;}
._ad{margin-left:-1130.040000px;}
._18{margin-left:-1123.776300px;}
._31{margin-left:-1109.880300px;}
._35{margin-left:-1103.760300px;}
._50{margin-left:-1098.363072px;}
._5e{margin-left:-1047.816300px;}
._6a{margin-left:-1021.752300px;}
._b5{margin-left:-983.952000px;}
._8f{margin-left:-971.856300px;}
._42{margin-left:-963.936300px;}
._43{margin-left:-923.832300px;}
._6e{margin-left:-907.528092px;}
._ce{margin-left:-879.940800px;}
._4a{margin-left:-855.428316px;}
._5a{margin-left:-848.220540px;}
._15{margin-left:-843.912300px;}
._2d{margin-left:-830.979000px;}
._96{margin-left:-829.872300px;}
._98{margin-left:-825.169020px;}
._aa{margin-left:-817.992000px;}
._a0{margin-left:-811.404924px;}
._93{margin-left:-797.079768px;}
._70{margin-left:-777.960300px;}
._29{margin-left:-775.800300px;}
._48{margin-left:-769.896300px;}
._56{margin-left:-755.856300px;}
._5c{margin-left:-754.786848px;}
._4c{margin-left:-721.944300px;}
._cd{margin-left:-720.000000px;}
._a1{margin-left:-685.944300px;}
._77{margin-left:-681.912300px;}
._63{margin-left:-675.936300px;}
._a4{margin-left:-641.880300px;}
._14{margin-left:-611.856300px;}
._45{margin-left:-553.896300px;}
._97{margin-left:-528.048300px;}
._9f{margin-left:-479.952300px;}
._8d{margin-left:-472.032300px;}
._13{margin-left:-439.992300px;}
._95{margin-left:-419.976300px;}
._7b{margin-left:-360.000300px;}
._e7{margin-left:-234.000300px;}
._b{margin-left:-9.369855px;}
._3{margin-left:-6.814440px;}
._0{margin-left:-4.542960px;}
._d{margin-left:-3.407220px;}
._1{margin-left:-2.271480px;}
._4{margin-left:-1.135740px;}
._5{width:1.419675px;}
._a{width:2.498628px;}
._28{width:3.499200px;}
._22{width:4.507200px;}
._27{width:6.017100px;}
._26{width:7.238100px;}
._20{width:8.443500px;}
._8{width:9.483429px;}
._19{width:10.950171px;}
._23{width:12.303300px;}
._1b{width:13.492800px;}
._2a{width:15.154500px;}
._e{width:16.979313px;}
._9{width:18.682923px;}
._c{width:20.329746px;}
._2e{width:21.722400px;}
._24{width:23.522400px;}
._2f{width:25.268700px;}
._25{width:26.435100px;}
._51{width:27.629400px;}
._34{width:29.102400px;}
._4b{width:30.254100px;}
._bf{width:31.508100px;}
._3c{width:32.656500px;}
._9c{width:33.691200px;}
._39{width:34.754400px;}
._7{width:37.252272px;}
._2{width:39.069456px;}
._5d{width:40.886544px;}
._ab{width:42.631656px;}
._6{width:45.032091px;}
._91{width:46.932600px;}
._92{width:48.058872px;}
._bb{width:57.103200px;}
._e0{width:66.909600px;}
._de{width:67.982400px;}
._bd{width:75.146400px;}
._1c{width:76.240800px;}
._e6{width:85.485600px;}
._e4{width:89.164800px;}
._e1{width:109.648800px;}
._c4{width:172.000800px;}
._6f{width:197.999700px;}
._cf{width:233.186400px;}
._d6{width:254.354400px;}
._db{width:255.739200px;}
._1d{width:846.027900px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(91,75,75);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:41.760000px;}
.fs4{font-size:47.520000px;}
.fs2{font-size:56.787000px;}
.fs8{font-size:64.800000px;}
.fs3{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs6{font-size:83.520000px;}
.fs0{font-size:90.859200px;}
.fs5{font-size:95.040000px;}
.fs1{font-size:113.574000px;}
.y0{bottom:0.000000px;}
.y13{bottom:21.254970px;}
.y138{bottom:22.679970px;}
.y15a{bottom:22.679985px;}
.y133{bottom:22.680000px;}
.y158{bottom:23.039985px;}
.y14e{bottom:23.040000px;}
.y137{bottom:24.839970px;}
.y131{bottom:24.840000px;}
.y143{bottom:26.280000px;}
.y16{bottom:35.115060px;}
.y15{bottom:55.635060px;}
.y160{bottom:60.840000px;}
.y106{bottom:79.035060px;}
.y1a9{bottom:84.075060px;}
.y98{bottom:89.475045px;}
.y1bc{bottom:90.915045px;}
.y1b5{bottom:91.275060px;}
.yc6{bottom:91.995060px;}
.y117{bottom:94.875045px;}
.yfa{bottom:96.315045px;}
.y16e{bottom:97.755060px;}
.y7a{bottom:101.355045px;}
.yda{bottom:103.155060px;}
.y159{bottom:103.890030px;}
.y8e{bottom:104.955045px;}
.y140{bottom:105.315045px;}
.y50{bottom:106.395045px;}
.y185{bottom:108.195060px;}
.y12{bottom:111.475500px;}
.y182{bottom:113.235060px;}
.y179{bottom:115.395045px;}
.ya7{bottom:116.835045px;}
.yf5{bottom:119.355045px;}
.y105{bottom:120.435045px;}
.y1a8{bottom:125.835045px;}
.y197{bottom:128.715060px;}
.y11{bottom:129.409500px;}
.y97{bottom:130.875030px;}
.y1bb{bottom:132.315030px;}
.y1b4{bottom:132.675030px;}
.yc5{bottom:133.035030px;}
.y116{bottom:136.635030px;}
.yf9{bottom:137.715030px;}
.y16d{bottom:139.515030px;}
.y157{bottom:141.690015px;}
.y79{bottom:142.755030px;}
.y136{bottom:143.490030px;}
.yd9{bottom:144.555030px;}
.y8d{bottom:146.355030px;}
.y13f{bottom:146.715030px;}
.y10{bottom:147.342000px;}
.y4f{bottom:147.795030px;}
.y66{bottom:149.595030px;}
.y181{bottom:154.635030px;}
.y178{bottom:156.435030px;}
.ya6{bottom:158.235030px;}
.yf4{bottom:160.755030px;}
.ye5{bottom:161.835030px;}
.yf{bottom:165.274500px;}
.y1a7{bottom:167.235030px;}
.y196{bottom:170.475030px;}
.y96{bottom:172.275030px;}
.y1ba{bottom:173.715030px;}
.y1b3{bottom:174.075030px;}
.yc4{bottom:175.875030px;}
.y115{bottom:178.035030px;}
.yf8{bottom:179.115030px;}
.y156{bottom:179.850000px;}
.y78{bottom:184.155030px;}
.y135{bottom:184.890000px;}
.yd8{bottom:185.955030px;}
.y8c{bottom:187.755030px;}
.y13e{bottom:188.115030px;}
.y39{bottom:188.835030px;}
.y4e{bottom:189.195030px;}
.y65{bottom:190.995030px;}
.y16c{bottom:192.435030px;}
.ybb{bottom:195.675030px;}
.y180{bottom:196.035030px;}
.ya5{bottom:199.635030px;}
.yf3{bottom:202.155030px;}
.y104{bottom:203.235030px;}
.y1a6{bottom:208.635030px;}
.yb1{bottom:211.155030px;}
.y195{bottom:211.875030px;}
.y95{bottom:213.675030px;}
.y1b9{bottom:215.115030px;}
.y1b2{bottom:215.475030px;}
.yc3{bottom:217.275030px;}
.y155{bottom:218.370000px;}
.y114{bottom:219.435030px;}
.yf7{bottom:220.515030px;}
.y77{bottom:225.555030px;}
.y134{bottom:226.290000px;}
.yd7{bottom:227.355030px;}
.y8b{bottom:229.155030px;}
.y13d{bottom:229.515030px;}
.y38{bottom:230.595030px;}
.y64{bottom:232.395030px;}
.y16b{bottom:234.195030px;}
.y4d{bottom:234.555030px;}
.ye{bottom:237.006000px;}
.yba{bottom:237.435030px;}
.ya4{bottom:241.035030px;}
.yf2{bottom:243.555030px;}
.y184{bottom:244.275030px;}
.y103{bottom:244.635030px;}
.y1a5{bottom:250.035030px;}
.y177{bottom:250.395030px;}
.yb0{bottom:252.915030px;}
.y194{bottom:253.275030px;}
.yd{bottom:254.938500px;}
.y94{bottom:255.075030px;}
.y1b8{bottom:256.515030px;}
.y1b1{bottom:256.875030px;}
.y154{bottom:257.250000px;}
.y113{bottom:260.835030px;}
.y19a{bottom:266.595030px;}
.y76{bottom:266.955030px;}
.y132{bottom:267.690000px;}
.yd6{bottom:268.755030px;}
.y8a{bottom:270.555030px;}
.yc2{bottom:271.635030px;}
.ydd{bottom:271.995030px;}
.yc{bottom:272.871000px;}
.yf6{bottom:273.435030px;}
.y63{bottom:273.795030px;}
.y119{bottom:278.475030px;}
.yb9{bottom:278.835030px;}
.ya3{bottom:282.435030px;}
.y17f{bottom:283.155030px;}
.y16a{bottom:283.515030px;}
.y37{bottom:283.875030px;}
.y102{bottom:286.035030px;}
.yf1{bottom:288.915030px;}
.y4c{bottom:290.715030px;}
.yb{bottom:290.803500px;}
.y1a4{bottom:291.435030px;}
.yaf{bottom:294.315030px;}
.y193{bottom:294.675030px;}
.y153{bottom:295.050000px;}
.y93{bottom:296.475030px;}
.y1b7{bottom:297.915030px;}
.y176{bottom:298.635030px;}
.y112{bottom:302.235030px;}
.y1b0{bottom:306.555030px;}
.y75{bottom:308.355030px;}
.y130{bottom:309.810000px;}
.yd5{bottom:310.155030px;}
.y89{bottom:311.955030px;}
.yc1{bottom:313.395030px;}
.y62{bottom:315.195030px;}
.yb8{bottom:320.235030px;}
.y127{bottom:322.755030px;}
.ya2{bottom:323.835030px;}
.y13c{bottom:324.195030px;}
.y36{bottom:325.635030px;}
.y101{bottom:327.435030px;}
.y25{bottom:331.035030px;}
.y4b{bottom:332.475030px;}
.y1a3{bottom:332.835030px;}
.y152{bottom:332.850000px;}
.yae{bottom:335.715030px;}
.y92{bottom:337.875030px;}
.y17e{bottom:338.955030px;}
.y1b6{bottom:339.315030px;}
.y111{bottom:343.635030px;}
.ya{bottom:344.602500px;}
.yf0{bottom:344.715030px;}
.y192{bottom:347.595030px;}
.y74{bottom:349.755030px;}
.yd4{bottom:351.555030px;}
.y88{bottom:353.355030px;}
.y175{bottom:354.435030px;}
.yc0{bottom:354.795030px;}
.y61{bottom:356.595030px;}
.ydc{bottom:358.755030px;}
.yb7{bottom:361.635030px;}
.y9{bottom:362.535000px;}
.y126{bottom:364.515030px;}
.ya1{bottom:365.235030px;}
.y35{bottom:367.035030px;}
.y100{bottom:368.835030px;}
.y1af{bottom:370.995030px;}
.y151{bottom:371.730000px;}
.y24{bottom:372.795030px;}
.y13b{bottom:373.515030px;}
.y4a{bottom:373.875030px;}
.y1a2{bottom:374.235030px;}
.yad{bottom:377.115030px;}
.y17d{bottom:380.715030px;}
.yef{bottom:386.475030px;}
.y110{bottom:388.995030px;}
.y191{bottom:389.355030px;}
.y91{bottom:390.795030px;}
.y73{bottom:391.155030px;}
.y87{bottom:394.755030px;}
.ybf{bottom:396.195030px;}
.y60{bottom:397.995030px;}
.y8{bottom:398.400000px;}
.yd3{bottom:401.235030px;}
.yb6{bottom:403.035030px;}
.y125{bottom:405.915030px;}
.ya0{bottom:406.635030px;}
.y34{bottom:408.435030px;}
.y12f{bottom:408.795030px;}
.yff{bottom:410.235030px;}
.y150{bottom:410.250000px;}
.y1ae{bottom:412.755030px;}
.y23{bottom:414.195030px;}
.ydb{bottom:414.915030px;}
.y49{bottom:415.275030px;}
.y1a1{bottom:415.635030px;}
.y7{bottom:416.332500px;}
.yac{bottom:418.515030px;}
.y17c{bottom:422.115030px;}
.y190{bottom:430.755030px;}
.y72{bottom:432.555030px;}
.y6{bottom:434.265000px;}
.yee{bottom:435.795030px;}
.y86{bottom:436.155030px;}
.ybe{bottom:437.595030px;}
.y5f{bottom:439.395030px;}
.yb5{bottom:444.435030px;}
.y10f{bottom:444.795030px;}
.y124{bottom:447.315030px;}
.y9f{bottom:448.035030px;}
.y14f{bottom:448.410000px;}
.y33{bottom:449.835030px;}
.y12e{bottom:450.195030px;}
.yfe{bottom:451.635030px;}
.y5{bottom:452.199000px;}
.y1ad{bottom:454.155030px;}
.y22{bottom:455.595030px;}
.y118{bottom:456.315030px;}
.y48{bottom:456.675030px;}
.y1a0{bottom:457.035030px;}
.yab{bottom:459.915030px;}
.y17b{bottom:463.515030px;}
.yd2{bottom:466.035030px;}
.y14b{bottom:471.435030px;}
.y18f{bottom:472.155030px;}
.y71{bottom:473.955030px;}
.y174{bottom:478.995030px;}
.y85{bottom:479.355030px;}
.y5e{bottom:480.795030px;}
.ybd{bottom:482.955030px;}
.yb4{bottom:485.835030px;}
.y14d{bottom:486.210000px;}
.y10e{bottom:486.555030px;}
.y123{bottom:488.715030px;}
.y9e{bottom:489.435030px;}
.y32{bottom:491.235030px;}
.y12d{bottom:491.595030px;}
.yfd{bottom:493.035030px;}
.y4{bottom:497.031000px;}
.y47{bottom:498.075030px;}
.y169{bottom:501.315030px;}
.y1ac{bottom:503.835030px;}
.ye4{bottom:504.555030px;}
.y17a{bottom:504.915030px;}
.yd1{bottom:507.435030px;}
.y21{bottom:508.875030px;}
.y19f{bottom:509.955030px;}
.yaa{bottom:512.835030px;}
.y14a{bottom:513.195030px;}
.y18e{bottom:513.555030px;}
.y199{bottom:515.355030px;}
.y173{bottom:520.395030px;}
.y5d{bottom:522.195030px;}
.y90{bottom:523.275030px;}
.y14c{bottom:525.090000px;}
.y70{bottom:526.875030px;}
.yb3{bottom:527.235030px;}
.y10d{bottom:527.955030px;}
.y122{bottom:530.115030px;}
.y9d{bottom:530.835030px;}
.y31{bottom:532.635030px;}
.y12c{bottom:532.995030px;}
.y84{bottom:534.075030px;}
.yfc{bottom:534.435030px;}
.ybc{bottom:539.115030px;}
.y46{bottom:539.475030px;}
.y168{bottom:543.075030px;}
.ye3{bottom:546.315030px;}
.y19e{bottom:551.715030px;}
.ya9{bottom:554.595030px;}
.y18d{bottom:554.955030px;}
.y198{bottom:560.715030px;}
.y172{bottom:561.795030px;}
.y20{bottom:562.155030px;}
.yed{bottom:563.235030px;}
.y5c{bottom:563.595030px;}
.y1ab{bottom:568.275030px;}
.y6f{bottom:568.635030px;}
.y9c{bottom:572.235030px;}
.y30{bottom:574.035030px;}
.y12b{bottom:574.395030px;}
.y121{bottom:575.475030px;}
.y83{bottom:575.835030px;}
.yb2{bottom:580.515030px;}
.y45{bottom:580.875030px;}
.y10c{bottom:581.235030px;}
.y167{bottom:583.050000px;}
.y183{bottom:587.355030px;}
.ye2{bottom:587.715030px;}
.y19d{bottom:593.115030px;}
.y18c{bottom:596.355030px;}
.y149{bottom:599.955030px;}
.y171{bottom:603.195030px;}
.ya8{bottom:603.915030px;}
.yec{bottom:604.995030px;}
.y6e{bottom:610.035030px;}
.y9b{bottom:613.635030px;}
.y1f{bottom:615.435030px;}
.y5b{bottom:616.875030px;}
.y82{bottom:617.235030px;}
.y166{bottom:620.850000px;}
.y44{bottom:622.275030px;}
.y10b{bottom:622.995030px;}
.y120{bottom:623.715030px;}
.y12a{bottom:627.675030px;}
.ye1{bottom:629.115030px;}
.y18b{bottom:637.755030px;}
.y170{bottom:644.595030px;}
.yd0{bottom:645.315030px;}
.y19c{bottom:646.035030px;}
.yeb{bottom:646.395030px;}
.y6d{bottom:651.435030px;}
.y9a{bottom:655.035030px;}
.y148{bottom:655.755030px;}
.y2f{bottom:656.835030px;}
.y5a{bottom:658.635030px;}
.y165{bottom:659.010000px;}
.y43{bottom:663.675030px;}
.y10a{bottom:664.395030px;}
.y1e{bottom:669.075030px;}
.y129{bottom:669.435030px;}
.ye0{bottom:670.515030px;}
.y18a{bottom:679.155030px;}
.y11f{bottom:679.875030px;}
.ycf{bottom:686.715030px;}
.yea{bottom:687.795030px;}
.y6c{bottom:692.835030px;}
.y147{bottom:697.515030px;}
.y164{bottom:697.530000px;}
.y16f{bottom:697.875030px;}
.y2e{bottom:698.235030px;}
.y99{bottom:698.595030px;}
.y59{bottom:700.035030px;}
.y42{bottom:705.075030px;}
.y109{bottom:705.795030px;}
.ydf{bottom:711.915030px;}
.y128{bottom:718.395030px;}
.y189{bottom:720.555030px;}
.y11e{bottom:721.635030px;}
.y1d{bottom:722.355030px;}
.yce{bottom:728.115030px;}
.ye9{bottom:729.195030px;}
.y13a{bottom:733.875030px;}
.y6b{bottom:734.235030px;}
.y146{bottom:736.050000px;}
.y163{bottom:736.410000px;}
.y2d{bottom:739.635030px;}
.y58{bottom:741.435030px;}
.y1aa{bottom:746.115030px;}
.y41{bottom:746.475030px;}
.y81{bottom:752.955030px;}
.yde{bottom:753.315030px;}
.y108{bottom:754.755030px;}
.y11d{bottom:763.035030px;}
.y188{bottom:765.915030px;}
.ycd{bottom:769.515030px;}
.ye8{bottom:770.595030px;}
.y162{bottom:774.210000px;}
.y1c{bottom:775.635030px;}
.y145{bottom:777.450000px;}
.y2c{bottom:781.035030px;}
.y19b{bottom:782.475030px;}
.y57{bottom:782.835030px;}
.y40{bottom:787.875030px;}
.yfb{bottom:794.355030px;}
.y80{bottom:794.715030px;}
.y11c{bottom:804.435030px;}
.ycc{bottom:810.915030px;}
.ye7{bottom:811.995030px;}
.y161{bottom:812.370000px;}
.y187{bottom:814.155030px;}
.y6a{bottom:817.035030px;}
.y144{bottom:818.850000px;}
.y2b{bottom:822.435030px;}
.y56{bottom:824.235030px;}
.y1b{bottom:828.915030px;}
.y3f{bottom:829.275030px;}
.y7f{bottom:836.115030px;}
.y15f{bottom:850.890000px;}
.ycb{bottom:852.315030px;}
.y11b{bottom:853.755030px;}
.y69{bottom:858.435030px;}
.y142{bottom:860.250000px;}
.y186{bottom:862.395030px;}
.y3{bottom:863.829000px;}
.y2a{bottom:863.835030px;}
.ye6{bottom:864.915030px;}
.y55{bottom:865.275030px;}
.y3e{bottom:870.675030px;}
.y8f{bottom:877.155030px;}
.y7e{bottom:877.515030px;}
.y1a{bottom:882.555030px;}
.y2{bottom:899.695500px;}
.y68{bottom:899.835030px;}
.y141{bottom:902.370000px;}
.y139{bottom:903.795030px;}
.y29{bottom:904.875030px;}
.yca{bottom:905.235030px;}
.y54{bottom:906.675030px;}
.y3d{bottom:912.075030px;}
.y11a{bottom:918.555030px;}
.y7d{bottom:918.915030px;}
.y15e{bottom:927.570000px;}
.y19{bottom:935.835030px;}
.y67{bottom:945.195030px;}
.y28{bottom:946.275030px;}
.yc9{bottom:946.995030px;}
.y53{bottom:948.075030px;}
.y3c{bottom:953.475030px;}
.y107{bottom:959.955030px;}
.y7c{bottom:960.315030px;}
.y1{bottom:962.460000px;}
.y15d{bottom:965.370000px;}
.y27{bottom:987.675030px;}
.yc8{bottom:988.395030px;}
.y18{bottom:989.115030px;}
.y3b{bottom:994.875030px;}
.y52{bottom:1001.355030px;}
.y7b{bottom:1001.715030px;}
.y15c{bottom:1003.530000px;}
.y26{bottom:1037.355030px;}
.y3a{bottom:1040.235030px;}
.yc7{bottom:1041.675030px;}
.y15b{bottom:1042.050000px;}
.y17{bottom:1042.755030px;}
.y51{bottom:1043.115030px;}
.y14{bottom:1096.395030px;}
.h15{height:37.800000px;}
.h10{height:37.800015px;}
.h16{height:38.159985px;}
.h13{height:38.160000px;}
.hf{height:41.399970px;}
.hd{height:41.399985px;}
.he{height:41.400000px;}
.hc{height:41.400015px;}
.h5{height:41.568084px;}
.h4{height:42.192741px;}
.h11{height:43.917188px;}
.h12{height:54.042188px;}
.h8{height:60.046875px;}
.ha{height:64.411875px;}
.h14{height:65.067187px;}
.hb{height:66.114844px;}
.h2{height:66.508934px;}
.h9{height:72.750937px;}
.h17{height:75.960015px;}
.h3{height:84.385482px;}
.h7{height:1153.995000px;}
.h6{height:1188.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:74.519985px;}
.w9{width:84.959970px;}
.wa{width:106.199985px;}
.wc{width:116.639970px;}
.w5{width:136.080000px;}
.w6{width:136.080045px;}
.w4{width:148.680000px;}
.w7{width:265.680000px;}
.wb{width:574.200000px;}
.w3{width:864.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w2{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:7.920075px;}
.x22{left:9.808350px;}
.x26{left:19.439700px;}
.x32{left:21.104850px;}
.x3{left:27.210000px;}
.x28{left:28.579500px;}
.x24{left:30.181200px;}
.x2c{left:32.110350px;}
.x30{left:33.160050px;}
.x29{left:37.604850px;}
.x2b{left:39.644700px;}
.x2d{left:41.445150px;}
.x7{left:43.200000px;}
.x2a{left:47.895000px;}
.x1e{left:56.949300px;}
.x2e{left:61.230150px;}
.x19{left:62.279850px;}
.x31{left:69.480150px;}
.x4{left:79.200075px;}
.x1f{left:86.519700px;}
.x1b{left:94.124850px;}
.x13{left:98.490000px;}
.x2{left:101.025000px;}
.x1{left:102.046500px;}
.xc{left:106.200060px;}
.x1c{left:119.879700px;}
.x11{left:122.400150px;}
.x1d{left:127.769700px;}
.x6{left:133.200000px;}
.x15{left:247.170000px;}
.x34{left:316.390800px;}
.x35{left:359.761950px;}
.x33{left:361.707300px;}
.x20{left:364.170000px;}
.xd{left:375.728850px;}
.x10{left:378.388950px;}
.x16{left:383.250000px;}
.x8{left:387.270600px;}
.x21{left:438.690000px;}
.xb{left:449.925000px;}
.x5{left:454.425000px;}
.x17{left:519.330000px;}
.x23{left:523.650000px;}
.x25{left:598.170000px;}
.x18{left:655.410000px;}
.x2f{left:672.690000px;}
.x1a{left:674.924850px;}
.x27{left:683.130000px;}
.x12{left:688.912350px;}
.xe{left:724.462200px;}
.x9{left:770.849400px;}
.xf{left:775.424850px;}
.xa{left:784.162350px;}
@media print{
.v4{vertical-align:-34.560000pt;}
.v2{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:7.680000pt;}
.v3{vertical-align:26.880000pt;}
.v1{vertical-align:29.440000pt;}
.ls3{letter-spacing:-0.012800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.000480pt;}
.ls9{letter-spacing:0.000533pt;}
.ls27{letter-spacing:0.000747pt;}
.ls48{letter-spacing:0.009760pt;}
.ls26{letter-spacing:0.010133pt;}
.ls2d{letter-spacing:0.010667pt;}
.ls47{letter-spacing:0.012000pt;}
.ls1{letter-spacing:0.012800pt;}
.lsd{letter-spacing:0.032000pt;}
.ls3c{letter-spacing:0.051968pt;}
.ls10{letter-spacing:0.082944pt;}
.ls3b{letter-spacing:0.089088pt;}
.ls12{letter-spacing:0.096768pt;}
.ls14{letter-spacing:0.103680pt;}
.ls22{letter-spacing:0.103936pt;}
.lsa{letter-spacing:0.106133pt;}
.lsb{letter-spacing:0.106667pt;}
.ls42{letter-spacing:0.107648pt;}
.lsf{letter-spacing:0.129280pt;}
.ls15{letter-spacing:0.131328pt;}
.ls24{letter-spacing:0.133632pt;}
.ls25{letter-spacing:0.141056pt;}
.ls17{letter-spacing:0.142613pt;}
.ls45{letter-spacing:0.143147pt;}
.ls39{letter-spacing:0.159616pt;}
.ls11{letter-spacing:0.165760pt;}
.ls7{letter-spacing:0.178176pt;}
.ls1c{letter-spacing:0.213333pt;}
.ls6{letter-spacing:0.215296pt;}
.lsc{letter-spacing:0.244992pt;}
.ls1d{letter-spacing:0.252416pt;}
.ls30{letter-spacing:0.264960pt;}
.ls33{letter-spacing:0.266133pt;}
.ls28{letter-spacing:0.266667pt;}
.ls16{letter-spacing:0.282112pt;}
.ls2e{letter-spacing:0.283008pt;}
.ls8{letter-spacing:0.319232pt;}
.ls21{letter-spacing:0.320320pt;}
.ls23{letter-spacing:0.320853pt;}
.ls34{letter-spacing:0.355200pt;}
.ls3d{letter-spacing:0.355680pt;}
.ls31{letter-spacing:0.355733pt;}
.ls38{letter-spacing:0.357120pt;}
.ls49{letter-spacing:0.380160pt;}
.ls1e{letter-spacing:0.393472pt;}
.ls19{letter-spacing:0.426133pt;}
.ls41{letter-spacing:0.426240pt;}
.ls20{letter-spacing:0.426667pt;}
.ls44{letter-spacing:0.466560pt;}
.ls2f{letter-spacing:0.532800pt;}
.ls2a{letter-spacing:0.533333pt;}
.ls3f{letter-spacing:0.533867pt;}
.ls29{letter-spacing:0.535680pt;}
.ls2b{letter-spacing:0.599040pt;}
.ls36{letter-spacing:0.604800pt;}
.ls2{letter-spacing:0.633600pt;}
.ls37{letter-spacing:0.645120pt;}
.ls40{letter-spacing:0.708480pt;}
.ls32{letter-spacing:0.711467pt;}
.ls35{letter-spacing:0.777600pt;}
.ls1b{letter-spacing:0.794112pt;}
.ls3a{letter-spacing:0.887040pt;}
.ls3e{letter-spacing:0.889067pt;}
.ls43{letter-spacing:0.996480pt;}
.ls5{letter-spacing:3.304533pt;}
.ls1f{letter-spacing:5.525867pt;}
.ls4a{letter-spacing:9.505067pt;}
.ls13{letter-spacing:19.052800pt;}
.lse{letter-spacing:34.117707pt;}
.ls4{letter-spacing:39.628213pt;}
.ls46{letter-spacing:42.011200pt;}
.ls18{letter-spacing:48.770453pt;}
.ls1a{letter-spacing:49.048427pt;}
.ws11{word-spacing:-21.914112pt;}
.ws7{word-spacing:-21.753600pt;}
.ws25{word-spacing:-21.500160pt;}
.ws13{word-spacing:-18.953472pt;}
.ws24{word-spacing:-18.879232pt;}
.ws23{word-spacing:-18.842112pt;}
.ws12{word-spacing:-18.812416pt;}
.wsb{word-spacing:-18.804992pt;}
.ws9{word-spacing:-18.775296pt;}
.wsa{word-spacing:-18.738176pt;}
.ws14{word-spacing:-18.701056pt;}
.ws22{word-spacing:-18.560000pt;}
.wse{word-spacing:-17.411328pt;}
.wsd{word-spacing:-17.383680pt;}
.wsf{word-spacing:-17.362944pt;}
.wsc{word-spacing:-16.032000pt;}
.ws6{word-spacing:-16.012800pt;}
.ws5{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.987200pt;}
.ws1f{word-spacing:-15.108480pt;}
.ws19{word-spacing:-15.045120pt;}
.ws16{word-spacing:-14.935680pt;}
.ws20{word-spacing:-14.826240pt;}
.ws1b{word-spacing:-14.757120pt;}
.ws18{word-spacing:-14.664960pt;}
.ws1a{word-spacing:-14.400000pt;}
.ws3{word-spacing:-14.032699pt;}
.ws17{word-spacing:-10.843008pt;}
.ws15{word-spacing:-10.804992pt;}
.ws1c{word-spacing:-9.439616pt;}
.ws21{word-spacing:-9.387648pt;}
.ws1d{word-spacing:-9.369088pt;}
.ws1e{word-spacing:-9.331968pt;}
.ws10{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:0.151432pt;}
.ws2{word-spacing:13.982221pt;}
.ws1{word-spacing:27.964443pt;}
._75{margin-left:-2719.229688pt;}
._3a{margin-left:-2716.600800pt;}
._3b{margin-left:-2715.588923pt;}
._46{margin-left:-2714.532800pt;}
._d2{margin-left:-2705.728000pt;}
._c6{margin-left:-2700.491333pt;}
._3e{margin-left:-2699.527733pt;}
._4d{margin-left:-2694.848267pt;}
._21{margin-left:-2684.798933pt;}
._1a{margin-left:-2683.885981pt;}
._e3{margin-left:-2675.520000pt;}
._2b{margin-left:-2668.513333pt;}
._30{margin-left:-2667.548267pt;}
._5b{margin-left:-2660.821600pt;}
._8b{margin-left:-2635.968267pt;}
._7c{margin-left:-2631.247392pt;}
._b0{margin-left:-2607.936267pt;}
._99{margin-left:-2584.384267pt;}
._b6{margin-left:-2576.000000pt;}
._b1{margin-left:-2543.808000pt;}
._47{margin-left:-2542.016267pt;}
._f{margin-left:-2509.952267pt;}
._da{margin-left:-2508.352000pt;}
._5f{margin-left:-2502.265600pt;}
._d7{margin-left:-2485.312000pt;}
._7d{margin-left:-2479.552267pt;}
._cb{margin-left:-2458.688000pt;}
._41{margin-left:-2454.592267pt;}
._c2{margin-left:-2444.416000pt;}
._c3{margin-left:-2379.008000pt;}
._78{margin-left:-2375.866133pt;}
._1e{margin-left:-2369.625067pt;}
._c9{margin-left:-2330.560000pt;}
._7e{margin-left:-2326.132800pt;}
._d1{margin-left:-2323.648000pt;}
._b3{margin-left:-2319.516373pt;}
._b8{margin-left:-2316.480000pt;}
._90{margin-left:-2267.904267pt;}
._49{margin-left:-2255.680267pt;}
._ba{margin-left:-2225.792000pt;}
._8c{margin-left:-2221.981827pt;}
._80{margin-left:-2214.873867pt;}
._b7{margin-left:-2174.272000pt;}
._67{margin-left:-2163.200267pt;}
._6d{margin-left:-2129.280267pt;}
._53{margin-left:-2108.224213pt;}
._7a{margin-left:-2097.472267pt;}
._33{margin-left:-2094.016267pt;}
._d9{margin-left:-2071.168000pt;}
._60{margin-left:-2047.488267pt;}
._88{margin-left:-2045.760267pt;}
._85{margin-left:-2043.904267pt;}
._55{margin-left:-2022.786720pt;}
._e5{margin-left:-2015.552000pt;}
._62{margin-left:-2006.592267pt;}
._69{margin-left:-2003.328267pt;}
._c8{margin-left:-1998.144000pt;}
._84{margin-left:-1984.885813pt;}
._af{margin-left:-1973.248000pt;}
._61{margin-left:-1955.328267pt;}
._c5{margin-left:-1946.688000pt;}
._40{margin-left:-1942.392917pt;}
._a7{margin-left:-1925.376000pt;}
._ae{margin-left:-1921.856000pt;}
._d8{margin-left:-1920.000000pt;}
._79{margin-left:-1918.004000pt;}
._c0{margin-left:-1907.648000pt;}
._3f{margin-left:-1903.808267pt;}
._94{margin-left:-1900.160267pt;}
._a3{margin-left:-1898.759573pt;}
._83{margin-left:-1894.784267pt;}
._d5{margin-left:-1889.792000pt;}
._10{margin-left:-1875.392267pt;}
._a8{margin-left:-1856.064000pt;}
._d3{margin-left:-1836.544000pt;}
._59{margin-left:-1834.240267pt;}
._52{margin-left:-1818.304267pt;}
._ca{margin-left:-1811.648000pt;}
._dc{margin-left:-1786.624000pt;}
._4e{margin-left:-1749.526699pt;}
._2c{margin-left:-1740.313067pt;}
._dd{margin-left:-1733.440000pt;}
._a5{margin-left:-1723.690453pt;}
._12{margin-left:-1719.040267pt;}
._89{margin-left:-1717.352320pt;}
._8a{margin-left:-1706.214667pt;}
._74{margin-left:-1704.640267pt;}
._37{margin-left:-1692.904779pt;}
._86{margin-left:-1683.392267pt;}
._9a{margin-left:-1681.344267pt;}
._71{margin-left:-1679.616267pt;}
._b4{margin-left:-1676.544000pt;}
._32{margin-left:-1667.947904pt;}
._58{margin-left:-1666.962219pt;}
._73{margin-left:-1658.346400pt;}
._57{margin-left:-1654.656213pt;}
._b9{margin-left:-1637.376000pt;}
._d0{margin-left:-1612.992000pt;}
._d4{margin-left:-1601.792000pt;}
._1f{margin-left:-1594.891467pt;}
._c7{margin-left:-1559.232000pt;}
._a6{margin-left:-1552.384000pt;}
._36{margin-left:-1530.560267pt;}
._b2{margin-left:-1527.232000pt;}
._64{margin-left:-1523.659093pt;}
._bc{margin-left:-1516.544000pt;}
._a2{margin-left:-1514.496267pt;}
._72{margin-left:-1512.661600pt;}
._a9{margin-left:-1472.128000pt;}
._e2{margin-left:-1463.168000pt;}
._38{margin-left:-1459.392267pt;}
._be{margin-left:-1441.856000pt;}
._81{margin-left:-1440.107552pt;}
._54{margin-left:-1438.080213pt;}
._ac{margin-left:-1434.752000pt;}
._68{margin-left:-1432.640267pt;}
._c1{margin-left:-1422.144000pt;}
._16{margin-left:-1385.190667pt;}
._df{margin-left:-1363.212800pt;}
._87{margin-left:-1322.304267pt;}
._9e{margin-left:-1293.952267pt;}
._76{margin-left:-1273.989696pt;}
._7f{margin-left:-1249.664747pt;}
._82{margin-left:-1209.866400pt;}
._66{margin-left:-1191.104267pt;}
._65{margin-left:-1171.353867pt;}
._11{margin-left:-1169.753867pt;}
._cc{margin-left:-1167.872000pt;}
._9b{margin-left:-1164.416267pt;}
._8e{margin-left:-1143.040267pt;}
._6b{margin-left:-1134.144267pt;}
._44{margin-left:-1094.719189pt;}
._4f{margin-left:-1087.872267pt;}
._17{margin-left:-1059.328267pt;}
._3d{margin-left:-1052.288267pt;}
._6c{margin-left:-1017.919403pt;}
._9d{margin-left:-1007.872267pt;}
._ad{margin-left:-1004.480000pt;}
._18{margin-left:-998.912267pt;}
._31{margin-left:-986.560267pt;}
._35{margin-left:-981.120267pt;}
._50{margin-left:-976.322731pt;}
._5e{margin-left:-931.392267pt;}
._6a{margin-left:-908.224267pt;}
._b5{margin-left:-874.624000pt;}
._8f{margin-left:-863.872267pt;}
._42{margin-left:-856.832267pt;}
._43{margin-left:-821.184267pt;}
._6e{margin-left:-806.691637pt;}
._ce{margin-left:-782.169600pt;}
._4a{margin-left:-760.380725pt;}
._5a{margin-left:-753.973813pt;}
._15{margin-left:-750.144267pt;}
._2d{margin-left:-738.648000pt;}
._96{margin-left:-737.664267pt;}
._98{margin-left:-733.483573pt;}
._aa{margin-left:-727.104000pt;}
._a0{margin-left:-721.248821pt;}
._93{margin-left:-708.515349pt;}
._70{margin-left:-691.520267pt;}
._29{margin-left:-689.600267pt;}
._48{margin-left:-684.352267pt;}
._56{margin-left:-671.872267pt;}
._5c{margin-left:-670.921643pt;}
._4c{margin-left:-641.728267pt;}
._cd{margin-left:-640.000000pt;}
._a1{margin-left:-609.728267pt;}
._77{margin-left:-606.144267pt;}
._63{margin-left:-600.832267pt;}
._a4{margin-left:-570.560267pt;}
._14{margin-left:-543.872267pt;}
._45{margin-left:-492.352267pt;}
._97{margin-left:-469.376267pt;}
._9f{margin-left:-426.624267pt;}
._8d{margin-left:-419.584267pt;}
._13{margin-left:-391.104267pt;}
._95{margin-left:-373.312267pt;}
._7b{margin-left:-320.000267pt;}
._e7{margin-left:-208.000267pt;}
._b{margin-left:-8.328760pt;}
._3{margin-left:-6.057280pt;}
._0{margin-left:-4.038187pt;}
._d{margin-left:-3.028640pt;}
._1{margin-left:-2.019093pt;}
._4{margin-left:-1.009547pt;}
._5{width:1.261933pt;}
._a{width:2.221003pt;}
._28{width:3.110400pt;}
._22{width:4.006400pt;}
._27{width:5.348533pt;}
._26{width:6.433867pt;}
._20{width:7.505333pt;}
._8{width:8.429715pt;}
._19{width:9.733485pt;}
._23{width:10.936267pt;}
._1b{width:11.993600pt;}
._2a{width:13.470667pt;}
._e{width:15.092723pt;}
._9{width:16.607043pt;}
._c{width:18.070885pt;}
._2e{width:19.308800pt;}
._24{width:20.908800pt;}
._2f{width:22.461067pt;}
._25{width:23.497867pt;}
._51{width:24.559467pt;}
._34{width:25.868800pt;}
._4b{width:26.892533pt;}
._bf{width:28.007200pt;}
._3c{width:29.028000pt;}
._9c{width:29.947733pt;}
._39{width:30.892800pt;}
._7{width:33.113131pt;}
._2{width:34.728405pt;}
._5d{width:36.343595pt;}
._ab{width:37.894805pt;}
._6{width:40.028525pt;}
._91{width:41.717867pt;}
._92{width:42.718997pt;}
._bb{width:50.758400pt;}
._e0{width:59.475200pt;}
._de{width:60.428800pt;}
._bd{width:66.796800pt;}
._1c{width:67.769600pt;}
._e6{width:75.987200pt;}
._e4{width:79.257600pt;}
._e1{width:97.465600pt;}
._c4{width:152.889600pt;}
._6f{width:175.999733pt;}
._cf{width:207.276800pt;}
._d6{width:226.092800pt;}
._db{width:227.323733pt;}
._1d{width:752.024800pt;}
.fs9{font-size:37.120000pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:50.477333pt;}
.fs8{font-size:57.600000pt;}
.fs3{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs6{font-size:74.240000pt;}
.fs0{font-size:80.763733pt;}
.fs5{font-size:84.480000pt;}
.fs1{font-size:100.954667pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:18.893307pt;}
.y138{bottom:20.159973pt;}
.y15a{bottom:20.159987pt;}
.y133{bottom:20.160000pt;}
.y158{bottom:20.479987pt;}
.y14e{bottom:20.480000pt;}
.y137{bottom:22.079973pt;}
.y131{bottom:22.080000pt;}
.y143{bottom:23.360000pt;}
.y16{bottom:31.213387pt;}
.y15{bottom:49.453387pt;}
.y160{bottom:54.080000pt;}
.y106{bottom:70.253387pt;}
.y1a9{bottom:74.733387pt;}
.y98{bottom:79.533373pt;}
.y1bc{bottom:80.813373pt;}
.y1b5{bottom:81.133387pt;}
.yc6{bottom:81.773387pt;}
.y117{bottom:84.333373pt;}
.yfa{bottom:85.613373pt;}
.y16e{bottom:86.893387pt;}
.y7a{bottom:90.093373pt;}
.yda{bottom:91.693387pt;}
.y159{bottom:92.346693pt;}
.y8e{bottom:93.293373pt;}
.y140{bottom:93.613373pt;}
.y50{bottom:94.573373pt;}
.y185{bottom:96.173387pt;}
.y12{bottom:99.089333pt;}
.y182{bottom:100.653387pt;}
.y179{bottom:102.573373pt;}
.ya7{bottom:103.853373pt;}
.yf5{bottom:106.093373pt;}
.y105{bottom:107.053373pt;}
.y1a8{bottom:111.853373pt;}
.y197{bottom:114.413387pt;}
.y11{bottom:115.030667pt;}
.y97{bottom:116.333360pt;}
.y1bb{bottom:117.613360pt;}
.y1b4{bottom:117.933360pt;}
.yc5{bottom:118.253360pt;}
.y116{bottom:121.453360pt;}
.yf9{bottom:122.413360pt;}
.y16d{bottom:124.013360pt;}
.y157{bottom:125.946680pt;}
.y79{bottom:126.893360pt;}
.y136{bottom:127.546693pt;}
.yd9{bottom:128.493360pt;}
.y8d{bottom:130.093360pt;}
.y13f{bottom:130.413360pt;}
.y10{bottom:130.970667pt;}
.y4f{bottom:131.373360pt;}
.y66{bottom:132.973360pt;}
.y181{bottom:137.453360pt;}
.y178{bottom:139.053360pt;}
.ya6{bottom:140.653360pt;}
.yf4{bottom:142.893360pt;}
.ye5{bottom:143.853360pt;}
.yf{bottom:146.910667pt;}
.y1a7{bottom:148.653360pt;}
.y196{bottom:151.533360pt;}
.y96{bottom:153.133360pt;}
.y1ba{bottom:154.413360pt;}
.y1b3{bottom:154.733360pt;}
.yc4{bottom:156.333360pt;}
.y115{bottom:158.253360pt;}
.yf8{bottom:159.213360pt;}
.y156{bottom:159.866667pt;}
.y78{bottom:163.693360pt;}
.y135{bottom:164.346667pt;}
.yd8{bottom:165.293360pt;}
.y8c{bottom:166.893360pt;}
.y13e{bottom:167.213360pt;}
.y39{bottom:167.853360pt;}
.y4e{bottom:168.173360pt;}
.y65{bottom:169.773360pt;}
.y16c{bottom:171.053360pt;}
.ybb{bottom:173.933360pt;}
.y180{bottom:174.253360pt;}
.ya5{bottom:177.453360pt;}
.yf3{bottom:179.693360pt;}
.y104{bottom:180.653360pt;}
.y1a6{bottom:185.453360pt;}
.yb1{bottom:187.693360pt;}
.y195{bottom:188.333360pt;}
.y95{bottom:189.933360pt;}
.y1b9{bottom:191.213360pt;}
.y1b2{bottom:191.533360pt;}
.yc3{bottom:193.133360pt;}
.y155{bottom:194.106667pt;}
.y114{bottom:195.053360pt;}
.yf7{bottom:196.013360pt;}
.y77{bottom:200.493360pt;}
.y134{bottom:201.146667pt;}
.yd7{bottom:202.093360pt;}
.y8b{bottom:203.693360pt;}
.y13d{bottom:204.013360pt;}
.y38{bottom:204.973360pt;}
.y64{bottom:206.573360pt;}
.y16b{bottom:208.173360pt;}
.y4d{bottom:208.493360pt;}
.ye{bottom:210.672000pt;}
.yba{bottom:211.053360pt;}
.ya4{bottom:214.253360pt;}
.yf2{bottom:216.493360pt;}
.y184{bottom:217.133360pt;}
.y103{bottom:217.453360pt;}
.y1a5{bottom:222.253360pt;}
.y177{bottom:222.573360pt;}
.yb0{bottom:224.813360pt;}
.y194{bottom:225.133360pt;}
.yd{bottom:226.612000pt;}
.y94{bottom:226.733360pt;}
.y1b8{bottom:228.013360pt;}
.y1b1{bottom:228.333360pt;}
.y154{bottom:228.666667pt;}
.y113{bottom:231.853360pt;}
.y19a{bottom:236.973360pt;}
.y76{bottom:237.293360pt;}
.y132{bottom:237.946667pt;}
.yd6{bottom:238.893360pt;}
.y8a{bottom:240.493360pt;}
.yc2{bottom:241.453360pt;}
.ydd{bottom:241.773360pt;}
.yc{bottom:242.552000pt;}
.yf6{bottom:243.053360pt;}
.y63{bottom:243.373360pt;}
.y119{bottom:247.533360pt;}
.yb9{bottom:247.853360pt;}
.ya3{bottom:251.053360pt;}
.y17f{bottom:251.693360pt;}
.y16a{bottom:252.013360pt;}
.y37{bottom:252.333360pt;}
.y102{bottom:254.253360pt;}
.yf1{bottom:256.813360pt;}
.y4c{bottom:258.413360pt;}
.yb{bottom:258.492000pt;}
.y1a4{bottom:259.053360pt;}
.yaf{bottom:261.613360pt;}
.y193{bottom:261.933360pt;}
.y153{bottom:262.266667pt;}
.y93{bottom:263.533360pt;}
.y1b7{bottom:264.813360pt;}
.y176{bottom:265.453360pt;}
.y112{bottom:268.653360pt;}
.y1b0{bottom:272.493360pt;}
.y75{bottom:274.093360pt;}
.y130{bottom:275.386667pt;}
.yd5{bottom:275.693360pt;}
.y89{bottom:277.293360pt;}
.yc1{bottom:278.573360pt;}
.y62{bottom:280.173360pt;}
.yb8{bottom:284.653360pt;}
.y127{bottom:286.893360pt;}
.ya2{bottom:287.853360pt;}
.y13c{bottom:288.173360pt;}
.y36{bottom:289.453360pt;}
.y101{bottom:291.053360pt;}
.y25{bottom:294.253360pt;}
.y4b{bottom:295.533360pt;}
.y1a3{bottom:295.853360pt;}
.y152{bottom:295.866667pt;}
.yae{bottom:298.413360pt;}
.y92{bottom:300.333360pt;}
.y17e{bottom:301.293360pt;}
.y1b6{bottom:301.613360pt;}
.y111{bottom:305.453360pt;}
.ya{bottom:306.313333pt;}
.yf0{bottom:306.413360pt;}
.y192{bottom:308.973360pt;}
.y74{bottom:310.893360pt;}
.yd4{bottom:312.493360pt;}
.y88{bottom:314.093360pt;}
.y175{bottom:315.053360pt;}
.yc0{bottom:315.373360pt;}
.y61{bottom:316.973360pt;}
.ydc{bottom:318.893360pt;}
.yb7{bottom:321.453360pt;}
.y9{bottom:322.253333pt;}
.y126{bottom:324.013360pt;}
.ya1{bottom:324.653360pt;}
.y35{bottom:326.253360pt;}
.y100{bottom:327.853360pt;}
.y1af{bottom:329.773360pt;}
.y151{bottom:330.426667pt;}
.y24{bottom:331.373360pt;}
.y13b{bottom:332.013360pt;}
.y4a{bottom:332.333360pt;}
.y1a2{bottom:332.653360pt;}
.yad{bottom:335.213360pt;}
.y17d{bottom:338.413360pt;}
.yef{bottom:343.533360pt;}
.y110{bottom:345.773360pt;}
.y191{bottom:346.093360pt;}
.y91{bottom:347.373360pt;}
.y73{bottom:347.693360pt;}
.y87{bottom:350.893360pt;}
.ybf{bottom:352.173360pt;}
.y60{bottom:353.773360pt;}
.y8{bottom:354.133333pt;}
.yd3{bottom:356.653360pt;}
.yb6{bottom:358.253360pt;}
.y125{bottom:360.813360pt;}
.ya0{bottom:361.453360pt;}
.y34{bottom:363.053360pt;}
.y12f{bottom:363.373360pt;}
.yff{bottom:364.653360pt;}
.y150{bottom:364.666667pt;}
.y1ae{bottom:366.893360pt;}
.y23{bottom:368.173360pt;}
.ydb{bottom:368.813360pt;}
.y49{bottom:369.133360pt;}
.y1a1{bottom:369.453360pt;}
.y7{bottom:370.073333pt;}
.yac{bottom:372.013360pt;}
.y17c{bottom:375.213360pt;}
.y190{bottom:382.893360pt;}
.y72{bottom:384.493360pt;}
.y6{bottom:386.013333pt;}
.yee{bottom:387.373360pt;}
.y86{bottom:387.693360pt;}
.ybe{bottom:388.973360pt;}
.y5f{bottom:390.573360pt;}
.yb5{bottom:395.053360pt;}
.y10f{bottom:395.373360pt;}
.y124{bottom:397.613360pt;}
.y9f{bottom:398.253360pt;}
.y14f{bottom:398.586667pt;}
.y33{bottom:399.853360pt;}
.y12e{bottom:400.173360pt;}
.yfe{bottom:401.453360pt;}
.y5{bottom:401.954667pt;}
.y1ad{bottom:403.693360pt;}
.y22{bottom:404.973360pt;}
.y118{bottom:405.613360pt;}
.y48{bottom:405.933360pt;}
.y1a0{bottom:406.253360pt;}
.yab{bottom:408.813360pt;}
.y17b{bottom:412.013360pt;}
.yd2{bottom:414.253360pt;}
.y14b{bottom:419.053360pt;}
.y18f{bottom:419.693360pt;}
.y71{bottom:421.293360pt;}
.y174{bottom:425.773360pt;}
.y85{bottom:426.093360pt;}
.y5e{bottom:427.373360pt;}
.ybd{bottom:429.293360pt;}
.yb4{bottom:431.853360pt;}
.y14d{bottom:432.186667pt;}
.y10e{bottom:432.493360pt;}
.y123{bottom:434.413360pt;}
.y9e{bottom:435.053360pt;}
.y32{bottom:436.653360pt;}
.y12d{bottom:436.973360pt;}
.yfd{bottom:438.253360pt;}
.y4{bottom:441.805333pt;}
.y47{bottom:442.733360pt;}
.y169{bottom:445.613360pt;}
.y1ac{bottom:447.853360pt;}
.ye4{bottom:448.493360pt;}
.y17a{bottom:448.813360pt;}
.yd1{bottom:451.053360pt;}
.y21{bottom:452.333360pt;}
.y19f{bottom:453.293360pt;}
.yaa{bottom:455.853360pt;}
.y14a{bottom:456.173360pt;}
.y18e{bottom:456.493360pt;}
.y199{bottom:458.093360pt;}
.y173{bottom:462.573360pt;}
.y5d{bottom:464.173360pt;}
.y90{bottom:465.133360pt;}
.y14c{bottom:466.746667pt;}
.y70{bottom:468.333360pt;}
.yb3{bottom:468.653360pt;}
.y10d{bottom:469.293360pt;}
.y122{bottom:471.213360pt;}
.y9d{bottom:471.853360pt;}
.y31{bottom:473.453360pt;}
.y12c{bottom:473.773360pt;}
.y84{bottom:474.733360pt;}
.yfc{bottom:475.053360pt;}
.ybc{bottom:479.213360pt;}
.y46{bottom:479.533360pt;}
.y168{bottom:482.733360pt;}
.ye3{bottom:485.613360pt;}
.y19e{bottom:490.413360pt;}
.ya9{bottom:492.973360pt;}
.y18d{bottom:493.293360pt;}
.y198{bottom:498.413360pt;}
.y172{bottom:499.373360pt;}
.y20{bottom:499.693360pt;}
.yed{bottom:500.653360pt;}
.y5c{bottom:500.973360pt;}
.y1ab{bottom:505.133360pt;}
.y6f{bottom:505.453360pt;}
.y9c{bottom:508.653360pt;}
.y30{bottom:510.253360pt;}
.y12b{bottom:510.573360pt;}
.y121{bottom:511.533360pt;}
.y83{bottom:511.853360pt;}
.yb2{bottom:516.013360pt;}
.y45{bottom:516.333360pt;}
.y10c{bottom:516.653360pt;}
.y167{bottom:518.266667pt;}
.y183{bottom:522.093360pt;}
.ye2{bottom:522.413360pt;}
.y19d{bottom:527.213360pt;}
.y18c{bottom:530.093360pt;}
.y149{bottom:533.293360pt;}
.y171{bottom:536.173360pt;}
.ya8{bottom:536.813360pt;}
.yec{bottom:537.773360pt;}
.y6e{bottom:542.253360pt;}
.y9b{bottom:545.453360pt;}
.y1f{bottom:547.053360pt;}
.y5b{bottom:548.333360pt;}
.y82{bottom:548.653360pt;}
.y166{bottom:551.866667pt;}
.y44{bottom:553.133360pt;}
.y10b{bottom:553.773360pt;}
.y120{bottom:554.413360pt;}
.y12a{bottom:557.933360pt;}
.ye1{bottom:559.213360pt;}
.y18b{bottom:566.893360pt;}
.y170{bottom:572.973360pt;}
.yd0{bottom:573.613360pt;}
.y19c{bottom:574.253360pt;}
.yeb{bottom:574.573360pt;}
.y6d{bottom:579.053360pt;}
.y9a{bottom:582.253360pt;}
.y148{bottom:582.893360pt;}
.y2f{bottom:583.853360pt;}
.y5a{bottom:585.453360pt;}
.y165{bottom:585.786667pt;}
.y43{bottom:589.933360pt;}
.y10a{bottom:590.573360pt;}
.y1e{bottom:594.733360pt;}
.y129{bottom:595.053360pt;}
.ye0{bottom:596.013360pt;}
.y18a{bottom:603.693360pt;}
.y11f{bottom:604.333360pt;}
.ycf{bottom:610.413360pt;}
.yea{bottom:611.373360pt;}
.y6c{bottom:615.853360pt;}
.y147{bottom:620.013360pt;}
.y164{bottom:620.026667pt;}
.y16f{bottom:620.333360pt;}
.y2e{bottom:620.653360pt;}
.y99{bottom:620.973360pt;}
.y59{bottom:622.253360pt;}
.y42{bottom:626.733360pt;}
.y109{bottom:627.373360pt;}
.ydf{bottom:632.813360pt;}
.y128{bottom:638.573360pt;}
.y189{bottom:640.493360pt;}
.y11e{bottom:641.453360pt;}
.y1d{bottom:642.093360pt;}
.yce{bottom:647.213360pt;}
.ye9{bottom:648.173360pt;}
.y13a{bottom:652.333360pt;}
.y6b{bottom:652.653360pt;}
.y146{bottom:654.266667pt;}
.y163{bottom:654.586667pt;}
.y2d{bottom:657.453360pt;}
.y58{bottom:659.053360pt;}
.y1aa{bottom:663.213360pt;}
.y41{bottom:663.533360pt;}
.y81{bottom:669.293360pt;}
.yde{bottom:669.613360pt;}
.y108{bottom:670.893360pt;}
.y11d{bottom:678.253360pt;}
.y188{bottom:680.813360pt;}
.ycd{bottom:684.013360pt;}
.ye8{bottom:684.973360pt;}
.y162{bottom:688.186667pt;}
.y1c{bottom:689.453360pt;}
.y145{bottom:691.066667pt;}
.y2c{bottom:694.253360pt;}
.y19b{bottom:695.533360pt;}
.y57{bottom:695.853360pt;}
.y40{bottom:700.333360pt;}
.yfb{bottom:706.093360pt;}
.y80{bottom:706.413360pt;}
.y11c{bottom:715.053360pt;}
.ycc{bottom:720.813360pt;}
.ye7{bottom:721.773360pt;}
.y161{bottom:722.106667pt;}
.y187{bottom:723.693360pt;}
.y6a{bottom:726.253360pt;}
.y144{bottom:727.866667pt;}
.y2b{bottom:731.053360pt;}
.y56{bottom:732.653360pt;}
.y1b{bottom:736.813360pt;}
.y3f{bottom:737.133360pt;}
.y7f{bottom:743.213360pt;}
.y15f{bottom:756.346667pt;}
.ycb{bottom:757.613360pt;}
.y11b{bottom:758.893360pt;}
.y69{bottom:763.053360pt;}
.y142{bottom:764.666667pt;}
.y186{bottom:766.573360pt;}
.y3{bottom:767.848000pt;}
.y2a{bottom:767.853360pt;}
.ye6{bottom:768.813360pt;}
.y55{bottom:769.133360pt;}
.y3e{bottom:773.933360pt;}
.y8f{bottom:779.693360pt;}
.y7e{bottom:780.013360pt;}
.y1a{bottom:784.493360pt;}
.y2{bottom:799.729333pt;}
.y68{bottom:799.853360pt;}
.y141{bottom:802.106667pt;}
.y139{bottom:803.373360pt;}
.y29{bottom:804.333360pt;}
.yca{bottom:804.653360pt;}
.y54{bottom:805.933360pt;}
.y3d{bottom:810.733360pt;}
.y11a{bottom:816.493360pt;}
.y7d{bottom:816.813360pt;}
.y15e{bottom:824.506667pt;}
.y19{bottom:831.853360pt;}
.y67{bottom:840.173360pt;}
.y28{bottom:841.133360pt;}
.yc9{bottom:841.773360pt;}
.y53{bottom:842.733360pt;}
.y3c{bottom:847.533360pt;}
.y107{bottom:853.293360pt;}
.y7c{bottom:853.613360pt;}
.y1{bottom:855.520000pt;}
.y15d{bottom:858.106667pt;}
.y27{bottom:877.933360pt;}
.yc8{bottom:878.573360pt;}
.y18{bottom:879.213360pt;}
.y3b{bottom:884.333360pt;}
.y52{bottom:890.093360pt;}
.y7b{bottom:890.413360pt;}
.y15c{bottom:892.026667pt;}
.y26{bottom:922.093360pt;}
.y3a{bottom:924.653360pt;}
.yc7{bottom:925.933360pt;}
.y15b{bottom:926.266667pt;}
.y17{bottom:926.893360pt;}
.y51{bottom:927.213360pt;}
.y14{bottom:974.573360pt;}
.h15{height:33.600000pt;}
.h10{height:33.600013pt;}
.h16{height:33.919987pt;}
.h13{height:33.920000pt;}
.hf{height:36.799973pt;}
.hd{height:36.799987pt;}
.he{height:36.800000pt;}
.hc{height:36.800013pt;}
.h5{height:36.949408pt;}
.h4{height:37.504659pt;}
.h11{height:39.037500pt;}
.h12{height:48.037500pt;}
.h8{height:53.375000pt;}
.ha{height:57.255000pt;}
.h14{height:57.837500pt;}
.hb{height:58.768750pt;}
.h2{height:59.119053pt;}
.h9{height:64.667500pt;}
.h17{height:67.520013pt;}
.h3{height:75.009317pt;}
.h7{height:1025.773333pt;}
.h6{height:1056.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:66.239987pt;}
.w9{width:75.519973pt;}
.wa{width:94.399987pt;}
.wc{width:103.679973pt;}
.w5{width:120.960000pt;}
.w6{width:120.960040pt;}
.w4{width:132.160000pt;}
.w7{width:236.160000pt;}
.wb{width:510.400000pt;}
.w3{width:768.000000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w2{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:7.040067pt;}
.x22{left:8.718533pt;}
.x26{left:17.279733pt;}
.x32{left:18.759867pt;}
.x3{left:24.186667pt;}
.x28{left:25.404000pt;}
.x24{left:26.827733pt;}
.x2c{left:28.542533pt;}
.x30{left:29.475600pt;}
.x29{left:33.426533pt;}
.x2b{left:35.239733pt;}
.x2d{left:36.840133pt;}
.x7{left:38.400000pt;}
.x2a{left:42.573333pt;}
.x1e{left:50.621600pt;}
.x2e{left:54.426800pt;}
.x19{left:55.359867pt;}
.x31{left:61.760133pt;}
.x4{left:70.400067pt;}
.x1f{left:76.906400pt;}
.x1b{left:83.666533pt;}
.x13{left:87.546667pt;}
.x2{left:89.800000pt;}
.x1{left:90.708000pt;}
.xc{left:94.400053pt;}
.x1c{left:106.559733pt;}
.x11{left:108.800133pt;}
.x1d{left:113.573067pt;}
.x6{left:118.400000pt;}
.x15{left:219.706667pt;}
.x34{left:281.236267pt;}
.x35{left:319.788400pt;}
.x33{left:321.517600pt;}
.x20{left:323.706667pt;}
.xd{left:333.981200pt;}
.x10{left:336.345733pt;}
.x16{left:340.666667pt;}
.x8{left:344.240533pt;}
.x21{left:389.946667pt;}
.xb{left:399.933333pt;}
.x5{left:403.933333pt;}
.x17{left:461.626667pt;}
.x23{left:465.466667pt;}
.x25{left:531.706667pt;}
.x18{left:582.586667pt;}
.x2f{left:597.946667pt;}
.x1a{left:599.933200pt;}
.x27{left:607.226667pt;}
.x12{left:612.366533pt;}
.xe{left:643.966400pt;}
.x9{left:685.199467pt;}
.xf{left:689.266533pt;}
.xa{left:697.033200pt;}
}


body.paper-page .doc-shell[data-scieee-split-doc="1"] #page-container {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: max-content !important;
  min-width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] #sidebar,
body.paper-page .doc-shell[data-scieee-split-doc="1"] .loading-indicator {
  display: none !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] .pf {
  display: block !important;
  position: relative !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
